UniCourt Enterprise APIs icon

UniCourt Enterprise APIs

<button><a href="/enterpriseapi/download/UniCourt-Enterprise-API-Spec

COMMUNITYBEARER0 INSTALLS
OpenAPI Specificationv3.0
{
  "openapi": "3.0.0",
  "servers": [
    {
      "url": "https://enterpriseapi.unicourt.com/"
    }
  ],
  "info": {
    "description": "<button><a href=\"/enterpriseapi/download/UniCourt-Enterprise-API-Spec.yaml\" >Download UniCourt Enterprise APIs Specification</a></button>\n",
    "title": "UniCourt Enterprise APIs",
    "version": "1.0.0",
    "x-apisguru-categories": [
      "open_data"
    ],
    "x-logo": {
      "url": "https://api.apis.guru/v2/cache/logo/https_cdn.unicourt.com_uc-website_resources_website_1.0.2303151021_images_apple-touch-icon_apple-touch-icon-57x57.png"
    },
    "x-origin": [
      {
        "format": "openapi",
        "url": "https://docs.unicourt.com/enterpriseapi/download/UniCourt-Enterprise-API-Spec.yaml",
        "version": "3.0"
      }
    ],
    "x-providerName": "unicourt.com"
  },
  "tags": [
    {
      "name": "Authentication API"
    },
    {
      "name": "Usage API"
    },
    {
      "name": "Case Search API"
    },
    {
      "name": "Case Docket API"
    },
    {
      "name": "Case Export API"
    },
    {
      "name": "Case Documents API"
    },
    {
      "name": "Case Update API"
    },
    {
      "name": "Case Tracking API"
    },
    {
      "name": "PACER Credential API"
    },
    {
      "name": "PACER API"
    },
    {
      "name": "Court Availability API"
    },
    {
      "name": "Court Standards API"
    },
    {
      "name": "Attorney Analytics API"
    },
    {
      "name": "Law Firm Analytics API"
    },
    {
      "name": "Judge Analytics API"
    },
    {
      "name": "Party Analytics API"
    },
    {
      "name": "Case Analytics API"
    },
    {
      "name": "Webhook API"
    },
    {
      "name": "Company Data API"
    }
  ],
  "paths": {
    "/attorney/{attorneyId}": {
      "get": {
        "description": "Retrieve the attorney with the specified attorneyId value.",
        "operationId": "getAttorneyById",
        "parameters": [],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "AllAttorneysForACase": {
                    "$ref": "#/components/examples/CaseApiAttorneyResponse"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Attorney"
                }
              }
            },
            "description": "The request is recieved."
          },
          "404": {
            "content": {
              "application/json": {
                "examples": {
                  "RequestedAttorneyIdIsInvalid": {
                    "$ref": "#/components/examples/FailureInvalidAttorneyId"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Resource Not Found"
          },
          "451": {
            "content": {
              "application/json": {
                "examples": {
                  "SealedCase": {
                    "$ref": "#/components/examples/SealedCase"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Sealed Case"
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "ServerError": {
                    "$ref": "#/components/examples/FailureServerError"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Server Error"
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Gets details for a requested Attorney ID.",
        "tags": [
          "Case Docket API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "POST",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [
        {
          "description": "Retrieve the attorney with the specified attorneyId value.",
          "examples": {
            "HTTP200-AllAttorneysForACase": {
              "summary": "AllAttorneysForACase",
              "value": "ATTYgu01be2e4de654"
            },
            "HTTP404-RequestedAttorneyIdIsInvalid": {
              "summary": "RequestedAttorneyIdIsInvalid",
              "value": "ATTYzz01be2e4de654"
            },
            "HTTP451-SealedCase": {
              "summary": "SealedCase",
              "value": "ATTYgqc8b00894a8fd"
            }
          },
          "in": "path",
          "name": "attorneyId",
          "required": true,
          "schema": {
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          }
        }
      ],
      "x-api-name": "AttorneyAPI",
      "x-unicourt-tag": "CaseDocketAPIs"
    },
    "/attorney/{attorneyId}/associatedParties": {
      "get": {
        "description": "Retrieve the parties represented by the attorney with the specified attorneyId value.",
        "operationId": "getAttorneyAssociatedParties",
        "parameters": [
          {
            "description": "Query parameter specifying the page number of the search results to be retrieved.",
            "examples": {
              "HTTP200-PartyAssociationsForAAttorney": {
                "summary": "PartyAssociationsForAAttorney",
                "value": 1
              },
              "HTTP400-PageNumberParameterNotPassed": {
                "summary": "PageNumberParameterNotPassed",
                "value": "sda"
              },
              "HTTP400-RequestedPageNumberIsInvalid": {
                "summary": "RequestedPageNumberIsInvalid",
                "value": "das"
              },
              "HTTP404-RequestedAttorneyIdIsInvalid": {
                "summary": "RequestedAttorneyIdIsInvalid",
                "value": 1
              },
              "HTTP451-SealedCase": {
                "summary": "SealedCase",
                "value": 1
              }
            },
            "in": "query",
            "name": "pageNumber",
            "schema": {
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "PartyAssociationsForAAttorney": {
                    "$ref": "#/components/examples/CaseApipartyAssociationForAttorneyResponse"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/PartyAttorneyAssociations"
                }
              }
            },
            "description": "The request is recieved."
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "PageNumberParameterNotPassed": {
                    "$ref": "#/components/examples/FailurePageNumberIdNotPassed"
                  },
                  "RequestedPageNumberIsInvalid": {
                    "$ref": "#/components/examples/FailureInvalidPageNumber"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Invalid Input Parameter"
          },
          "404": {
            "content": {
              "application/json": {
                "examples": {
                  "RequestedAttorneyIdIsInvalid": {
                    "$ref": "#/components/examples/FailureInvalidAttorneyId"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Resource Not Found"
          },
          "451": {
            "content": {
              "application/json": {
                "examples": {
                  "SealedCase": {
                    "$ref": "#/components/examples/SealedCase"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Sealed Case"
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "ServerError": {
                    "$ref": "#/components/examples/FailureServerError"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Server Error"
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Gets Associated Party details for a requested Attorney ID.",
        "tags": [
          "Case Docket API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "POST",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [
        {
          "description": "Retrieve the parties represented by the attorney with the specified attorneyId value.",
          "examples": {
            "HTTP200-PartyAssociationsForAAttorney": {
              "summary": "PartyAssociationsForAAttorney",
              "value": "ATTYgr3ae043d84ebc"
            },
            "HTTP400-PageNumberParameterNotPassed": {
              "summary": "PageNumberParameterNotPassed",
              "value": "ATTYgu01be2e4de654"
            },
            "HTTP400-RequestedPageNumberIsInvalid": {
              "summary": "RequestedPageNumberIsInvalid",
              "value": "ATTYgu01be2e4de654"
            },
            "HTTP404-RequestedAttorneyIdIsInvalid": {
              "summary": "RequestedAttorneyIdIsInvalid",
              "value": "ATTYzz01be2e4de654"
            },
            "HTTP451-SealedCase": {
              "summary": "SealedCase",
              "value": "ATTYak2e9493e7419b"
            }
          },
          "in": "path",
          "name": "attorneyId",
          "required": true,
          "schema": {
            "example": "ATTYgu01be2e4de654",
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          }
        }
      ],
      "x-api-name": "AssociatedPartiesForAttorneyAPI",
      "x-unicourt-tag": "CaseDocketAPIs"
    },
    "/billingCycleUsage/{billingCycle}": {
      "get": {
        "description": "An endpoint to obtain information on API usage for a specific billing cycle.",
        "operationId": "getBillingUsageByBillingCycle",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleResponse": {
                    "value": {
                      "apiCallsBillable": {
                        "count": 23111,
                        "lastUpdated": "2023-02-21T15:00:05+00:00"
                      },
                      "apiCallsCredited": {
                        "count": 0,
                        "lastUpdated": "2023-02-21T15:00:05+00:00"
                      },
                      "apiCallsMade": {
                        "count": 23111,
                        "lastUpdated": "2023-02-21T15:00:05+00:00"
                      },
                      "apiUsage": {
                        "GET /attorney/{attorneyId}": 4,
                        "GET /attorney/{attorneyId}/associatedParties": 4,
                        "GET /billingCycles": 2,
                        "GET /callbacks": 1,
                        "GET /case/{caseId}": 6,
                        "GET /case/{caseId}/attorneys": 4,
                        "GET /case/{caseId}/docketEntries": 8,
                        "GET /case/{caseId}/docketEntries/primaryDocuments": 1,
                        "GET /case/{caseId}/docketEntries/secondaryDocuments": 1,
                        "GET /case/{caseId}/documents": 3,
                        "GET /case/{caseId}/hearings": 5,
                        "GET /case/{caseId}/judges": 5,
                        "GET /case/{caseId}/parties": 6,
                        "GET /case/{caseId}/relatedCases": 4,
                        "GET /caseCountAnalyticsByAreaOfLaw": 5,
                        "GET /caseCountAnalyticsByCaseClass": 5,
                        "GET /caseCountAnalyticsByCaseFiledDate": 1,
                        "GET /caseCountAnalyticsByCaseType": 5,
                        "GET /caseCountAnalyticsByCaseTypeGroup": 5,
                        "GET /caseCountAnalyticsByCourt": 5,
                        "GET /caseCountAnalyticsByCourtLocation": 5,
                        "GET /caseCountAnalyticsByCourtSystem": 5,
                        "GET /caseCountAnalyticsByCourtType": 5,
                        "GET /caseCountAnalyticsByJurisdictionGeo": 5,
                        "GET /caseCountAnalyticsByNormAttorney": 1,
                        "GET /caseCountAnalyticsByNormJudge": 1,
                        "GET /caseCountAnalyticsByNormLawFirm": 1,
                        "GET /caseCountAnalyticsByNormParty": 1,
                        "GET /caseCountAnalyticsByPartyRole": 2,
                        "GET /caseCountAnalyticsByPartyRoleGroup": 2,
                        "GET /caseDocument/{caseDocumentId}": 2,
                        "GET /caseDocumentDownload/{caseDocumentId}": 8,
                        "GET /caseDocumentOrder/callbacks": 1,
                        "GET /caseDocumentOrder/callbacks/{caseDocumentOrderCallbackId}": 37,
                        "GET /caseExport/callbacks": 1,
                        "GET /caseExport/callbacks/{caseExportCallbackId}": 10,
                        "GET /caseExport/{caseId}": 14,
                        "GET /caseSearch": 473,
                        "GET /caseSearch/{caseSearchId}": 4,
                        "GET /caseTrack/{caseId}": 3,
                        "GET /caseTracks": 3,
                        "GET /caseUpdate/{caseId}": 28,
                        "GET /caseUpdates": 1,
                        "GET /courtCoverage/{courtId}": 2,
                        "GET /dailyUsage/{date}": 2,
                        "GET /judge/{judgeId}": 2,
                        "GET /masterData/areaOfLaw": 1,
                        "GET /masterData/areaOfLaw/{areaOfLawId}": 2,
                        "GET /masterData/attorneyRepresentationType": 1,
                        "GET /masterData/attorneyRepresentationType/{attorneyRepresentationTypeId}": 2,
                        "GET /masterData/attorneyType": 1,
                        "GET /masterData/attorneyType/{attorneyTypeId}": 2,
                        "GET /masterData/caseClass": 1,
                        "GET /masterData/caseClass/{caseClassId}": 2,
                        "GET /masterData/caseRelationshipType": 1,
                        "GET /masterData/caseRelationshipType/{caseRelationshipTypeId}": 2,
                        "GET /masterData/caseStatus": 1,
                        "GET /masterData/caseStatus/{caseStatusId}": 3,
                        "GET /masterData/caseStatusGroup": 1,
                        "GET /masterData/caseStatusGroup/{caseStatusGroupId}": 2,
                        "GET /masterData/caseType": 1,
                        "GET /masterData/caseType/{caseTypeId}": 2,
                        "GET /masterData/caseTypeGroup": 1,
                        "GET /masterData/caseTypeGroup/{caseTypeGroupId}": 2,
                        "GET /masterData/causeOfAction": 1,
                        "GET /masterData/causeOfActionAdditionalData": 1,
                        "GET /masterData/causeOfActionGroup": 1,
                        "GET /masterData/charge": 1,
                        "GET /masterData/chargeAdditionalData": 1,
                        "GET /masterData/chargeDegree": 1,
                        "GET /masterData/chargeGroup": 1,
                        "GET /masterData/chargeSeverity": 1,
                        "GET /masterData/court": 1,
                        "GET /masterData/court/{courtId}": 2,
                        "GET /masterData/court/{courtId}/appealCourts": 7,
                        "GET /masterData/court/{courtId}/courtLocations": 7,
                        "GET /masterData/court/{courtId}/jurisdictionGeo": 7,
                        "GET /masterData/courtLocation": 1,
                        "GET /masterData/courtLocation/{courtLocationId}": 2,
                        "GET /masterData/courtLocation/{courtLocationId}/courts": 6,
                        "GET /masterData/courtServiceStatus": 4,
                        "GET /masterData/courtServiceStatus/{courtServiceStatusId}": 2,
                        "GET /masterData/courtSystem": 1,
                        "GET /masterData/courtSystem/{courtSystemId}": 2,
                        "GET /masterData/courtType": 1,
                        "GET /masterData/courtType/{courtTypeId}": 2,
                        "GET /masterData/judgeType": 1,
                        "GET /masterData/judgeType/{judgeTypeId}": 2,
                        "GET /masterData/jurisdictionGeo": 1,
                        "GET /masterData/jurisdictionGeo/{jurisdictionGeoId}": 2,
                        "GET /masterData/jurisdictionGeo/{jurisdictionGeoId}/courts": 3,
                        "GET /masterData/partyRole": 1,
                        "GET /masterData/partyRole/{partyRoleId}": 2,
                        "GET /masterData/partyRoleGroup": 1,
                        "GET /masterData/partyRoleGroup/{partyRoleGroupId}": 2,
                        "GET /normAttorney/{normAttorneyId}": 6,
                        "GET /normAttorney/{normAttorneyId}/associatedNormJudges": 4,
                        "GET /normAttorney/{normAttorneyId}/associatedNormLawFirms": 4,
                        "GET /normAttorney/{normAttorneyId}/associatedNormParties": 4,
                        "GET /normAttorney/{normAttorneyId}/caseCountAnalyticsByOpposingNormAttorney": 4,
                        "GET /normAttorneySearch": 1,
                        "GET /normJudge/{normJudgeId}": 10,
                        "GET /normJudge/{normJudgeId}/associatedNormAttorneys": 2,
                        "GET /normJudge/{normJudgeId}/associatedNormLawFirms": 9,
                        "GET /normJudge/{normJudgeId}/associatedNormParties": 9,
                        "GET /normJudgeSearch": 1,
                        "GET /normLawFirm/{normLawFirmId}": 3,
                        "GET /normLawFirm/{normLawFirmId}/associatedNormAttorneys": 2,
                        "GET /normLawFirm/{normLawFirmId}/associatedNormJudges": 2,
                        "GET /normLawFirm/{normLawFirmId}/associatedNormParties": 2,
                        "GET /normLawFirm/{normLawFirmId}/caseCountAnalyticsByOpposingNormLawFirm": 2,
                        "GET /normLawFirmSearch": 1,
                        "GET /normParty/{normPartyId}": 3,
                        "GET /normParty/{normPartyId}/associatedNormAttorneys": 2,
                        "GET /normParty/{normPartyId}/associatedNormJudges": 2,
                        "GET /normParty/{normPartyId}/associatedNormLawFirms": 2,
                        "GET /normParty/{normPartyId}/caseCountAnalyticsByOpposingNormParty": 2,
                        "GET /normPartySearch": 1,
                        "GET /pacerCredential/{pacerUserId}": 2,
                        "GET /party/{partyId}": 2,
                        "GET /party/{partyId}/associatedAttorneys": 4,
                        "POST /generateNewToken": 2,
                        "PUT /caseDocumentOrder": 20,
                        "PUT /caseTrack": 3,
                        "PUT /caseUpdate": 24,
                        "PUT /pacerCredential": 1
                      },
                      "billingCycle": {
                        "endDate": "2023-02-24T23:59:59+00:00",
                        "startDate": "2023-01-25T00:00:00+00:00"
                      },
                      "days": {
                        "2023-01-25": 817,
                        "2023-01-26": 817,
                        "2023-01-27": 817,
                        "2023-01-28": 0,
                        "2023-01-29": 0,
                        "2023-01-30": 820,
                        "2023-01-31": 817,
                        "2023-02-01": 817,
                        "2023-02-02": 817,
                        "2023-02-03": 817,
                        "2023-02-04": 817,
                        "2023-02-05": 817,
                        "2023-02-06": 817,
                        "2023-02-07": 817,
                        "2023-02-08": 2450,
                        "2023-02-09": 817,
                        "2023-02-10": 817,
                        "2023-02-11": 817,
                        "2023-02-12": 817,
                        "2023-02-13": 0,
                        "2023-02-14": 817,
                        "2023-02-15": 817,
                        "2023-02-16": 816,
                        "2023-02-17": 1777,
                        "2023-02-18": 817,
                        "2023-02-19": 817,
                        "2023-02-20": 817,
                        "2023-02-21": 908
                      },
                      "object": "BillingCycleUsageResponse",
                      "totalCasesTracked": 2
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/BillingCycleUsageResponse"
                }
              }
            },
            "description": "OK"
          },
          "404": {
            "content": {
              "application/json": {
                "examples": {
                  "sample404Response": {
                    "value": {
                      "code": "UN404",
                      "details": "Invalid request. Please check the `billingCycle`.",
                      "message": "RESOURCE_NOT_FOUND",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Not Found"
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "Internal_Server_Error": {
                    "value": {
                      "code": "UN500",
                      "details": "Something went wrong. Please retry again later.",
                      "message": "INTERNAL_SERVER_ERROR",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Internal Server Error"
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Specify the billing cycle to know the API usage.",
        "tags": [
          "Usage API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [
        {
          "description": "The date obtainable from the /billingCycles endpoint which is used as an identifier for the specific billing cycle you wish to obtain information on.",
          "examples": {
            "HTTP200-sampleResponse": {
              "summary": "sampleResponse",
              "value": "2023-01-25to2023-02-25"
            },
            "HTTP404-sample404Response": {
              "summary": "sample404Response",
              "value": "2022-08-00"
            }
          },
          "in": "path",
          "name": "billingCycle",
          "required": true,
          "schema": {
            "format": "date",
            "maxLength": 22,
            "minLength": 22,
            "nullable": false,
            "type": "string"
          }
        }
      ],
      "x-api-name": "BillingMonthlyUsageAPI",
      "x-unicourt-tag": "UsageAPIs"
    },
    "/billingCycles": {
      "get": {
        "description": "An endpoint to obtain information on the previous 12 billing cycles.",
        "operationId": "getBillingCycles",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleResponse": {
                    "value": {
                      "billingCycleArray": [
                        "2023-01-10to2023-02-09",
                        "2022-12-10to2022-01-09",
                        "2022-11-10to2022-12-09"
                      ],
                      "object": "BillingCyclesResponse"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/BillingCyclesResponse"
                }
              }
            },
            "description": "OK"
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "Internal_Server_Error": {
                    "value": {
                      "code": "UN500",
                      "details": "Something went wrong. Please retry again later.",
                      "message": "INTERNAL_SERVER_ERROR",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Internal Server Error"
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Get all the previous 12 billing cycles.",
        "tags": [
          "Usage API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "x-api-name": "BillingCyclesAPI",
      "x-unicourt-tag": "UsageAPIs"
    },
    "/callbacks": {
      "get": {
        "description": "Get list of callback types with count for a requested Date.",
        "operationId": "getCallbacks",
        "parameters": [
          {
            "description": "Date for which fetch the callback type list. By default, the date will be set to current date.",
            "examples": {
              "HTTP200-sampleCallbacks": {
                "summary": "sampleCallbacks",
                "value": "2022-03-08T00:00:00+00:00"
              },
              "HTTP400-sample400Callbacks": {
                "summary": "sample400Callbacks",
                "value": "2022-03-00T00:00:00+00:00"
              }
            },
            "in": "query",
            "name": "date",
            "schema": {
              "format": "date-time",
              "maxLength": 25,
              "minLength": 25,
              "nullable": false,
              "type": "string"
            }
          },
          {
            "description": "Status of the callbacks. Default status will fetch all callbacks.",
            "examples": {
              "HTTP200-sampleCallbacks": {
                "summary": "sampleCallbacks",
                "value": "IN_PROGRESS"
              },
              "HTTP400-sample400Callbacks": {
                "summary": "sample400Callbacks",
                "value": "COMPLETED"
              }
            },
            "in": "query",
            "name": "status",
            "schema": {
              "enum": [
                "IN_PROGRESS",
                "COMPLETE",
                "FAILURE"
              ],
              "maxLength": 11,
              "minLength": 7,
              "nullable": false,
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleCallbacks": {
                    "value": {
                      "caseDocumentOrderCallbacks": {
                        "count": 7,
                        "link": "https://enterpriseapi.unicourt.com/caseDocumentOrder/callbacks?&date=2022-03-08T00:00:00+00:00"
                      },
                      "caseExportCallbacks": {
                        "count": 6,
                        "link": "https://enterpriseapi.unicourt.com/caseExport/callbacks?&date=2022-03-08T00:00:00+00:00"
                      },
                      "object": "CallbackListResponse"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/CallbackListResponse"
                }
              }
            },
            "description": "OK"
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "sample400Callbacks": {
                    "$ref": "#/components/examples/Invalid_Date"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Bad Request"
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "Internal_Server_Error": {
                    "value": {
                      "code": "UN500",
                      "details": "Something went wrong. Please retry again later.",
                      "message": "INTERNAL_SERVER_ERROR",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Internal Server Error"
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Get list of callback types with count for a requested Date.",
        "tags": [
          "Callback API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [],
      "x-api-name": "CallbackListByDateAPI",
      "x-unicourt-tag": "CallbackAPIs"
    },
    "/case/{caseId}": {
      "get": {
        "description": "Retrieve the case with the specified caseId value.",
        "operationId": "getCase",
        "parameters": [],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "FederalCase": {
                    "$ref": "#/components/examples/CaseApiFederalCaseResponse"
                  },
                  "StateCase": {
                    "$ref": "#/components/examples/CaseApiStateCaseResponse"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Case"
                }
              }
            },
            "description": "The request is recieved."
          },
          "404": {
            "content": {
              "application/json": {
                "examples": {
                  "RequestedCaseIdIsInvalid": {
                    "$ref": "#/components/examples/FailureInvalidCaseId"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Resource Not Found"
          },
          "451": {
            "content": {
              "application/json": {
                "examples": {
                  "SealedCase": {
                    "$ref": "#/components/examples/SealedCase"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Sealed Case"
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "ServerError": {
                    "$ref": "#/components/examples/FailureServerError"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Server Error"
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Gets case information for a requested Case ID.",
        "tags": [
          "Case Docket API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [
        {
          "description": "Retrieve the case with the specified caseId value.",
          "examples": {
            "HTTP200-FederalCase": {
              "summary": "FederalCase",
              "value": "CASEgr45196c84f3ff"
            },
            "HTTP200-StateCase": {
              "summary": "StateCase",
              "value": "CASEar7a26f15e76cf"
            },
            "HTTP404-RequestedCaseIdIsInvalid": {
              "summary": "RequestedCaseIdIsInvalid",
              "value": "CASEzz99a698ea5413"
            },
            "HTTP451-SealedCase": {
              "summary": "SealedCase",
              "value": "CASEakfbd1817d7431"
            }
          },
          "in": "path",
          "name": "caseId",
          "required": true,
          "schema": {
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          }
        }
      ],
      "x-api-name": "CaseAPI",
      "x-unicourt-tag": "CaseDocketAPIs"
    },
    "/case/{caseId}/attorneys": {
      "get": {
        "description": "Retrieve the attorneys in the case with the specified caseId value.",
        "operationId": "getCaseAttorneys",
        "parameters": [
          {
            "allowEmptyValue": true,
            "description": "Retrieve attorneys in the case with the specified caseId value whose isVisible flag is set to the specified value.",
            "examples": {
              "HTTP200-AllAttorneysForACase": {
                "summary": "AllAttorneysForACase",
                "value": null
              },
              "HTTP400-InvalidIsVisibleParameterValuePassed": {
                "summary": "InvalidIsVisibleParameterValuePassed",
                "value": "all"
              }
            },
            "in": "query",
            "name": "isVisible",
            "required": false,
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Query parameter specifying the page number of the search results to be retrieved.",
            "examples": {
              "HTTP200-AllAttorneysForACase": {
                "summary": "AllAttorneysForACase",
                "value": 1
              },
              "HTTP400-InvalidIsVisibleParameterValuePassed": {
                "summary": "InvalidIsVisibleParameterValuePassed",
                "value": 1
              },
              "HTTP400-PageNumberParameterNotPassed": {
                "summary": "PageNumberParameterNotPassed",
                "value": "sda"
              },
              "HTTP400-RequestedPageNumberIsInvalid": {
                "summary": "RequestedPageNumberIsInvalid",
                "value": "das"
              },
              "HTTP404-RequestedCaseIdIsInvalid": {
                "summary": "RequestedCaseIdIsInvalid",
                "value": 1
              },
              "HTTP451-SealedCase": {
                "summary": "SealedCase",
                "value": 1
              }
            },
            "in": "query",
            "name": "pageNumber",
            "schema": {
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "AllAttorneysForACase": {
                    "$ref": "#/components/examples/CaseApiAttorneysResponse"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Attorneys"
                }
              }
            },
            "description": "The request is recieved."
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "InvalidIsVisibleParameterValuePassed": {
                    "$ref": "#/components/examples/FailureInvalidIsVisible"
                  },
                  "PageNumberParameterNotPassed": {
                    "$ref": "#/components/examples/FailurePageNumberIdNotPassed"
                  },
                  "RequestedPageNumberIsInvalid": {
                    "$ref": "#/components/examples/FailureInvalidPageNumber"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Invalid Input Parameter"
          },
          "404": {
            "content": {
              "application/json": {
                "examples": {
                  "RequestedCaseIdIsInvalid": {
                    "$ref": "#/components/examples/FailureInvalidCaseId"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Resource Not Found"
          },
          "451": {
            "content": {
              "application/json": {
                "examples": {
                  "SealedCase": {
                    "$ref": "#/components/examples/SealedCase"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Sealed Case"
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "ServerError": {
                    "$ref": "#/components/examples/FailureServerError"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Server Error"
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Gets Attorneys for a requested Case ID.",
        "tags": [
          "Case Docket API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [
        {
          "description": "Retrieve the case with the specified caseId value.",
          "examples": {
            "HTTP200-AllAttorneysForACase": {
              "summary": "AllAttorneysForACase",
              "value": "CASEgq5943bd47a6d2"
            },
            "HTTP400-InvalidIsVisibleParameterValuePassed": {
              "summary": "InvalidIsVisibleParameterValuePassed",
              "value": "CASEgued96d541f794"
            },
            "HTTP400-PageNumberParameterNotPassed": {
              "summary": "PageNumberParameterNotPassed",
              "value": "CASEgued96d541f794"
            },
            "HTTP400-RequestedPageNumberIsInvalid": {
              "summary": "RequestedPageNumberIsInvalid",
              "value": "CASEgued96d541f794"
            },
            "HTTP404-RequestedCaseIdIsInvalid": {
              "summary": "RequestedCaseIdIsInvalid",
              "value": "CASEzz99a698ea541d"
            },
            "HTTP451-SealedCase": {
              "summary": "SealedCase",
              "value": "CASEakfbd1817d7431"
            }
          },
          "in": "path",
          "name": "caseId",
          "required": true,
          "schema": {
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          }
        }
      ],
      "x-api-name": "AssociatedAttorneysForCaseAPI",
      "x-unicourt-tag": "CaseDocketAPIs"
    },
    "/case/{caseId}/docketEntries": {
      "get": {
        "description": "Retrieve the docket entries in the case with the specified caseId value.",
        "operationId": "getCaseDocketEntries",
        "parameters": [
          {
            "description": "Retrieve the docket entry witih the specified docket number in the case with the specified caseId value.",
            "examples": {
              "HTTP200-DocketsAPIResponse": {
                "summary": "DocketsAPIResponse",
                "value": null
              },
              "HTTP400-DocketNumberRequestedNotFound": {
                "summary": "DocketNumberRequestedNotFound",
                "value": "one"
              }
            },
            "in": "query",
            "name": "docketNumber",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Sort the retrieved docket entries in ascending order or descending order of date.",
            "examples": {
              "HTTP200-DocketsAPIResponse": {
                "summary": "DocketsAPIResponse",
                "value": "latest to oldest"
              },
              "HTTP400-RequestedInvalidSortBy": {
                "summary": "RequestedInvalidSortBy",
                "value": "all"
              }
            },
            "in": "query",
            "name": "sortBy",
            "schema": {
              "enum": [
                "latest to oldest",
                "oldest to latest"
              ],
              "maxLength": 20,
              "minLength": 10,
              "nullable": false,
              "type": "string"
            }
          },
          {
            "description": "Query parameter specifying the page number of the search results to be retrieved.",
            "examples": {
              "HTTP200-DocketsAPIResponse": {
                "summary": "DocketsAPIResponse",
                "value": 1
              },
              "HTTP400-DocketNumberRequestedNotFound": {
                "summary": "DocketNumberRequestedNotFound",
                "value": 1
              },
              "HTTP400-PageNumberParameterNotPassed": {
                "summary": "PageNumberParameterNotPassed",
                "value": "sda"
              },
              "HTTP400-RequestedInvalidSortBy": {
                "summary": "RequestedInvalidSortBy",
                "value": 1
              },
              "HTTP400-RequestedPageNumberIsInvalid": {
                "summary": "RequestedPageNumberIsInvalid",
                "value": "das"
              },
              "HTTP404-RequestedCaseIdIsInvalid": {
                "summary": "RequestedCaseIdIsInvalid",
                "value": 1
              },
              "HTTP451-SealedCase": {
                "summary": "SealedCase",
                "value": 1
              }
            },
            "in": "query",
            "name": "pageNumber",
            "schema": {
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "DocketsAPIResponse": {
                    "$ref": "#/components/examples/CaseApiDocketEntryResponse"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/DocketEntries"
                }
              }
            },
            "description": "The request is recieved."
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "DocketNumberRequestedNotFound": {
                    "$ref": "#/components/examples/FailureDocketNumberNotFound"
                  },
                  "PageNumberParameterNotPassed": {
                    "$ref": "#/components/examples/FailurePageNumberIdNotPassed"
                  },
                  "RequestedInvalidSortBy": {
                    "$ref": "#/components/examples/FailureInvalidSortBy"
                  },
                  "RequestedPageNumberIsInvalid": {
                    "$ref": "#/components/examples/FailureInvalidPageNumber"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Invalid Input Parameter"
          },
          "404": {
            "content": {
              "application/json": {
                "examples": {
                  "RequestedCaseIdIsInvalid": {
                    "$ref": "#/components/examples/FailureInvalidCaseId"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Resource Not Found"
          },
          "451": {
            "content": {
              "application/json": {
                "examples": {
                  "SealedCase": {
                    "$ref": "#/components/examples/SealedCase"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Sealed Case"
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "ServerError": {
                    "$ref": "#/components/examples/FailureServerError"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Server Error"
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Gets Docket Entries for a requested Case ID.",
        "tags": [
          "Case Docket API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [
        {
          "description": "Retrieve the case with the specified caseId value.",
          "examples": {
            "HTTP200-DocketsAPIResponse": {
              "summary": "DocketsAPIResponse",
              "value": "CASEgle0bf14b74a96"
            },
            "HTTP400-DocketNumberRequestedNotFound": {
              "summary": "DocketNumberRequestedNotFound",
              "value": "CASEgued96d541f794"
            },
            "HTTP400-PageNumberParameterNotPassed": {
              "summary": "PageNumberParameterNotPassed",
              "value": "CASEgued96d541f794"
            },
            "HTTP400-RequestedInvalidSortBy": {
              "summary": "RequestedInvalidSortBy",
              "value": "CASEgued96d541f794"
            },
            "HTTP400-RequestedPageNumberIsInvalid": {
              "summary": "RequestedPageNumberIsInvalid",
              "value": "CASEgued96d541f794"
            },
            "HTTP404-RequestedCaseIdIsInvalid": {
              "summary": "RequestedCaseIdIsInvalid",
              "value": "CASEzz99a698ea541d"
            },
            "HTTP451-SealedCase": {
              "summary": "SealedCase",
              "value": "CASEakfbd1817d7431"
            }
          },
          "in": "path",
          "name": "caseId",
          "required": true,
          "schema": {
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          }
        }
      ],
      "x-api-name": "CaseDocketEntriesAPI",
      "x-unicourt-tag": "CaseDocketAPIs"
    },
    "/case/{caseId}/docketEntries/primaryDocuments": {
      "get": {
        "description": "Retrieve the primary documents in the case with the specified caseId value.",
        "operationId": "getPrimaryDocumentsForDocketEntries",
        "parameters": [
          {
            "description": "Retrieve the primary documents associated with the specified docket number in the case with the specified caseId value.",
            "examples": {
              "HTTP200-AssociatedPrimaryDocumentsAPIResponse": {
                "summary": "AssociatedPrimaryDocumentsAPIResponse",
                "value": 1
              },
              "HTTP400-CannotRequestLibraryDateWhenInLibraryParameterIsFalse": {
                "summary": "CannotRequestLibraryDateWhenInLibraryParameterIsFalse",
                "value": 1
              },
              "HTTP400-DocketNumberParameterNotPassed": {
                "summary": "DocketNumberParameterNotPassed",
                "value": null
              },
              "HTTP400-InvalidIsVisibleParameterValuePassed": {
                "summary": "InvalidIsVisibleParameterValuePassed",
                "value": 1
              },
              "HTTP400-PageNumberParameterNotPassed": {
                "summary": "PageNumberParameterNotPassed",
                "value": 1
              },
              "HTTP400-RequestedAfterFirstFetchDateIsInvalid": {
                "summary": "RequestedAfterFirstFetchDateIsInvalid",
                "value": 1
              },
              "HTTP400-RequestedInLibraryIsInvalid": {
                "summary": "RequestedInLibraryIsInvalid",
                "value": 1
              },
              "HTTP400-RequestedLibraryDateIsInvalid": {
                "summary": "RequestedLibraryDateIsInvalid",
                "value": 1
              },
              "HTTP400-RequestedPageNumberIsInvalid": {
                "summary": "RequestedPageNumberIsInvalid",
                "value": 1
              },
              "HTTP404-RequestedCaseIdIsInvalid": {
                "summary": "RequestedCaseIdIsInvalid",
                "value": 1
              },
              "HTTP451-SealedCase": {
                "summary": "SealedCase",
                "value": 1
              }
            },
            "in": "query",
            "name": "docketNumber",
            "required": true,
            "schema": {
              "type": "integer"
            }
          },
          {
            "allowEmptyValue": true,
            "description": "Retrieve the primary documents in the with the specified inLibrary flag in the case with the specified caseId value.",
            "examples": {
              "HTTP200-AssociatedPrimaryDocumentsAPIResponse": {
                "summary": "AssociatedPrimaryDocumentsAPIResponse",
                "value": null
              },
              "HTTP400-CannotRequestLibraryDateWhenInLibraryParameterIsFalse": {
                "summary": "CannotRequestLibraryDateWhenInLibraryParameterIsFalse",
                "value": false
              },
              "HTTP400-RequestedInLibraryIsInvalid": {
                "summary": "RequestedInLibraryIsInvalid",
                "value": "all"
              }
            },
            "in": "query",
            "name": "inLibrary",
            "required": false,
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Retrieve all primary documents in the case with the specified caseId value that were first fetched by UniCourt on the specified date or within the specified date.",
            "examples": {
              "HTTP200-AssociatedPrimaryDocumentsAPIResponse": {
                "summary": "AssociatedPrimaryDocumentsAPIResponse",
                "value": null
              },
              "HTTP400-RequestedAfterFirstFetchDateIsInvalid": {
                "summary": "RequestedAfterFirstFetchDateIsInvalid",
                "value": "2022-05-042"
              }
            },
            "in": "query",
            "name": "afterFirstFetchDate",
            "schema": {
              "format": "date-time",
              "maxLength": 25,
              "minLength": 25,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "Retrieve all primary documents in the case with the specified caseId value that were added to the Crowdsourced Library on the specified date or within the specified date.",
            "examples": {
              "HTTP200-AssociatedPrimaryDocumentsAPIResponse": {
                "summary": "AssociatedPrimaryDocumentsAPIResponse",
                "value": null
              },
              "HTTP400-CannotRequestLibraryDateWhenInLibraryParameterIsFalse": {
                "summary": "CannotRequestLibraryDateWhenInLibraryParameterIsFalse",
                "value": "2022-05-04"
              },
              "HTTP400-RequestedLibraryDateIsInvalid": {
                "summary": "RequestedLibraryDateIsInvalid",
                "value": "2022-05-042"
              }
            },
            "in": "query",
            "name": "libraryDate",
            "schema": {
              "format": "date-time",
              "maxLength": 25,
              "minLength": 25,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "Query parameter specifying the page number of the search results to be retrieved.",
            "examples": {
              "HTTP200-AssociatedPrimaryDocumentsAPIResponse": {
                "summary": "AssociatedPrimaryDocumentsAPIResponse",
                "value": 1
              },
              "HTTP400-CannotRequestLibraryDateWhenInLibraryParameterIsFalse": {
                "summary": "CannotRequestLibraryDateWhenInLibraryParameterIsFalse",
                "value": "CASEgued96d541f794"
              },
              "HTTP400-DocketNumberParameterNotPassed": {
                "summary": "DocketNumberParameterNotPassed",
                "value": "CASEgued96d541f794"
              },
              "HTTP400-InvalidIsVisibleParameterValuePassed": {
                "summary": "InvalidIsVisibleParameterValuePassed",
                "value": 1
              },
              "HTTP400-PageNumberParameterNotPassed": {
                "summary": "PageNumberParameterNotPassed",
                "value": "sda"
              },
              "HTTP400-RequestedAfterFirstFetchDateIsInvalid": {
                "summary": "RequestedAfterFirstFetchDateIsInvalid",
                "value": 1
              },
              "HTTP400-RequestedInLibraryIsInvalid": {
                "summary": "RequestedInLibraryIsInvalid",
                "value": 1
              },
              "HTTP400-RequestedLibraryDateIsInvalid": {
                "summary": "RequestedLibraryDateIsInvalid",
                "value": 1
              },
              "HTTP400-RequestedPageNumberIsInvalid": {
                "summary": "RequestedPageNumberIsInvalid",
                "value": "das"
              },
              "HTTP404-RequestedCaseIdIsInvalid": {
                "summary": "RequestedCaseIdIsInvalid",
                "value": 1
              },
              "HTTP451-SealedCase": {
                "summary": "SealedCase",
                "value": 1
              }
            },
            "in": "query",
            "name": "pageNumber",
            "schema": {
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "AssociatedPrimaryDocumentsAPIResponse": {
                    "$ref": "#/components/examples/CaseApiDocketEntryPrimaryDocumentsResponse"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/DocketEntryPrimaryDocuments"
                }
              }
            },
            "description": "The request is recieved."
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "CannotRequestLibraryDateWhenInLibraryParameterIsFalse": {
                    "$ref": "#/components/examples/FailureCannotPassLibraryDateWhenInLibraryIsFalse"
                  },
                  "DocketNumberParameterNotPassed": {
                    "$ref": "#/components/examples/FailureDocketNumberIdNotPassed"
                  },
                  "PageNumberParameterNotPassed": {
                    "$ref": "#/components/examples/FailurePageNumberIdNotPassed"
                  },
                  "RequestedAfterFirstFetchDateIsInvalid": {
                    "$ref": "#/components/examples/FailureInvalidAfterFirstFetchDate"
                  },
                  "RequestedInLibraryIsInvalid": {
                    "$ref": "#/components/examples/FailureInvalidInLibrary"
                  },
                  "RequestedLibraryDateIsInvalid": {
                    "$ref": "#/components/examples/FailureInvalidLibraryDate"
                  },
                  "RequestedPageNumberIsInvalid": {
                    "$ref": "#/components/examples/FailureInvalidPageNumber"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Invalid Input Parameter"
          },
          "404": {
            "content": {
              "application/json": {
                "examples": {
                  "RequestedCaseIdIsInvalid": {
                    "$ref": "#/components/examples/FailureInvalidCaseId"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Resource Not Found"
          },
          "451": {
            "content": {
              "application/json": {
                "examples": {
                  "SealedCase": {
                    "$ref": "#/components/examples/SealedCase"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Sealed Case"
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "ServerError": {
                    "$ref": "#/components/examples/FailureServerError"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Server Error"
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Gets Primary Documents of Docket Entries.",
        "tags": [
          "Case Docket API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [
        {
          "description": "Retrieve the case with the specified caseId value.",
          "examples": {
            "HTTP200-AssociatedPrimaryDocumentsAPIResponse": {
              "summary": "AssociatedPrimaryDocumentsAPIResponse",
              "value": "CASEgq5da86597e9a4"
            },
            "HTTP400-CannotRequestLibraryDateWhenInLibraryParameterIsFalse": {
              "summary": "CannotRequestLibraryDateWhenInLibraryParameterIsFalse",
              "value": "CASEgued96d541f794"
            },
            "HTTP400-DocketNumberParameterNotPassed": {
              "summary": "DocketNumberParameterNotPassed",
              "value": "CASEgued96d541f794"
            },
            "HTTP400-InvalidIsVisibleParameterValuePassed": {
              "summary": "InvalidIsVisibleParameterValuePassed",
              "value": "CASEgued96d541f794"
            },
            "HTTP400-PageNumberParameterNotPassed": {
              "summary": "PageNumberParameterNotPassed",
              "value": "CASEgued96d541f794"
            },
            "HTTP400-RequestedAfterFirstFetchDateIsInvalid": {
              "summary": "RequestedAfterFirstFetchDateIsInvalid",
              "value": "CASEgued96d541f794"
            },
            "HTTP400-RequestedInLibraryIsInvalid": {
              "summary": "RequestedInLibraryIsInvalid",
              "value": "CASEgued96d541f794"
            },
            "HTTP400-RequestedLibraryDateIsInvalid": {
              "summary": "RequestedLibraryDateIsInvalid",
              "value": "CASEgued96d541f794"
            },
            "HTTP400-RequestedPageNumberIsInvalid": {
              "summary": "RequestedPageNumberIsInvalid",
              "value": "CASEgued96d541f794"
            },
            "HTTP404-RequestedCaseIdIsInvalid": {
              "summary": "RequestedCaseIdIsInvalid",
              "value": "CASEzz99a698ea541d"
            },
            "HTTP451-SealedCase": {
              "summary": "SealedCase",
              "value": "CASEakfbd1817d7431"
            }
          },
          "in": "path",
          "name": "caseId",
          "required": true,
          "schema": {
            "example": "CASEgued96d541f794",
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          }
        }
      ],
      "x-api-name": "PrimaryDocumentsForCaseDocketEntriesAPI",
      "x-unicourt-tag": "CaseDocketAPIs"
    },
    "/case/{caseId}/docketEntries/secondaryDocuments": {
      "get": {
        "description": "Retrieve the secondary documents in the case with the specified caseId value.",
        "operationId": "getSecondaryDocumentsForDocketEntries",
        "parameters": [
          {
            "description": "Retrieve the secondary documents associated with the specified docket number in the case with the specified caseId value.",
            "examples": {
              "HTTP200-AssociatedSecondaryDocumentsAPIResponse": {
                "summary": "AssociatedSecondaryDocumentsAPIResponse",
                "value": 1
              },
              "HTTP400-CannotRequestLibraryDateWhenInLibraryParameterIsFalse": {
                "summary": "CannotRequestLibraryDateWhenInLibraryParameterIsFalse",
                "value": 1
              },
              "HTTP400-DocketNumberParameterNotPassed": {
                "summary": "DocketNumberParameterNotPassed",
                "value": null
              },
              "HTTP400-InvalidIsVisibleParameterValuePassed": {
                "summary": "InvalidIsVisibleParameterValuePassed",
                "value": 1
              },
              "HTTP400-PageNumberParameterNotPassed": {
                "summary": "PageNumberParameterNotPassed",
                "value": 1
              },
              "HTTP400-RequestedAfterFirstFetchDateIsInvalid": {
                "summary": "RequestedAfterFirstFetchDateIsInvalid",
                "value": 1
              },
              "HTTP400-RequestedInLibraryIsInvalid": {
                "summary": "RequestedInLibraryIsInvalid",
                "value": 1
              },
              "HTTP400-RequestedLibraryDateIsInvalid": {
                "summary": "RequestedLibraryDateIsInvalid",
                "value": 1
              },
              "HTTP400-RequestedPageNumberIsInvalid": {
                "summary": "RequestedPageNumberIsInvalid",
                "value": 1
              },
              "HTTP404-RequestedCaseIdIsInvalid": {
                "summary": "RequestedCaseIdIsInvalid",
                "value": 1
              },
              "HTTP451-SealedCase": {
                "summary": "SealedCase",
                "value": 1
              }
            },
            "in": "query",
            "name": "docketNumber",
            "required": true,
            "schema": {
              "type": "integer"
            }
          },
          {
            "allowEmptyValue": true,
            "description": "Retrieve the secondary documents in the with the specified inLibrary flag in the case with the specified caseId value.",
            "examples": {
              "HTTP200-AssociatedSecondaryDocumentsAPIResponse": {
                "summary": "AssociatedSecondaryDocumentsAPIResponse",
                "value": null
              },
              "HTTP400-CannotRequestLibraryDateWhenInLibraryParameterIsFalse": {
                "summary": "CannotRequestLibraryDateWhenInLibraryParameterIsFalse",
                "value": false
              },
              "HTTP400-RequestedInLibraryIsInvalid": {
                "summary": "RequestedInLibraryIsInvalid",
                "value": "all"
              }
            },
            "in": "query",
            "name": "inLibrary",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Retrieve all secondary documents in the case with the specified caseId value that were first fetched by UniCourt on the specified date or within the specified date.",
            "examples": {
              "HTTP200-AssociatedSecondaryDocumentsAPIResponse": {
                "summary": "AssociatedSecondaryDocumentsAPIResponse",
                "value": null
              },
              "HTTP400-RequestedAfterFirstFetchDateIsInvalid": {
                "summary": "RequestedAfterFirstFetchDateIsInvalid",
                "value": "2022-05-042"
              }
            },
            "in": "query",
            "name": "afterFirstFetchDate",
            "schema": {
              "format": "date-time",
              "maxLength": 25,
              "minLength": 25,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "Retrieve all secondary documents in the case with the specified caseId value that were added to the Crowdsourced Library on the specified date or within the specified date.",
            "examples": {
              "HTTP200-AssociatedSecondaryDocumentsAPIResponse": {
                "summary": "AssociatedSecondaryDocumentsAPIResponse",
                "value": null
              },
              "HTTP400-CannotRequestLibraryDateWhenInLibraryParameterIsFalse": {
                "summary": "CannotRequestLibraryDateWhenInLibraryParameterIsFalse",
                "value": "2022-05-04"
              },
              "HTTP400-RequestedLibraryDateIsInvalid": {
                "summary": "RequestedLibraryDateIsInvalid",
                "value": "2022-05-042"
              }
            },
            "in": "query",
            "name": "libraryDate",
            "schema": {
              "format": "date-time",
              "maxLength": 25,
              "minLength": 25,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "Query parameter specifying the page number of the search results to be retrieved.",
            "examples": {
              "HTTP200-AssociatedSecondaryDocumentsAPIResponse": {
                "summary": "AssociatedSecondaryDocumentsAPIResponse",
                "value": 1
              },
              "HTTP400-CannotRequestLibraryDateWhenInLibraryParameterIsFalse": {
                "summary": "CannotRequestLibraryDateWhenInLibraryParameterIsFalse",
                "value": "CASEgued96d541f794"
              },
              "HTTP400-DocketNumberParameterNotPassed": {
                "summary": "DocketNumberParameterNotPassed",
                "value": "CASEgued96d541f794"
              },
              "HTTP400-InvalidIsVisibleParameterValuePassed": {
                "summary": "InvalidIsVisibleParameterValuePassed",
                "value": 1
              },
              "HTTP400-PageNumberParameterNotPassed": {
                "summary": "PageNumberParameterNotPassed",
                "value": "sda"
              },
              "HTTP400-RequestedAfterFirstFetchDateIsInvalid": {
                "summary": "RequestedAfterFirstFetchDateIsInvalid",
                "value": 1
              },
              "HTTP400-RequestedInLibraryIsInvalid": {
                "summary": "RequestedInLibraryIsInvalid",
                "value": 1
              },
              "HTTP400-RequestedLibraryDateIsInvalid": {
                "summary": "RequestedLibraryDateIsInvalid",
                "value": 1
              },
              "HTTP400-RequestedPageNumberIsInvalid": {
                "summary": "RequestedPageNumberIsInvalid",
                "value": "das"
              },
              "HTTP404-RequestedCaseIdIsInvalid": {
                "summary": "RequestedCaseIdIsInvalid",
                "value": 1
              },
              "HTTP451-SealedCase": {
                "summary": "SealedCase",
                "value": 1
              }
            },
            "in": "query",
            "name": "pageNumber",
            "schema": {
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "AssociatedSecondaryDocumentsAPIResponse": {
                    "$ref": "#/components/examples/CaseApiDocketEntrySeconaryDocumentsResponse"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/DocketEntrySecondaryDocuments"
                }
              }
            },
            "description": "The request is recieved."
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "CannotRequestLibraryDateWhenInLibraryParameterIsFalse": {
                    "$ref": "#/components/examples/FailureCannotPassLibraryDateWhenInLibraryIsFalse"
                  },
                  "DocketNumberParameterNotPassed": {
                    "$ref": "#/components/examples/FailureDocketNumberIdNotPassed"
                  },
                  "PageNumberParameterNotPassed": {
                    "$ref": "#/components/examples/FailurePageNumberIdNotPassed"
                  },
                  "RequestedAfterFirstFetchDateIsInvalid": {
                    "$ref": "#/components/examples/FailureInvalidAfterFirstFetchDate"
                  },
                  "RequestedInLibraryIsInvalid": {
                    "$ref": "#/components/examples/FailureInvalidInLibrary"
                  },
                  "RequestedLibraryDateIsInvalid": {
                    "$ref": "#/components/examples/FailureInvalidLibraryDate"
                  },
                  "RequestedPageNumberIsInvalid": {
                    "$ref": "#/components/examples/FailureInvalidPageNumber"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Invalid Input Parameter"
          },
          "404": {
            "content": {
              "application/json": {
                "examples": {
                  "RequestedCaseIdIsInvalid": {
                    "$ref": "#/components/examples/FailureInvalidCaseId"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Resource Not Found"
          },
          "451": {
            "content": {
              "application/json": {
                "examples": {
                  "SealedCase": {
                    "$ref": "#/components/examples/SealedCase"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Sealed Case"
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "ServerError": {
                    "$ref": "#/components/examples/FailureServerError"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Server Error"
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Gets Secondary Documents of Docket Entries.",
        "tags": [
          "Case Docket API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [
        {
          "description": "Retrieve the case with the specified caseId value.",
          "examples": {
            "HTTP200-AssociatedSecondaryDocumentsAPIResponse": {
              "summary": "AssociatedSecondaryDocumentsAPIResponse",
              "value": "CASEgq5da86597e9a4"
            },
            "HTTP400-CannotRequestLibraryDateWhenInLibraryParameterIsFalse": {
              "summary": "CannotRequestLibraryDateWhenInLibraryParameterIsFalse",
              "value": "CASEgued96d541f794"
            },
            "HTTP400-DocketNumberParameterNotPassed": {
              "summary": "DocketNumberParameterNotPassed",
              "value": "CASEgued96d541f794"
            },
            "HTTP400-InvalidIsVisibleParameterValuePassed": {
              "summary": "InvalidIsVisibleParameterValuePassed",
              "value": "CASEgued96d541f794"
            },
            "HTTP400-PageNumberParameterNotPassed": {
              "summary": "PageNumberParameterNotPassed",
              "value": "CASEgued96d541f794"
            },
            "HTTP400-RequestedAfterFirstFetchDateIsInvalid": {
              "summary": "RequestedAfterFirstFetchDateIsInvalid",
              "value": "CASEgued96d541f794"
            },
            "HTTP400-RequestedInLibraryIsInvalid": {
              "summary": "RequestedInLibraryIsInvalid",
              "value": "CASEgued96d541f794"
            },
            "HTTP400-RequestedLibraryDateIsInvalid": {
              "summary": "RequestedLibraryDateIsInvalid",
              "value": "CASEgued96d541f794"
            },
            "HTTP400-RequestedPageNumberIsInvalid": {
              "summary": "RequestedPageNumberIsInvalid",
              "value": "CASEgued96d541f794"
            },
            "HTTP404-RequestedCaseIdIsInvalid": {
              "summary": "RequestedCaseIdIsInvalid",
              "value": "CASEzz99a698ea541d"
            },
            "HTTP451-SealedCase": {
              "summary": "SealedCase",
              "value": "CASEakfbd1817d7431"
            }
          },
          "in": "path",
          "name": "caseId",
          "required": true,
          "schema": {
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          }
        }
      ],
      "x-api-name": "SecondaryDocumentsForCaseDocketEntriesAPI",
      "x-unicourt-tag": "CaseDocketAPIs"
    },
    "/case/{caseId}/documents": {
      "get": {
        "description": "Gets Documents for a requested Case ID.",
        "operationId": "getCaseDocuments",
        "parameters": [
          {
            "allowEmptyValue": true,
            "description": "Filter all the documents those are added to the UniCourt library.",
            "examples": {
              "HTTP200-CaseDocumentsForACase": {
                "summary": "CaseDocumentsForACase",
                "value": null
              },
              "HTTP400-CannotRequestLibraryDateWhenInLibraryParameterIsFalse": {
                "summary": "CannotRequestLibraryDateWhenInLibraryParameterIsFalse",
                "value": false
              },
              "HTTP400-RequestedInLibraryIsInvalid": {
                "summary": "RequestedInLibraryIsInvalid",
                "value": "all"
              }
            },
            "in": "query",
            "name": "inLibrary",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Get all the documents which were added to the case on or after a specific date.",
            "examples": {
              "HTTP200-CaseDocumentsForACase": {
                "summary": "CaseDocumentsForACase",
                "value": null
              },
              "HTTP400-RequestedAfterFirstFetchDateIsInvalid": {
                "summary": "RequestedAfterFirstFetchDateIsInvalid",
                "value": "2022-02-255"
              }
            },
            "in": "query",
            "name": "afterFirstFetchDate",
            "schema": {
              "format": "date-time",
              "maxLength": 25,
              "minLength": 25,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "Sort all the documents based on the date when the document was added to the UniCourt Library.",
            "examples": {
              "HTTP200-CaseDocumentsForACase": {
                "summary": "CaseDocumentsForACase",
                "value": null
              },
              "HTTP400-CannotRequestLibraryDateWhenInLibraryParameterIsFalse": {
                "summary": "CannotRequestLibraryDateWhenInLibraryParameterIsFalse",
                "value": "2022-05-04"
              },
              "HTTP400-RequestedLibraryDateIsInvalid": {
                "summary": "RequestedLibraryDateIsInvalid",
                "value": "2022-02-255"
              }
            },
            "in": "query",
            "name": "libraryDate",
            "schema": {
              "format": "date-time",
              "maxLength": 25,
              "minLength": 25,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "Sort all the documents based on the date it was fetched from the source site.",
            "examples": {
              "HTTP200-CaseDocumentsForACase": {
                "summary": "CaseDocumentsForACase",
                "value": null
              },
              "HTTP400-RequestedInvalidFirstFetchDate": {
                "summary": "RequestedInvalidFirstFetchDate",
                "value": "2022-02-255"
              }
            },
            "in": "query",
            "name": "firstFetchDate",
            "schema": {
              "format": "date-time",
              "maxLength": 25,
              "minLength": 25,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "Sort documents with document order.",
            "examples": {
              "HTTP200-CaseDocumentsForACase": {
                "summary": "CaseDocumentsForACase",
                "value": "latest to oldest"
              },
              "HTTP400-RequestedInvalidSortBy": {
                "summary": "RequestedInvalidSortBy",
                "value": "all"
              }
            },
            "in": "query",
            "name": "sortBy",
            "schema": {
              "enum": [
                "latest to oldest",
                "oldest to latest"
              ],
              "maxLength": 20,
              "minLength": 10,
              "type": "string"
            }
          },
          {
            "description": "The page for which the result should be retrieved.",
            "examples": {
              "HTTP200-CaseDocumentsForACase": {
                "summary": "CaseDocumentsForACase",
                "value": 1
              },
              "HTTP400-CannotRequestLibraryDateWhenInLibraryParameterIsFalse": {
                "summary": "CannotRequestLibraryDateWhenInLibraryParameterIsFalse",
                "value": 1
              },
              "HTTP400-PageNumberParameterNotPassed": {
                "summary": "PageNumberParameterNotPassed",
                "value": "sda"
              },
              "HTTP400-RequestedAfterFirstFetchDateIsInvalid": {
                "summary": "RequestedAfterFirstFetchDateIsInvalid",
                "value": 1
              },
              "HTTP400-RequestedInLibraryIsInvalid": {
                "summary": "RequestedInLibraryIsInvalid",
                "value": 1
              },
              "HTTP400-RequestedInvalidFirstFetchDate": {
                "summary": "RequestedInvalidFirstFetchDate",
                "value": 1
              },
              "HTTP400-RequestedInvalidSortBy": {
                "summary": "RequestedInvalidSortBy",
                "value": 1
              },
              "HTTP400-RequestedLibraryDateIsInvalid": {
                "summary": "RequestedLibraryDateIsInvalid",
                "value": 1
              },
              "HTTP400-RequestedPageNumberIsInvalid": {
                "summary": "RequestedPageNumberIsInvalid",
                "value": "das"
              },
              "HTTP404-RequestedCaseIdIsInvalid": {
                "summary": "RequestedCaseIdIsInvalid",
                "value": 1
              },
              "HTTP451-SealedCase": {
                "summary": "SealedCase",
                "value": 1
              }
            },
            "in": "query",
            "name": "pageNumber",
            "schema": {
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "CaseDocumentsForACase": {
                    "$ref": "#/components/examples/CaseApiCaseDocumentsResponse"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/CaseDocuments"
                }
              }
            },
            "description": "The request is recieved."
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "CannotRequestLibraryDateWhenInLibraryParameterIsFalse": {
                    "$ref": "#/components/examples/FailureCannotPassLibraryDateWhenInLibraryIsFalse"
                  },
                  "PageNumberParameterNotPassed": {
                    "$ref": "#/components/examples/FailurePageNumberIdNotPassed"
                  },
                  "RequestedAfterFirstFetchDateIsInvalid": {
                    "$ref": "#/components/examples/FailureInvalidAfterFirstFetchDate"
                  },
                  "RequestedInLibraryIsInvalid": {
                    "$ref": "#/components/examples/FailureInvalidInLibrary"
                  },
                  "RequestedInvalidFirstFetchDate": {
                    "$ref": "#/components/examples/FailureInvalidFirstFetchDate"
                  },
                  "RequestedInvalidSortBy": {
                    "$ref": "#/components/examples/FailureInvalidSortBy"
                  },
                  "RequestedLibraryDateIsInvalid": {
                    "$ref": "#/components/examples/FailureInvalidLibraryDate"
                  },
                  "RequestedPageNumberIsInvalid": {
                    "$ref": "#/components/examples/FailureInvalidPageNumber"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Invalid Input Parameter"
          },
          "404": {
            "content": {
              "application/json": {
                "examples": {
                  "RequestedCaseIdIsInvalid": {
                    "$ref": "#/components/examples/FailureInvalidCaseId"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Resource Not Found"
          },
          "451": {
            "content": {
              "application/json": {
                "examples": {
                  "SealedCase": {
                    "$ref": "#/components/examples/SealedCase"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Sealed Case"
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "ServerError": {
                    "$ref": "#/components/examples/FailureServerError"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Server Error"
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Gets Documents for a requested Case ID.",
        "tags": [
          "Case Documents API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [
        {
          "description": "Case ID for which you want the data for.",
          "examples": {
            "HTTP200-CaseDocumentsForACase": {
              "summary": "CaseDocumentsForACase",
              "value": "CASEgua4c06e119ea8"
            },
            "HTTP400-CannotRequestLibraryDateWhenInLibraryParameterIsFalse": {
              "summary": "CannotRequestLibraryDateWhenInLibraryParameterIsFalse",
              "value": "CASEgued96d541f794"
            },
            "HTTP400-PageNumberParameterNotPassed": {
              "summary": "PageNumberParameterNotPassed",
              "value": "CASEgued96d541f794"
            },
            "HTTP400-RequestedAfterFirstFetchDateIsInvalid": {
              "summary": "RequestedAfterFirstFetchDateIsInvalid",
              "value": "CASEgued96d541f794"
            },
            "HTTP400-RequestedInLibraryIsInvalid": {
              "summary": "RequestedInLibraryIsInvalid",
              "value": "CASEgued96d541f794"
            },
            "HTTP400-RequestedInvalidFirstFetchDate": {
              "summary": "RequestedInvalidFirstFetchDate",
              "value": "CASEgued96d541f794"
            },
            "HTTP400-RequestedInvalidSortBy": {
              "summary": "RequestedInvalidSortBy",
              "value": "CASEgued96d541f794"
            },
            "HTTP400-RequestedLibraryDateIsInvalid": {
              "summary": "RequestedLibraryDateIsInvalid",
              "value": "CASEgued96d541f794"
            },
            "HTTP400-RequestedPageNumberIsInvalid": {
              "summary": "RequestedPageNumberIsInvalid",
              "value": "CASEgued96d541f794"
            },
            "HTTP404-RequestedCaseIdIsInvalid": {
              "summary": "RequestedCaseIdIsInvalid",
              "value": "CASEzz99a698ea541d"
            },
            "HTTP451-SealedCase": {
              "summary": "SealedCase",
              "value": "CASEakfbd1817d7431"
            }
          },
          "in": "path",
          "name": "caseId",
          "required": true,
          "schema": {
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          }
        }
      ],
      "x-api-name": "CaseDocumentsForCaseAPI",
      "x-unicourt-tag": "CaseDocumentsAPIs"
    },
    "/case/{caseId}/hearings": {
      "get": {
        "description": "Gets Hearings for a requested Case ID.",
        "operationId": "getCaseHearings",
        "parameters": [
          {
            "description": "Specify the sort order of hearings in the case with the specified caseId.",
            "examples": {
              "HTTP200-CaseHearingsOfACase": {
                "summary": "CaseHearingsOfACase",
                "value": "latest to oldest"
              },
              "HTTP400-RequestedInvalidSortBy": {
                "summary": "RequestedInvalidSortBy",
                "value": "all"
              }
            },
            "in": "query",
            "name": "sortBy",
            "schema": {
              "enum": [
                "latest to oldest",
                "oldest to latest"
              ],
              "type": "string"
            }
          },
          {
            "description": "Query parameter specifying the page number of the search results to be retrieved.",
            "examples": {
              "HTTP200-CaseHearingsOfACase": {
                "summary": "CaseHearingsOfACase",
                "value": 1
              },
              "HTTP400-PageNumberParameterNotPassed": {
                "summary": "PageNumberParameterNotPassed",
                "value": "sda"
              },
              "HTTP400-RequestedInvalidSortBy": {
                "summary": "RequestedInvalidSortBy",
                "value": 1
              },
              "HTTP400-RequestedPageNumberIsInvalid": {
                "summary": "RequestedPageNumberIsInvalid",
                "value": "das"
              },
              "HTTP404-RequestedCaseIdIsInvalid": {
                "summary": "RequestedCaseIdIsInvalid",
                "value": 1
              },
              "HTTP451-SealedCase": {
                "summary": "SealedCase",
                "value": 1
              }
            },
            "in": "query",
            "name": "pageNumber",
            "schema": {
              "example": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "CaseHearingsOfACase": {
                    "$ref": "#/components/examples/CaseApiCaseHearingsResponse"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Hearings"
                }
              }
            },
            "description": "The request is recieved."
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "PageNumberParameterNotPassed": {
                    "$ref": "#/components/examples/FailurePageNumberIdNotPassed"
                  },
                  "RequestedInvalidSortBy": {
                    "$ref": "#/components/examples/FailureInvalidSortBy"
                  },
                  "RequestedPageNumberIsInvalid": {
                    "$ref": "#/components/examples/FailureInvalidPageNumber"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Invalid Input Parameter"
          },
          "404": {
            "content": {
              "application/json": {
                "examples": {
                  "RequestedCaseIdIsInvalid": {
                    "$ref": "#/components/examples/FailureInvalidCaseId"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Resource Not Found"
          },
          "451": {
            "content": {
              "application/json": {
                "examples": {
                  "SealedCase": {
                    "$ref": "#/components/examples/SealedCase"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Sealed Case"
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "ServerError": {
                    "$ref": "#/components/examples/FailureServerError"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Server Error"
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Gets Hearings for a requested Case ID.",
        "tags": [
          "Case Docket API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [
        {
          "description": "Retrieve the case with the specified caseId value.",
          "examples": {
            "HTTP200-CaseHearingsOfACase": {
              "summary": "CaseHearingsOfACase",
              "value": "CASEar3c45901ef267"
            },
            "HTTP400-PageNumberParameterNotPassed": {
              "summary": "PageNumberParameterNotPassed",
              "value": "CASEgued96d541f794"
            },
            "HTTP400-RequestedInvalidSortBy": {
              "summary": "RequestedInvalidSortBy",
              "value": "CASEgued96d541f794"
            },
            "HTTP400-RequestedPageNumberIsInvalid": {
              "summary": "RequestedPageNumberIsInvalid",
              "value": "CASEgued96d541f794"
            },
            "HTTP404-RequestedCaseIdIsInvalid": {
              "summary": "RequestedCaseIdIsInvalid",
              "value": "CASEzz99a698ea541d"
            },
            "HTTP451-SealedCase": {
              "summary": "SealedCase",
              "value": "CASEakfbd1817d7431"
            }
          },
          "in": "path",
          "name": "caseId",
          "required": true,
          "schema": {
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          }
        }
      ],
      "x-api-name": "CaseHearingsAPI",
      "x-unicourt-tag": "CaseDocketAPIs"
    },
    "/case/{caseId}/judges": {
      "get": {
        "description": "Retrieve the judges involved in the specified case.",
        "operationId": "getCaseJudges",
        "parameters": [
          {
            "allowEmptyValue": true,
            "description": "Retrieve attorneys judges in the case with the specified caseId value whose isVisible flag is set to the specified value.",
            "examples": {
              "HTTP200-AllJudgesForACase": {
                "summary": "AllJudgesForACase",
                "value": null
              },
              "HTTP400-InvalidIsVisibleParameterValuePassed": {
                "summary": "InvalidIsVisibleParameterValuePassed",
                "value": "all"
              }
            },
            "in": "query",
            "name": "isVisible",
            "required": false,
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Query parameter specifying the page number of the search results to be retrieved.",
            "examples": {
              "HTTP200-AllJudgesForACase": {
                "summary": "AllJudgesForACase",
                "value": 1
              },
              "HTTP400-InvalidIsVisibleParameterValuePassed": {
                "summary": "InvalidIsVisibleParameterValuePassed",
                "value": 1
              },
              "HTTP400-PageNumberParameterNotPassed": {
                "summary": "PageNumberParameterNotPassed",
                "value": "sda"
              },
              "HTTP400-RequestedPageNumberIsInvalid": {
                "summary": "RequestedPageNumberIsInvalid",
                "value": "das"
              },
              "HTTP404-RequestedCaseIdIsInvalid": {
                "summary": "RequestedCaseIdIsInvalid",
                "value": 1
              },
              "HTTP451-SealedCase": {
                "summary": "SealedCase",
                "value": 1
              }
            },
            "in": "query",
            "name": "pageNumber",
            "schema": {
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "AllJudgesForACase": {
                    "$ref": "#/components/examples/CaseApiJudgesResponse"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Judges"
                }
              }
            },
            "description": "The request is recieved."
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "InvalidIsVisibleParameterValuePassed": {
                    "$ref": "#/components/examples/FailureInvalidIsVisible"
                  },
                  "PageNumberParameterNotPassed": {
                    "$ref": "#/components/examples/FailurePageNumberIdNotPassed"
                  },
                  "RequestedPageNumberIsInvalid": {
                    "$ref": "#/components/examples/FailureInvalidPageNumber"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Invalid Input Parameter"
          },
          "404": {
            "content": {
              "application/json": {
                "examples": {
                  "RequestedCaseIdIsInvalid": {
                    "$ref": "#/components/examples/FailureInvalidCaseId"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Resource Not Found"
          },
          "451": {
            "content": {
              "application/json": {
                "examples": {
                  "SealedCase": {
                    "$ref": "#/components/examples/SealedCase"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Sealed Case"
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "ServerError": {
                    "$ref": "#/components/examples/FailureServerError"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Server Error"
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Gets Judges for a requested Case ID.",
        "tags": [
          "Case Docket API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [
        {
          "description": "Retrieve the case with the specified caseId value.",
          "examples": {
            "HTTP200-AllJudgesForACase": {
              "summary": "AllJudgesForACase",
              "value": "CASEgq6e6ea66cd91d"
            },
            "HTTP400-InvalidIsVisibleParameterValuePassed": {
              "summary": "InvalidIsVisibleParameterValuePassed",
              "value": "CASEgued96d541f794"
            },
            "HTTP400-PageNumberParameterNotPassed": {
              "summary": "PageNumberParameterNotPassed",
              "value": "CASEgued96d541f794"
            },
            "HTTP400-RequestedPageNumberIsInvalid": {
              "summary": "RequestedPageNumberIsInvalid",
              "value": "CASEgued96d541f794"
            },
            "HTTP404-RequestedCaseIdIsInvalid": {
              "summary": "RequestedCaseIdIsInvalid",
              "value": "CASEzz99a698ea541d"
            },
            "HTTP451-SealedCase": {
              "summary": "SealedCase",
              "value": "CASEakfbd1817d7431"
            }
          },
          "in": "path",
          "name": "caseId",
          "required": true,
          "schema": {
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          }
        }
      ],
      "x-api-name": "AssociatedJudgesForCaseAPI",
      "x-unicourt-tag": "CaseDocketAPIs"
    },
    "/case/{caseId}/parties": {
      "get": {
        "description": "Retrieve the parties involved in the case with the specified caseId value.",
        "operationId": "getCaseParties",
        "parameters": [
          {
            "allowEmptyValue": true,
            "description": "Retrieve parties in the case with the specified caseId value whose isVisible flag is set to the specified value.",
            "examples": {
              "HTTP200-AllPartiesForACase": {
                "summary": "AllPartiesForACase",
                "value": null
              },
              "HTTP400-InvalidIsVisibleParameterValuePassed": {
                "summary": "InvalidIsVisibleParameterValuePassed",
                "value": "all"
              }
            },
            "in": "query",
            "name": "isVisible",
            "required": false,
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Query parameter specifying the page number of the search results to be retrieved.",
            "examples": {
              "HTTP200-AllPartiesForACase": {
                "summary": "AllPartiesForACase",
                "value": 1
              },
              "HTTP400-InvalidIsVisibleParameterValuePassed": {
                "summary": "InvalidIsVisibleParameterValuePassed",
                "value": 1
              },
              "HTTP400-PageNumberParameterNotPassed": {
                "summary": "PageNumberParameterNotPassed",
                "value": "sda"
              },
              "HTTP400-RequestedPageNumberIsInvalid": {
                "summary": "RequestedPageNumberIsInvalid",
                "value": "das"
              },
              "HTTP404-RequestedCaseIdIsInvalid": {
                "summary": "RequestedCaseIdIsInvalid",
                "value": 1
              },
              "HTTP451-SealedCase": {
                "summary": "SealedCase",
                "value": 1
              }
            },
            "in": "query",
            "name": "pageNumber",
            "schema": {
              "type": "integer"
            }
          },
          {
            "allowEmptyValue": true,
            "description": "Retrieve all parties with the specified partyRoleId value in the case with the specified caseId value.",
            "examples": {
              "HTTP200-AllPartiesForACase": {
                "summary": "AllPartiesForACase",
                "value": null
              },
              "HTTP400-PartyRoleIdRequestedNotFound": {
                "summary": "PartyRoleIdRequestedNotFound",
                "value": "PTYRiMsyk7znqq5684"
              }
            },
            "in": "query",
            "name": "partyRoleId",
            "required": false,
            "schema": {
              "maxLength": 18,
              "minLength": 18,
              "nullable": false,
              "type": "string"
            }
          },
          {
            "allowEmptyValue": true,
            "description": "Retrieve all parties with the specified partyRoleGroupId value in the case with the specified caseId value.",
            "examples": {
              "HTTP200-AllPartiesForACase": {
                "summary": "AllPartiesForACase",
                "value": null
              },
              "HTTP400-PartyRoleGroupIdRequestedNotFound": {
                "summary": "PartyRoleGroupIdRequestedNotFound",
                "value": "PTYGUZYzpfQ8eCm895"
              }
            },
            "in": "query",
            "name": "partyRoleGroupId",
            "required": false,
            "schema": {
              "maxLength": 18,
              "minLength": 18,
              "nullable": false,
              "type": "string"
            }
          },
          {
            "allowEmptyValue": true,
            "description": "Retrieve all parties with the specified attorneyRepresentationTypeId value in the case with the specified caseId value.",
            "examples": {
              "HTTP200-AllPartiesForACase": {
                "summary": "AllPartiesForACase",
                "value": null
              },
              "HTTP400-AttorneyRepresentationTypeIdRequestedNotFound": {
                "summary": "AttorneyRepresentationTypeIdRequestedNotFound",
                "value": "ATRP2jCCwDRNaP9695"
              }
            },
            "in": "query",
            "name": "attorneyRepresentationTypeId",
            "required": false,
            "schema": {
              "maxLength": 18,
              "minLength": 18,
              "nullable": false,
              "type": "string"
            }
          },
          {
            "allowEmptyValue": true,
            "description": "Retrieve all parties with the specified partyClassificationType value in the case with the specified caseId value.",
            "examples": {
              "HTTP200-AllPartiesForACase": {
                "summary": "AllPartiesForACase",
                "value": null
              },
              "HTTP400-PartyClassificationTypeRequestedNotFound": {
                "summary": "PartyClassificationTypeRequestedNotFound",
                "value": "all"
              }
            },
            "in": "query",
            "name": "partyClassificationType",
            "required": false,
            "schema": {
              "enum": [
                "INDIVIDUAL",
                "COMPANY",
                "OTHER"
              ],
              "maxLength": 10,
              "minLength": 5,
              "nullable": false,
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "AllPartiesForACase": {
                    "$ref": "#/components/examples/CaseApiPartiesResponse"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Parties"
                }
              }
            },
            "description": "The request is recieved."
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "InvalidIsVisibleParameterValuePassed": {
                    "$ref": "#/components/examples/FailureInvalidIsVisible"
                  },
                  "PageNumberParameterNotPassed": {
                    "$ref": "#/components/examples/FailurePageNumberIdNotPassed"
                  },
                  "RequestedPageNumberIsInvalid": {
                    "$ref": "#/components/examples/FailureInvalidPageNumber"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Invalid Input Parameter"
          },
          "404": {
            "content": {
              "application/json": {
                "examples": {
                  "RequestedCaseIdIsInvalid": {
                    "$ref": "#/components/examples/FailureInvalidCaseId"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Resource Not Found"
          },
          "451": {
            "content": {
              "application/json": {
                "examples": {
                  "SealedCase": {
                    "$ref": "#/components/examples/SealedCase"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Sealed Case"
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "ServerError": {
                    "$ref": "#/components/examples/FailureServerError"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Server Error"
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Gets Parties for a requested Case ID.",
        "tags": [
          "Case Docket API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [
        {
          "description": "Retrieve the case with the specified caseId value.",
          "examples": {
            "HTTP200-AllPartiesForACase": {
              "summary": "AllPartiesForACase",
              "value": "CASEgq8f4cea2d8e1a"
            },
            "HTTP400-InvalidIsVisibleParameterValuePassed": {
              "summary": "InvalidIsVisibleParameterValuePassed",
              "value": "CASEgued96d541f794"
            },
            "HTTP400-PageNumberParameterNotPassed": {
              "summary": "PageNumberParameterNotPassed",
              "value": "CASEgued96d541f794"
            },
            "HTTP400-RequestedPageNumberIsInvalid": {
              "summary": "RequestedPageNumberIsInvalid",
              "value": "CASEgued96d541f794"
            },
            "HTTP404-RequestedCaseIdIsInvalid": {
              "summary": "RequestedCaseIdIsInvalid",
              "value": "CASEzz99a698ea541d"
            },
            "HTTP451-SealedCase": {
              "summary": "SealedCase",
              "value": "CASEakfbd1817d7431"
            }
          },
          "in": "path",
          "name": "caseId",
          "required": true,
          "schema": {
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          }
        }
      ],
      "x-api-name": "AssociatedPartiesForCaseAPI",
      "x-unicourt-tag": "CaseDocketAPIs"
    },
    "/case/{caseId}/relatedCases": {
      "get": {
        "description": "Retrieve cases that UniCourt has identified as related to the case with the specified caseId value.",
        "operationId": "getCaseRelatedCases",
        "parameters": [
          {
            "description": "Query parameter specifying the page number of the search results to be retrieved.",
            "examples": {
              "HTTP200-RelatedCasesOfACase": {
                "summary": "RelatedCasesOfACase",
                "value": 1
              },
              "HTTP400-PageNumberParameterNotPassed": {
                "summary": "PageNumberParameterNotPassed",
                "value": "sda"
              },
              "HTTP400-RequestedPageNumberIsInvalid": {
                "summary": "RequestedPageNumberIsInvalid",
                "value": "das"
              },
              "HTTP404-RequestedCaseIdIsInvalid": {
                "summary": "RequestedCaseIdIsInvalid",
                "value": 1
              },
              "HTTP451-SealedCase": {
                "summary": "SealedCase",
                "value": 1
              }
            },
            "in": "query",
            "name": "pageNumber",
            "schema": {
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "RelatedCasesOfACase": {
                    "$ref": "#/components/examples/CaseApiRelatedCasesResponse"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/RelatedCases"
                }
              }
            },
            "description": "The request is recieved."
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "PageNumberParameterNotPassed": {
                    "$ref": "#/components/examples/FailurePageNumberIdNotPassed"
                  },
                  "RequestedPageNumberIsInvalid": {
                    "$ref": "#/components/examples/FailureInvalidPageNumber"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Invalid Input Parameter"
          },
          "404": {
            "content": {
              "application/json": {
                "examples": {
                  "RequestedCaseIdIsInvalid": {
                    "$ref": "#/components/examples/FailureInvalidCaseId"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Resource Not Found"
          },
          "451": {
            "content": {
              "application/json": {
                "examples": {
                  "SealedCase": {
                    "$ref": "#/components/examples/SealedCase"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Sealed Case"
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "ServerError": {
                    "$ref": "#/components/examples/FailureServerError"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Server Error"
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Gets Related Cases for a requested Case ID.",
        "tags": [
          "Case Docket API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [
        {
          "description": "Retrieve the case with the specified caseId value.",
          "examples": {
            "HTTP200-RelatedCasesOfACase": {
              "summary": "RelatedCasesOfACase",
              "value": "CASEba328623913f9f"
            },
            "HTTP400-PageNumberParameterNotPassed": {
              "summary": "PageNumberParameterNotPassed",
              "value": "CASEgued96d541f794"
            },
            "HTTP400-RequestedPageNumberIsInvalid": {
              "summary": "RequestedPageNumberIsInvalid",
              "value": "CASEgued96d541f794"
            },
            "HTTP404-RequestedCaseIdIsInvalid": {
              "summary": "RequestedCaseIdIsInvalid",
              "value": "CASEzz99a698ea541d"
            },
            "HTTP451-SealedCase": {
              "summary": "SealedCase",
              "value": "CASEakfbd1817d7431"
            }
          },
          "in": "path",
          "name": "caseId",
          "required": true,
          "schema": {
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          }
        }
      ],
      "x-api-name": "RelatedCasesForCaseAPI",
      "x-unicourt-tag": "CaseDocketAPIs"
    },
    "/caseCountAnalyticsByAreaOfLaw": {
      "get": {
        "description": "Get Case Count Analytics by Area Of Law.\n## Terms and Connectors\n| Connector | Schema   | Description  | Example |\n| ------| ------| ------|------|\n| **AND** ||Find analytics containing all connected terms. The word AND does not have to be capitalized.|**courtId:\"CORTV4vCEaKrhystBz\" AND courtLocationId:\"COLO6b82CkRqS846hx\"**|\n| **IN()** || Allows you to specify multiple values, for a limit of up to 10.| **courtId IN (\"CORTKQiA4LJuv54tEj\",\"CORTV4vCEaKrhystBz\")**|\n| **courtId** | Multiple Ids Allowed |Find Analytics for a particular Court Object. | **courtId:\"CORTV4vCEaKrhystBz\"** |\n| **courtSystemId** | Multiple Ids Allowed |Find Analytics for a particular Court System Object. | **courtSystemId:\"COSYACHBdMewtaG5DY\"** |\n| **courtTypeId** | Multiple Ids Allowed |Find Analytics for a particular Court Type Object. | **courtTypeId:\"COTPm8jjc2PAydpFhq\"** |\n| **courtLocationId** | Multiple Ids Allowed |Find Analytics for a particular Court Location Object. | **courtLocationId:\"COLO6b82CkRqS846hx\"** |\n| **caseTypeId** | Multiple Ids Allowed |Find Analytics for a particular Case Type Object. | **caseTypeId:\"CTYPATMYyaJekdgj2c\"** |\n| **caseTypeGroupId** | Multiple Ids Allowed |Find Analytics for a particular Case Type Group Object. | **caseTypeGroupId:\"CTYG8gZ6hPRKhhYi4Y\"** |\n| **areaOfLawId** | Multiple Ids Allowed |Find Analytics for a particular Area Of Law Object. | **areaOfLawId:\"AOFL2UxEWfVmTPMyqf\"** |\n| **caseClassId** | Multiple Ids Allowed |Find Analytics for a particular Case Class Category Object. | **caseClassId:\"CSCLNjbKTN7Yfo2wdb\"** |\n| **partyRoleId** | Multiple Ids Allowed |Find Analytics for a particular Party Type Object. | **partyRoleId:\"PTYRiP8nMgPxBsPc5i\"** |\n| **partyRoleGroupId** | Multiple Ids Allowed |Find Analytics for a particular Party Type Group Object. | **partyRoleGroupId:\"PTYGBnjxbx6tKNfVEP\"** |\n| **attorneyPartyRoleId** | Multiple Ids Allowed |Find Analytics for a particular Attorney Party Type Object. | **attorneyPartyRoleId:\"PTYRiP8nMgPxBsPc5i\"** |\n| **attorneyPartyRoleGroupId** | Multiple Ids Allowed |Find Analytics for a particular Attorney Party Type Group Object. | **attorneyPartyRoleGroupId:\"PTYGBnjxbx6tKNfVEP\"** |\n| **normAttorneyId** | Multiple Ids Allowed  |Find Analytics for a particular norm Attorney Object. | **normAttorneyId:\"NATYfwmXwRHS279WPY\"** |\n| **normPartyId** | Multiple Ids Allowed |Find Analytics for a particular Party Object. | **normPartyId:\"NORGrPmQyLdx9NGHcT\"** |\n| **normLawFirmId** | Multiple Ids Allowed |Find Analytics for a particular Norm LawFirm Object. | **normLawFirmId:\"NORGrPmQyLdx9NGHcT\"** |\n| **normJudgeId** | Multiple Ids Allowed |Find Analytics for a particular Judge Object. | **normJudgeId:\"NJUDT7jCZyFNeLGpRq\"** |\n| **caseFiledDate** | Single Allowed  |Find Analytics within a particular date range. | **caseFiledDate:[2018-05-08T00:00:00+00:00TO2019-05-08T00:00:00+00:00]** |\n| **JurisdictionGeo** | Multiple filters Allowed |Find Analytics within a particular Jurisdiction Geo. | **(JurisdictionGeo:(state:\"California\"))** |\n| **confidenceScore** | Single Allowed |Find Analytics for a given ConfidenceScore  | **confidenceScore>=0.5** |\n| **bestMatch** | Single Allowed |True if the normEntity has the highest Confidence Score of all possible normEntities | **bestMatch:true** |\n<br>\n## Example Query\nQuery to get case count grouped by Area Of Law of all cases with case type id CTYPATMYyaJekdgj2c and filed between Jan 1st, 2017 to Nov 30th,2021<br>\nq=caseTypeId:\"CTYPATMYyaJekdgj2c\" AND caseFiledDate:[2017-01-01T00:00:00+00:00TO2021-11-30T00:00:00+00:00]\n",
        "operationId": "getCaseCountAnalyticsByAreaOfLaw",
        "parameters": [
          {
            "description": "The URL encoded query you are searching for. The query can be as simple as a keyword, but supports many additional options and filters. All options are documented above.",
            "examples": {
              "HTTP200-modifiedValue": {
                "summary": "Default value",
                "value": ""
              },
              "HTTP200-sampleAnalyticsQuery": {
                "summary": "sampleAnalyticsQuery",
                "value": "caseTypeId:\"CTYPATMYyaJekdgj2c\" AND caseFiledDate:[2017-01-01T00:00:00+00:00TO2021-11-30T00:00:00+00:00]"
              },
              "HTTP400-sample400AnalyticsQuery": {
                "summary": "sample400AnalyticsQuery",
                "value": "caseTypeId:\"CTYPATMYyaJekdgj2c\" AND caseFiledDate:[2018-01-01T00:00:00+00:00TO2021-11-3000:00:00+00:00]"
              },
              "HTTP404-sample404AnalyticsQuery": {
                "summary": "sample404AnalyticsQuery",
                "value": "caseTypeId:\"CTYPATMYy1Jekdgj2c\" AND caseFiledDate:[2018-01-01T00:00:00+00:00TO2021-11-30T00:00:00+00:00]"
              }
            },
            "in": "query",
            "name": "q",
            "schema": {
              "maxLength": 2048,
              "nullable": false,
              "type": "string"
            }
          },
          {
            "$ref": "#/components/parameters/AnalyticsPageParam"
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleAnalyticsQuery": {
                    "value": {
                      "nextPageAPI": null,
                      "object": "CaseCountAnalyticsByAreaOfLawResponse",
                      "previousPageAPI": null,
                      "results": [
                        {
                          "areaOfLaw": {
                            "areaOfLawId": "AOFL2UxEWfVmTPMyqf",
                            "caseClass": "Civil",
                            "caseClassId": "CSCLNjbKTN7Yfo2wdb",
                            "createdDate": "2022-03-28T04:58:28+00:00",
                            "name": "Commercial and Trade",
                            "object": "AreaOfLaw"
                          },
                          "caseCount": 2805436,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCJ3u9VLR5h6gHUw",
                          "object": "CaseCountAnalyticsByAreaOfLaw"
                        }
                      ],
                      "totalAreaOfLawCount": 1,
                      "totalCaseCount": 2805436,
                      "totalPages": 1
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/CaseCountAnalyticsByAreaOfLawResponse"
                }
              }
            },
            "description": "OK"
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "sample400AnalyticsQuery": {
                    "value": {
                      "code": "UN400",
                      "details": "caseFiledDate is not in a required format",
                      "message": "INVALID_INPUT",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Bad Request"
          },
          "404": {
            "content": {
              "application/json": {
                "examples": {
                  "sample404AnalyticsQuery": {
                    "value": {
                      "code": "UN404",
                      "details": "caseTypeId not found",
                      "message": "RESOURCE_NOT_FOUND",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Not Found"
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "example-1": {
                    "value": {
                      "code": "UN500",
                      "details": "Has encountered a situation which needs to be handled.",
                      "message": "INTERNAL_SERVER_ERROR",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Internal Server Error"
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Case Count Analytics by Area Of Law.",
        "tags": [
          "Case Analytics API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [],
      "x-api-name": "CaseCountAnalyticsByAreaOfLawAPI",
      "x-unicourt-tag": "CaseAnalyticsAPIs"
    },
    "/caseCountAnalyticsByCaseClass": {
      "get": {
        "description": "Get Analytics by Case Class.\n## Terms and Connectors\n| Connector | Schema   | Description  | Example |\n| ------| ------| ------|------|\n| **AND** ||Find analytics containing all connected terms. The word AND does not have to be capitalized.|**courtId:\"CORTV4vCEaKrhystBz\" AND courtLocationId:\"COLO6b82CkRqS846hx\"**|\n| **IN()** || Allows you to specify multiple values, for a limit of up to 10.| **courtId IN (\"CORTKQiA4LJuv54tEj\",\"CORTV4vCEaKrhystBz\")**|\n| **courtId** | Multiple Ids Allowed |Find Analytics for a particular Court Object. | **courtId:\"CORTV4vCEaKrhystBz\"** |\n| **courtSystemId** | Multiple Ids Allowed |Find Analytics for a particular Court System Object. | **courtSystemId:\"COSYACHBdMewtaG5DY\"** |\n| **courtTypeId** | Multiple Ids Allowed |Find Analytics for a particular Court Type Object. | **courtTypeId:\"COTPm8jjc2PAydpFhq\"** |\n| **courtLocationId** | Multiple Ids Allowed |Find Analytics for a particular Court Location Object. | **courtLocationId:\"COLO6b82CkRqS846hx\"** |\n| **caseTypeId** | Multiple Ids Allowed |Find Analytics for a particular Case Type Object. | **caseTypeId:\"CTYPATMYyaJekdgj2c\"** |\n| **caseTypeGroupId** | Multiple Ids Allowed |Find Analytics for a particular Case Type Group Object. | **caseTypeGroupId:\"CTYG8gZ6hPRKhhYi4Y\"** |\n| **areaOfLawId** | Multiple Ids Allowed |Find Analytics for a particular Area Of Law Object. | **areaOfLawId:\"AOFL2UxEWfVmTPMyqf\"** |\n| **caseClassId** | Multiple Ids Allowed |Find Analytics for a particular Case Class Category Object. | **caseClassId:\"CSCLNjbKTN7Yfo2wdb\"** |\n| **partyRoleId** | Multiple Ids Allowed |Find Analytics for a particular Party Type Object. | **partyRoleId:\"PTYRiP8nMgPxBsPc5i\"** |\n| **partyRoleGroupId** | Multiple Ids Allowed |Find Analytics for a particular Party Type Group Object. | **partyRoleGroupId:\"PTYGBnjxbx6tKNfVEP\"** |\n| **attorneyPartyRoleId** | Multiple Ids Allowed |Find Analytics for a particular Attorney Party Type Object. | **attorneyPartyRoleId:\"PTYRiP8nMgPxBsPc5i\"** |\n| **attorneyPartyRoleGroupId** | Multiple Ids Allowed |Find Analytics for a particular Attorney Party Type Group Object. | **attorneyPartyRoleGroupId:\"PTYGBnjxbx6tKNfVEP\"** |\n| **normAttorneyId** | Multiple Ids Allowed |Find Analytics for a particular norm Attorney Object. | **normAttorneyId:\"NATYfwmXwRHS279WPY\"** |\n| **normPartyId** | Multiple Ids Allowed |Find Analytics for a particular Party Object. | **normPartyId:\"NORGrPmQyLdx9NGHcT\"** |\n| **normLawFirmId** | Multiple Ids Allowed |Find Analytics for a particular Norm LawFirm Object. | **normLawFirmId:\"NORGrPmQyLdx9NGHcT\"** |\n| **normJudgeId** | Multiple Ids Allowed |Find Analytics for a particular Judge Object. | **normJudgeId:\"NJUDT7jCZyFNeLGpRq\"** |\n| **caseFiledDate** | Single Allowed   |Find Analytics within a particular date range. | **caseFiledDate:[2018-05-08T00:00:00+00:00TO2019-05-08T00:00:00+00:00]** |\n| **JurisdictionGeo** | Multiple filters Allowed |Find Analytics within a particular Jurisdiction Geo. | **(JurisdictionGeo:(state:\"California\"))** |\n| **confidenceScore** | Single Allowed |Find Analytics for a given ConfidenceScore  | **confidenceScore>=0.5** |\n| **bestMatch** | Single Allowed |True if the normEntity has the highest Confidence Score of all possible normEntities | **bestMatch:true** |\n<br>\n## Example Query\nQuery to get case count grouped by Case Class  of all cases with case type id CTYPATMYyaJekdgj2c and filed between Jan 1st, 2017 to Nov 30th,2021<br>\nq=caseTypeId:\"CTYPATMYyaJekdgj2c\" AND caseFiledDate:[2017-01-01T00:00:00+00:00TO2021-11-30T00:00:00+00:00]\n",
        "operationId": "getCaseCountAnalyticsByCaseClass",
        "parameters": [
          {
            "description": "The URL encoded query you are searching for. The query can be as simple as a keyword, but supports many additional options and filters. All options are documented above.",
            "examples": {
              "HTTP200-modifiedValue": {
                "summary": "Default value",
                "value": ""
              },
              "HTTP200-sampleAnalyticsQuery": {
                "summary": "sampleAnalyticsQuery",
                "value": "caseTypeId:\"CTYPATMYyaJekdgj2c\" AND caseFiledDate:[2017-01-01T00:00:00+00:00TO2021-11-30T00:00:00+00:00]"
              },
              "HTTP400-sample400AnalyticsQuery": {
                "summary": "sample400AnalyticsQuery",
                "value": "caseTypeId:\"CTYPATMYyaJekdgj2c\" AND caseFiledDate:[2018-01-01T00:00:00+00:00TO2021-11-3000:00:00+00:00]"
              },
              "HTTP404-sample404AnalyticsQuery": {
                "summary": "sample404AnalyticsQuery",
                "value": "caseTypeId:\"CTYPATMYy1Jekdgj2c\" AND caseFiledDate:[2018-01-01T00:00:00+00:00TO2021-11-30T00:00:00+00:00]"
              }
            },
            "in": "query",
            "name": "q",
            "schema": {
              "maxLength": 2048,
              "nullable": false,
              "type": "string"
            }
          },
          {
            "$ref": "#/components/parameters/AnalyticsPageParam"
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleAnalyticsQuery": {
                    "value": {
                      "nextPageAPI": null,
                      "object": "CaseCountAnalyticsByCaseClassResponse",
                      "previousPageAPI": null,
                      "results": [
                        {
                          "caseClass": {
                            "caseClassId": "CSCLNjbKTN7Yfo2wdb",
                            "createdDate": "2022-03-28T04:58:29+00:00",
                            "name": "Civil",
                            "object": "CaseClass"
                          },
                          "caseCount": 2805436,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC7LsarzgtQPdLd5",
                          "object": "CaseCountAnalyticsByCaseClass"
                        }
                      ],
                      "totalCaseClassCount": 1,
                      "totalCaseCount": 2805436,
                      "totalPages": 1
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/CaseCountAnalyticsByCaseClassResponse"
                }
              }
            },
            "description": "OK"
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "sample400AnalyticsQuery": {
                    "value": {
                      "code": "UN400",
                      "details": "caseFiledDate is not in a required format",
                      "message": "INVALID_INPUT",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Bad Request"
          },
          "404": {
            "content": {
              "application/json": {
                "examples": {
                  "sample404AnalyticsQuery": {
                    "value": {
                      "code": "UN404",
                      "details": "caseTypeId not found",
                      "message": "RESOURCE_NOT_FOUND",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Not Found"
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "example-1": {
                    "value": {
                      "code": "UN500",
                      "details": "Has encountered a situation which needs to be handled.",
                      "message": "INTERNAL_SERVER_ERROR",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Internal Server Error"
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Case Count Analytics by Case Class.",
        "tags": [
          "Case Analytics API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [],
      "x-api-name": "CaseCountAnalyticsByCaseClassAPI",
      "x-unicourt-tag": "CaseAnalyticsAPIs"
    },
    "/caseCountAnalyticsByCaseFiledDate": {
      "get": {
        "description": "Get Case Count Analytics grouped by Filing Date.\n## Terms and Connectors\n| Connector | Schema   | Description  | Example |\n| ------| ------| ------|------|\n| **AND** ||Find analytics containing all connected terms. The word AND does not have to be capitalized.|**courtId:\"CORTV4vCEaKrhystBz\" AND courtLocationId:\"COLO6b82CkRqS846hx\"**|\n| **IN()** || Allows you to specify multiple values, for a limit of up to 10.| **courtId IN (\"CORTKQiA4LJuv54tEj\",\"CORTV4vCEaKrhystBz\")**|\n| **courtId** | Multiple Ids Allowed |Find Analytics for a particular Court Object. | **courtId:\"CORTV4vCEaKrhystBz\"** |\n| **courtSystemId** | Multiple Ids Allowed |Find Analytics for a particular Court System Object. | **courtSystemId:\"COSYACHBdMewtaG5DY\"** |\n| **courtTypeId** | Multiple Ids Allowed |Find Analytics for a particular Court Type Object. | **courtTypeId:\"COTPm8jjc2PAydpFhq\"** |\n| **courtLocationId** | Multiple Ids Allowed |Find Analytics for a particular Court Location Object. | **courtLocationId:\"COLO6b82CkRqS846hx\"** |\n| **caseTypeId** | Multiple Ids Allowed |Find Analytics for a particular Case Type Object. | **caseTypeId:\"CTYPATMYyaJekdgj2c\"** |\n| **caseTypeGroupId** | Multiple Ids Allowed |Find Analytics for a particular Case Type Group Object. | **caseTypeGroupId:\"CTYG8gZ6hPRKhhYi4Y\"** |\n| **areaOfLawId** | Multiple Ids Allowed |Find Analytics for a particular Area Of Law Object. | **areaOfLawId:\"AOFL2UxEWfVmTPMyqf\"** |\n| **caseClassId** | Multiple Ids Allowed |Find Analytics for a particular Case Class Category Object. | **caseClassId:\"CSCLNjbKTN7Yfo2wdb\"** |\n| **partyRoleId** | Multiple Ids Allowed |Find Analytics for a particular Party Type Object. | **partyRoleId:\"PTYRiP8nMgPxBsPc5i\"** |\n| **partyRoleGroupId** | Multiple Ids Allowed |Find Analytics for a particular Party Type Group Object. | **partyRoleGroupId:\"PTYGBnjxbx6tKNfVEP\"** |\n| **attorneyPartyRoleId** | Multiple Ids Allowed |Find Analytics for a particular Attorney Party Type Object. | **attorneyPartyRoleId:\"PTYRiP8nMgPxBsPc5i\"** |\n| **attorneyPartyRoleGroupId** | Multiple Ids Allowed |Find Analytics for a particular Attorney Party Type Group Object. | **attorneyPartyRoleGroupId:\"PTYGBnjxbx6tKNfVEP\"** |\n| **normAttorneyId** | Multiple Ids Allowed |Find Analytics for a particular norm Attorney Object. | **normAttorneyId:\"NATYfwmXwRHS279WPY\"** |\n| **normPartyId** | Multiple Ids Allowed |Find Analytics for a particular Party Object. | **normPartyId:\"NORGrPmQyLdx9NGHcT\"** |\n| **normLawFirmId** | Multiple Ids Allowed |Find Analytics for a particular Norm LawFirm Object. | **normLawFirmId:\"NORGrPmQyLdx9NGHcT\"** |\n| **normJudgeId** | Multiple Ids Allowed |Find Analytics for a particular Judge Object. | **normJudgeId:\"NJUDT7jCZyFNeLGpRq\"** |\n| **caseFiledDate** | Single Allowed  |Find Analytics within a particular date range. | **caseFiledDate:[2018-05-08T00:00:00+00:00TO2019-05-08T00:00:00+00:00]** |\n| **JurisdictionGeo** | Multiple filters Allowed |Find Analytics within a particular Jurisdiction Geo. | **(JurisdictionGeo:(state:\"California\"))** |\n| **confidenceScore** | Single Allowed |Find Analytics for a given ConfidenceScore  | **confidenceScore>=0.5** |\n| **bestMatch** | Single Allowed |True if the normEntity has the highest Confidence Score of all possible normEntities | **bestMatch:true** |\n<br>\n## Example Query\nQuery to get case count grouped by case filed date of all cases with case type id CTYPATMYyaJekdgj2c and filed between Jan 1st, 2017 to Nov 30th,2021<br>\nq=caseTypeId:\"CTYPATMYyaJekdgj2c\" AND caseFiledDate:[2017-01-01T00:00:00+00:00TO2021-11-30T00:00:00+00:00]\n",
        "operationId": "getCaseCountAnalyticsByCaseFiledDate",
        "parameters": [
          {
            "description": "The URL encoded query you are searching for. The query can be as simple as a keyword, but supports many additional options and filters. All options are documented above.",
            "examples": {
              "HTTP200-modifiedValue": {
                "summary": "Default value",
                "value": ""
              },
              "HTTP200-sampleAnalyticsQuery": {
                "summary": "sampleAnalyticsQuery",
                "value": "caseTypeId:\"CTYPATMYyaJekdgj2c\" AND caseFiledDate:[2017-01-01T00:00:00+00:00TO2021-11-30T00:00:00+00:00]"
              },
              "HTTP400-sample400AnalyticsQuery": {
                "summary": "sample400AnalyticsQuery",
                "value": "caseTypeId:\"CTYPATMYyaJekdgj2c\" AND caseFiledDate:[2018-01-01T00:00:00+00:00TO2021-11-3000:00:00+00:00]"
              },
              "HTTP404-sample404AnalyticsQuery": {
                "summary": "sample404AnalyticsQuery",
                "value": "caseTypeId:\"CTYPATMYy1Jekdgj2c\" AND caseFiledDate:[2018-01-01T00:00:00+00:00TO2021-11-30T00:00:00+00:00]"
              }
            },
            "in": "query",
            "name": "q",
            "schema": {
              "maxLength": 2048,
              "nullable": false,
              "type": "string"
            }
          },
          {
            "$ref": "#/components/parameters/AnalyticsPageParam"
          },
          {
            "$ref": "#/components/parameters/GroupByParam"
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleAnalyticsQuery": {
                    "value": {
                      "nextPageAPI": null,
                      "object": "CaseCountAnalyticsByCaseFiledDateResponse",
                      "previousPageAPI": null,
                      "results": [
                        {
                          "caseCount": 607314,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCUHDVYrNq2oAseY",
                          "groupedBy": "Yearly",
                          "monthInt": null,
                          "monthString": null,
                          "object": "CaseCountAnalyticsByCaseFiledDate",
                          "quarter": null,
                          "weekOfMonth": null,
                          "weekOfYear": null,
                          "year": 2021
                        },
                        {
                          "caseCount": 541059,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCUHDVYrNq2oAseY",
                          "groupedBy": "Yearly",
                          "monthInt": null,
                          "monthString": null,
                          "object": "CaseCountAnalyticsByCaseFiledDate",
                          "quarter": null,
                          "weekOfMonth": null,
                          "weekOfYear": null,
                          "year": 2020
                        },
                        {
                          "caseCount": 693810,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCUHDVYrNq2oAseY",
                          "groupedBy": "Yearly",
                          "monthInt": null,
                          "monthString": null,
                          "object": "CaseCountAnalyticsByCaseFiledDate",
                          "quarter": null,
                          "weekOfMonth": null,
                          "weekOfYear": null,
                          "year": 2019
                        },
                        {
                          "caseCount": 567474,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCUHDVYrNq2oAseY",
                          "groupedBy": "Yearly",
                          "monthInt": null,
                          "monthString": null,
                          "object": "CaseCountAnalyticsByCaseFiledDate",
                          "quarter": null,
                          "weekOfMonth": null,
                          "weekOfYear": null,
                          "year": 2018
                        },
                        {
                          "caseCount": 395779,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCUHDVYrNq2oAseY",
                          "groupedBy": "Yearly",
                          "monthInt": null,
                          "monthString": null,
                          "object": "CaseCountAnalyticsByCaseFiledDate",
                          "quarter": null,
                          "weekOfMonth": null,
                          "weekOfYear": null,
                          "year": 2017
                        }
                      ],
                      "totalCaseCount": 2805436,
                      "totalCaseFiledDateCount": 5,
                      "totalPages": 1
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/CaseCountAnalyticsByCaseFiledDateResponse"
                }
              }
            },
            "description": "OK"
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "sample400AnalyticsQuery": {
                    "value": {
                      "code": "UN400",
                      "details": "caseFiledDate is not in a required format",
                      "message": "INVALID_INPUT",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Bad Request"
          },
          "404": {
            "content": {
              "application/json": {
                "examples": {
                  "sample404AnalyticsQuery": {
                    "value": {
                      "code": "UN404",
                      "details": "caseTypeId not found",
                      "message": "RESOURCE_NOT_FOUND",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Not Found"
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "example-1": {
                    "value": {
                      "code": "UN500",
                      "details": "Has encountered a situation which needs to be handled.",
                      "message": "INTERNAL_SERVER_ERROR",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Internal Server Error"
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Case Count Analytics by Case Filed Date.",
        "tags": [
          "Case Analytics API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [],
      "x-api-name": "CaseCountAnalyticsByCaseFiledDateAPI",
      "x-unicourt-tag": "CaseAnalyticsAPIs"
    },
    "/caseCountAnalyticsByCaseType": {
      "get": {
        "description": "Get Case Count Analytics by Case Type.\n## Terms and Connectors\n| Connector | Schema   | Description  | Example |\n| ------| ------| ------|------|\n| **AND** ||Find analytics containing all connected terms. The word AND does not have to be capitalized.|**courtId:\"CORTV4vCEaKrhystBz\" AND courtLocationId:\"COLO6b82CkRqS846hx\"**|\n| **IN()** || Allows you to specify multiple values, for a limit of up to 10.| **courtId IN (\"CORTKQiA4LJuv54tEj\",\"CORTV4vCEaKrhystBz\")**|\n| **courtId** | Multiple Ids Allowed |Find Analytics for a particular Court Object. | **courtId:\"CORTV4vCEaKrhystBz\"** |\n| **courtSystemId** | Multiple Ids Allowed |Find Analytics for a particular Court System Object. | **courtSystemId:\"COSYACHBdMewtaG5DY\"** |\n| **courtTypeId** | Multiple Ids Allowed |Find Analytics for a particular Court Type Object. | **courtTypeId:\"COTPm8jjc2PAydpFhq\"** |\n| **courtLocationId** | Multiple Ids Allowed |Find Analytics for a particular Court Location Object. | **courtLocationId:\"COLO6b82CkRqS846hx\"** |\n| **caseTypeId** | Multiple Ids Allowed |Find Analytics for a particular Case Type Object. | **caseTypeId:\"CTYPATMYyaJekdgj2c\"** |\n| **caseTypeGroupId** | Multiple Ids Allowed |Find Analytics for a particular Case Type Group Object. | **caseTypeGroupId:\"CTYG8gZ6hPRKhhYi4Y\"** |\n| **areaOfLawId** | Multiple Ids Allowed |Find Analytics for a particular Area Of Law Object. | **areaOfLawId:\"AOFL2UxEWfVmTPMyqf\"** |\n| **caseClassId** | Multiple Ids Allowed |Find Analytics for a particular Case Class Category Object. | **caseClassId:\"CSCLNjbKTN7Yfo2wdb\"** |\n| **partyRoleId** | Multiple Ids Allowed |Find Analytics for a particular Party Type Object. | **partyRoleId:\"PTYRiP8nMgPxBsPc5i\"** |\n| **partyRoleGroupId** | Multiple Ids Allowed |Find Analytics for a particular Party Type Group Object. | **partyRoleGroupId:\"PTYGBnjxbx6tKNfVEP\"** |\n| **attorneyPartyRoleId** | Multiple Ids Allowed |Find Analytics for a particular Attorney Party Type Object. | **attorneyPartyRoleId:\"PTYRiP8nMgPxBsPc5i\"** |\n| **attorneyPartyRoleGroupId** | Multiple Ids Allowed |Find Analytics for a particular Attorney Party Type Group Object. | **attorneyPartyRoleGroupId:\"PTYGBnjxbx6tKNfVEP\"** |\n| **normAttorneyId** | Multiple Ids Allowed  |Find Analytics for a particular norm Attorney Object. | **normAttorneyId:\"NATYfwmXwRHS279WPY\"** |\n| **normPartyId** | Multiple Ids Allowed |Find Analytics for a particular Party Object. | **normPartyId:\"NORGrPmQyLdx9NGHcT\"** |\n| **normLawFirmId** | Multiple Ids Allowed  |Find Analytics for a particular Norm LawFirm Object. | **normLawFirmId:\"NORGrPmQyLdx9NGHcT\"** |\n| **normJudgeId** | Multiple Ids Allowed |Find Analytics for a particular Judge Object. | **normJudgeId:\"NJUDT7jCZyFNeLGpRq\"** |\n| **caseFiledDate** | Single Allowed |Find Analytics within a particular date range. | **caseFiledDate:[2018-05-08T00:00:00+00:00TO2019-05-08T00:00:00+00:00]** |\n| **JurisdictionGeo** | Multiple filters Allowed |Find Analytics within a particular Jurisdiction Geo. | **(JurisdictionGeo:(state:\"California\"))** |\n| **confidenceScore** | Single Allowed |Find Analytics for a given ConfidenceScore  | **confidenceScore>=0.5** |\n| **bestMatch** | Single Allowed |True if the normEntity has the highest Confidence Score of all possible normEntities | **bestMatch:true** |\n<br>\n## Example Query\nQuery to get case count grouped by case types  of all cases with case type id CTYPATMYyaJekdgj2c and filed between Jan 1st, 2017 to Nov 30th,2021<br>\nq=caseTypeId:\"CTYPATMYyaJekdgj2c\" AND caseFiledDate:[2017-01-01T00:00:00+00:00TO2021-11-30T00:00:00+00:00]\n",
        "operationId": "getCaseCountAnalyticsByCaseType",
        "parameters": [
          {
            "description": "The URL encoded query you are searching for. The query can be as simple as a keyword, but supports many additional options and filters. All options are documented above.",
            "examples": {
              "HTTP200-modifiedValue": {
                "summary": "Default value",
                "value": ""
              },
              "HTTP200-sampleAnalyticsQuery": {
                "summary": "sampleAnalyticsQuery",
                "value": "caseTypeId:\"CTYPATMYyaJekdgj2c\" AND caseFiledDate:[2017-01-01T00:00:00+00:00TO2021-11-30T00:00:00+00:00]"
              },
              "HTTP400-sample400AnalyticsQuery": {
                "summary": "sample400AnalyticsQuery",
                "value": "caseTypeId:\"CTYPATMYyaJekdgj2c\" AND caseFiledDate:[2018-01-01T00:00:00+00:00TO2021-11-3000:00:00+00:00]"
              },
              "HTTP404-sample404AnalyticsQuery": {
                "summary": "sample404AnalyticsQuery",
                "value": "caseTypeId:\"CTYPATMYy1Jekdgj2c\" AND caseFiledDate:[2018-01-01T00:00:00+00:00TO2021-11-30T00:00:00+00:00]"
              }
            },
            "in": "query",
            "name": "q",
            "schema": {
              "maxLength": 2048,
              "nullable": false,
              "type": "string"
            }
          },
          {
            "$ref": "#/components/parameters/AnalyticsPageParam"
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleAnalyticsQuery": {
                    "value": {
                      "nextPageAPI": null,
                      "object": "CaseCountAnalyticsByCaseTypeResponse",
                      "previousPageAPI": null,
                      "results": [
                        {
                          "caseCount": 2805436,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCUHDVYrNq2oAseY",
                          "caseType": {
                            "areaOfLaw": "Commercial and Trade",
                            "areaOfLawId": "AOFL2UxEWfVmTPMyqf",
                            "caseClass": "Civil",
                            "caseClassId": "CSCLNjbKTN7Yfo2wdb",
                            "caseTypeGroup": "Small Claims",
                            "caseTypeGroupId": "CTYG8gZ6hPRKhhYi4Y",
                            "caseTypeId": "CTYPATMYyaJekdgj2c",
                            "caseTypeTag": null,
                            "createdDate": "2022-03-28T04:58:40+00:00",
                            "name": "Debt Collection",
                            "object": "CaseType",
                            "saliCode": "COTL-TRNS"
                          },
                          "object": "CaseCountAnalyticsByCaseType"
                        }
                      ],
                      "totalCaseCount": 2805436,
                      "totalCaseTypeCount": 1,
                      "totalPages": 1
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/CaseCountAnalyticsByCaseTypeResponse"
                }
              }
            },
            "description": "OK"
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "sample400AnalyticsQuery": {
                    "value": {
                      "code": "UN400",
                      "details": "caseFiledDate is not in a required format",
                      "message": "INVALID_INPUT",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Bad Request"
          },
          "404": {
            "content": {
              "application/json": {
                "examples": {
                  "sample404AnalyticsQuery": {
                    "value": {
                      "code": "UN404",
                      "details": "caseTypeId not found",
                      "message": "RESOURCE_NOT_FOUND",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Not Found"
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "example-1": {
                    "value": {
                      "code": "UN500",
                      "details": "Has encountered a situation which needs to be handled.",
                      "message": "INTERNAL_SERVER_ERROR",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Internal Server Error"
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Case Count Analytics by Case Type.",
        "tags": [
          "Case Analytics API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [],
      "x-api-name": "CaseCountAnalyticsByCaseTypeAPI",
      "x-unicourt-tag": "CaseAnalyticsAPIs"
    },
    "/caseCountAnalyticsByCaseTypeGroup": {
      "get": {
        "description": "Get Analytics by Case Type Group.\n## Terms and Connectors\n| Connector | Schema   | Description  | Example |\n| ------| ------| ------|------|\n| **AND** ||Find analytics containing all connected terms. The word AND does not have to be capitalized.|**courtId:\"CORTV4vCEaKrhystBz\" AND courtLocationId:\"COLO6b82CkRqS846hx\"**|\n| **IN()** || Allows you to specify multiple values, for a limit of up to 10.| **courtId IN (\"CORTKQiA4LJuv54tEj\",\"CORTV4vCEaKrhystBz\")**|\n| **courtId** | Multiple Ids Allowed |Find Analytics for a particular Court Object. | **courtId:\"CORTV4vCEaKrhystBz\"** |\n| **courtSystemId** | Multiple Ids Allowed |Find Analytics for a particular Court System Object. | **courtSystemId:\"COSYACHBdMewtaG5DY\"** |\n| **courtTypeId** | Multiple Ids Allowed |Find Analytics for a particular Court Type Object. | **courtTypeId:\"COTPm8jjc2PAydpFhq\"** |\n| **courtLocationId** | Multiple Ids Allowed |Find Analytics for a particular Court Location Object. | **courtLocationId:\"COLO6b82CkRqS846hx\"** |\n| **caseTypeId** | Multiple Ids Allowed |Find Analytics for a particular Case Type Object. | **caseTypeId:\"CTYPATMYyaJekdgj2c\"** |\n| **caseTypeGroupId** | Multiple Ids Allowed |Find Analytics for a particular Case Type Group Object. | **caseTypeGroupId:\"CTYG8gZ6hPRKhhYi4Y\"** |\n| **areaOfLawId** | Multiple Ids Allowed |Find Analytics for a particular Area Of Law Object. | **areaOfLawId:\"AOFL2UxEWfVmTPMyqf\"** |\n| **caseClassId** | Multiple Ids Allowed |Find Analytics for a particular Case Class Category Object. | **caseClassId:\"CSCLNjbKTN7Yfo2wdb\"** |\n| **partyRoleId** | Multiple Ids Allowed |Find Analytics for a particular Party Type Object. | **partyRoleId:\"PTYRiP8nMgPxBsPc5i\"** |\n| **partyRoleGroupId** | Multiple Ids Allowed |Find Analytics for a particular Party Type Group Object. | **partyRoleGroupId:\"PTYGBnjxbx6tKNfVEP\"** |\n| **attorneyPartyRoleId** | Multiple Ids Allowed |Find Analytics for a particular Attorney Party Type Object. | **attorneyPartyRoleId:\"PTYRiP8nMgPxBsPc5i\"** |\n| **attorneyPartyRoleGroupId** | Multiple Ids Allowed |Find Analytics for a particular Attorney Party Type Group Object. | **attorneyPartyRoleGroupId:\"PTYGBnjxbx6tKNfVEP\"** |\n| **normAttorneyId** | Multiple Ids Allowed  |Find Analytics for a particular norm Attorney Object. | **normAttorneyId:\"NATYfwmXwRHS279WPY\"** |\n| **normPartyId** | Multiple Ids Allowed  |Find Analytics for a particular Party Object. | **normPartyId:\"NORGrPmQyLdx9NGHcT\"** |\n| **normLawFirmId** | Multiple Ids Allowed  |Find Analytics for a particular Norm LawFirm Object. | **normLawFirmId:\"NORGrPmQyLdx9NGHcT\"** |\n| **normJudgeId** | Multiple Ids Allowed  |Find Analytics for a particular Judge Object. | **normJudgeId:\"NJUDT7jCZyFNeLGpRq\"** |\n| **caseFiledDate** | Single Allowed   |Find Analytics within a particular date range. | **caseFiledDate:[2018-05-08T00:00:00+00:00TO2019-05-08T00:00:00+00:00]** |\n| **JurisdictionGeo** | Multiple filters Allowed |Find Analytics within a particular Jurisdiction Geo. | **(JurisdictionGeo:(state:\"California\"))** |\n| **confidenceScore** | Single Allowed |Find Analytics for a given ConfidenceScore  | **confidenceScore>=0.5** |\n| **bestMatch** | Single Allowed |True if the normEntity has the highest Confidence Score of all possible normEntities | **bestMatch:true** |\n<br>\n## Example Query\nQuery to get case count grouped by case type catgeory of all cases with case type id CTYPATMYyaJekdgj2c and filed between Jan 1st, 2017 to Nov 30th,2021<br>\nq=caseTypeId:\"CTYPATMYyaJekdgj2c\" AND caseFiledDate:[2017-01-01T00:00:00+00:00TO2021-11-30T00:00:00+00:00]\n",
        "operationId": "getCaseCountAnalyticsByCaseTypeGroup",
        "parameters": [
          {
            "description": "The URL encoded query you are searching for. The query can be as simple as a keyword, but supports many additional options and filters. All options are documented above.",
            "examples": {
              "HTTP200-modifiedValue": {
                "summary": "Default value",
                "value": ""
              },
              "HTTP200-sampleAnalyticsQuery": {
                "summary": "sampleAnalyticsQuery",
                "value": "caseTypeId:\"CTYPATMYyaJekdgj2c\" AND caseFiledDate:[2017-01-01T00:00:00+00:00TO2021-11-30T00:00:00+00:00]"
              },
              "HTTP400-sample400AnalyticsQuery": {
                "summary": "sample400AnalyticsQuery",
                "value": "caseTypeId:\"CTYPATMYyaJekdgj2c\" AND caseFiledDate:[2018-01-01T00:00:00+00:00TO2021-11-3000:00:00+00:00]"
              },
              "HTTP404-sample404AnalyticsQuery": {
                "summary": "sample404AnalyticsQuery",
                "value": "caseTypeId:\"CTYPATMYy1Jekdgj2c\" AND caseFiledDate:[2018-01-01T00:00:00+00:00TO2021-11-30T00:00:00+00:00]"
              }
            },
            "in": "query",
            "name": "q",
            "schema": {
              "maxLength": 2048,
              "nullable": false,
              "type": "string"
            }
          },
          {
            "$ref": "#/components/parameters/AnalyticsPageParam"
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleAnalyticsQuery": {
                    "value": {
                      "nextPageAPI": null,
                      "object": "CaseCountAnalyticsByCaseTypeGroupResponse",
                      "previousPageAPI": null,
                      "results": [
                        {
                          "caseCount": 2805436,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCWqyMLsBr8FBpyU",
                          "caseTypeGroup": {
                            "areaOfLaw": "Commercial and Trade",
                            "areaOfLawId": "AOFL2UxEWfVmTPMyqf",
                            "caseClass": "Civil",
                            "caseClassId": "CSCLNjbKTN7Yfo2wdb",
                            "caseTypeGroupId": "CTYG8gZ6hPRKhhYi4Y",
                            "createdDate": "2022-03-28T04:58:40+00:00",
                            "name": "Small Claims",
                            "object": "CaseTypeGroup"
                          },
                          "object": "CaseCountAnalyticsByCaseTypeGroup"
                        }
                      ],
                      "totalCaseCount": 2805436,
                      "totalCaseTypeGroupCount": 1,
                      "totalPages": 1
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/CaseCountAnalyticsByCaseTypeGroupResponse"
                }
              }
            },
            "description": "OK"
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "sample400AnalyticsQuery": {
                    "value": {
                      "code": "UN400",
                      "details": "caseFiledDate is not in a required format",
                      "message": "INVALID_INPUT",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Bad Request"
          },
          "404": {
            "content": {
              "application/json": {
                "examples": {
                  "sample404AnalyticsQuery": {
                    "value": {
                      "code": "UN404",
                      "details": "caseTypeId not found",
                      "message": "RESOURCE_NOT_FOUND",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Not Found"
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "example-1": {
                    "value": {
                      "code": "UN500",
                      "details": "Has encountered a situation which needs to be handled.",
                      "message": "INTERNAL_SERVER_ERROR",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Internal Server Error"
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Case Count Analytics by Case Type Group.",
        "tags": [
          "Case Analytics API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [],
      "x-api-name": "CaseCountAnalyticsByCaseTypeGroupAPI",
      "x-unicourt-tag": "CaseAnalyticsAPIs"
    },
    "/caseCountAnalyticsByCourt": {
      "get": {
        "description": "Get Case Count Analytics grouped by Court.\n## Terms and Connectors\n| Connector | Schema   | Description  | Example |\n| ------| ------| ------|------|\n| **AND** ||Find analytics containing all connected terms. The word AND does not have to be capitalized.|**courtId:\"CORTV4vCEaKrhystBz\" AND courtLocationId:\"COLO6b82CkRqS846hx\"**|\n| **IN()** || Allows you to specify multiple values, for a limit of up to 10.| **courtId IN (\"CORTKQiA4LJuv54tEj\",\"CORTV4vCEaKrhystBz\")**|\n| **courtId** | Multiple Ids Allowed |Find Analytics for a particular Court Object. | **courtId:\"CORTV4vCEaKrhystBz\"** |\n| **courtSystemId** | Multiple Ids Allowed |Find Analytics for a particular Court System Object. | **courtSystemId:\"COSYACHBdMewtaG5DY\"** |\n| **courtTypeId** | Multiple Ids Allowed |Find Analytics for a particular Court Type Object. | **courtTypeId:\"COTPm8jjc2PAydpFhq\"** |\n| **courtLocationId** | Multiple Ids Allowed |Find Analytics for a particular Court Location Object. | **courtLocationId:\"COLO6b82CkRqS846hx\"** |\n| **caseTypeId** | Multiple Ids Allowed |Find Analytics for a particular Case Type Object. | **caseTypeId:\"CTYPATMYyaJekdgj2c\"** |\n| **caseTypeGroupId** | Multiple Ids Allowed |Find Analytics for a particular Case Type Group Object. | **caseTypeGroupId:\"CTYG8gZ6hPRKhhYi4Y\"** |\n| **areaOfLawId** | Multiple Ids Allowed |Find Analytics for a particular Area Of Law Object. | **areaOfLawId:\"AOFL2UxEWfVmTPMyqf\"** |\n| **caseClassId** | Multiple Ids Allowed |Find Analytics for a particular Case Class Category Object. | **caseClassId:\"CSCLNjbKTN7Yfo2wdb\"** |\n| **partyRoleId** | Multiple Ids Allowed |Find Analytics for a particular Party Type Object. | **partyRoleId:\"PTYRiP8nMgPxBsPc5i\"** |\n| **partyRoleGroupId** | Multiple Ids Allowed |Find Analytics for a particular Party Type Group Object. | **partyRoleGroupId:\"PTYGBnjxbx6tKNfVEP\"** |\n| **attorneyPartyRoleId** | Multiple Ids Allowed |Find Analytics for a particular Attorney Party Type Object. | **attorneyPartyRoleId:\"PTYRiP8nMgPxBsPc5i\"** |\n| **attorneyPartyRoleGroupId** | Multiple Ids Allowed |Find Analytics for a particular Attorney Party Type Group Object. | **attorneyPartyRoleGroupId:\"PTYGBnjxbx6tKNfVEP\"** |\n| **normAttorneyId** | Multiple Ids Allowed  |Find Analytics for a particular norm Attorney Object. | **normAttorneyId:\"NATYfwmXwRHS279WPY\"** |\n| **normPartyId** | Multiple Ids Allowed |Find Analytics for a particular Party Object. | **normPartyId:\"NORGrPmQyLdx9NGHcT\"** |\n| **normLawFirmId** | Multiple Ids Allowed  |Find Analytics for a particular Norm LawFirm Object. | **normLawFirmId:\"NORGrPmQyLdx9NGHcT\"** |\n| **normJudgeId** | Multiple Ids Allowed  |Find Analytics for a particular Judge Object. | **normJudgeId:\"NJUDT7jCZyFNeLGpRq\"** |\n| **caseFiledDate** | Single Allowed  |Find Analytics within a particular date range. | **caseFiledDate:[2018-05-08T00:00:00+00:00TO2019-05-08T00:00:00+00:00]** |\n| **JurisdictionGeo** | Multiple filters Allowed |Find Analytics within a particular Jurisdiction Geo. | **(JurisdictionGeo:(state:\"California\"))** |\n| **confidenceScore** | Single Allowed |Find Analytics for a given ConfidenceScore  | **confidenceScore>=0.5** |\n| **bestMatch** | Single Allowed |True if the normEntity has the highest Confidence Score of all possible normEntities | **bestMatch:true** |\n<br>\n## Example Query\nQuery to get case count grouped by Court of all cases with case type id CTYPATMYyaJekdgj2c and filed between Jan 1st, 2017 to Nov 30th,2021<br>\nq=caseTypeId:\"CTYPATMYyaJekdgj2c\" AND caseFiledDate:[2017-01-01T00:00:00+00:00TO2021-11-30T00:00:00+00:00]\n",
        "operationId": "getCaseCountAnalyticsByCourt",
        "parameters": [
          {
            "description": "The URL encoded query you are searching for. The query can be as simple as a keyword, but supports many additional options and filters. All options are documented above.",
            "examples": {
              "HTTP200-modifiedValue": {
                "summary": "Default value",
                "value": ""
              },
              "HTTP200-sampleAnalyticsQuery": {
                "summary": "sampleAnalyticsQuery",
                "value": "caseTypeId:\"CTYPATMYyaJekdgj2c\" AND caseFiledDate:[2017-01-01T00:00:00+00:00TO2021-11-30T00:00:00+00:00]"
              },
              "HTTP400-sample400AnalyticsQuery": {
                "summary": "sample400AnalyticsQuery",
                "value": "caseTypeId:\"CTYPATMYyaJekdgj2c\" AND caseFiledDate:[2018-01-01T00:00:00+00:00TO2021-11-3000:00:00+00:00]"
              },
              "HTTP404-sample404AnalyticsQuery": {
                "summary": "sample404AnalyticsQuery",
                "value": "caseTypeId:\"CTYPATMYy1Jekdgj2c\" AND caseFiledDate:[2018-01-01T00:00:00+00:00TO2021-11-30T00:00:00+00:00]"
              }
            },
            "in": "query",
            "name": "q",
            "schema": {
              "maxLength": 2048,
              "nullable": false,
              "type": "string"
            }
          },
          {
            "$ref": "#/components/parameters/AnalyticsPageParam"
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleAnalyticsQuery": {
                    "value": {
                      "nextPageAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByCourt?pageNumber=2&q=caseTypeId%3A%22CTYPATMYyaJekdgj2c%22+AND+caseFiledDate%3A%5B2017-01-01T00%3A00%3A00%2B00%3A00TO2021-11-30T00%3A00%3A00%2B00%3A00%5D",
                      "object": "CaseCountAnalyticsByCourtResponse",
                      "previousPageAPI": null,
                      "results": [
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 410201,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCB56UZyRUJqT42S",
                          "court": {
                            "additionalLevels": null,
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTV4vCEaKrhystBz",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTV4vCEaKrhystBz%22%29",
                            "courtSystemId": "COSYACHBdMewtaG5DY",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:50:06+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/jurisdictionGeo",
                            "name": "Los Angeles County Superior Court",
                            "nameAka": "Los Angeles County Superior Court of California",
                            "object": "Court",
                            "system": "California Superior Courts",
                            "type": "State"
                          },
                          "object": "CaseCountAnalyticsByCourt"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 328017,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCHu9oGsf6UFhMGS",
                          "court": {
                            "additionalLevels": null,
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTnZMp8ZmqoeXvvh/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTnZMp8ZmqoeXvvh",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTnZMp8ZmqoeXvvh/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTnZMp8ZmqoeXvvh%22%29",
                            "courtSystemId": "COSY4vuCtGQeAmdDdN",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:50:26+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTnZMp8ZmqoeXvvh/jurisdictionGeo",
                            "name": "Dade County Court",
                            "nameAka": "Dade County Court of Florida",
                            "object": "Court",
                            "system": "Florida County Courts",
                            "type": "State"
                          },
                          "object": "CaseCountAnalyticsByCourt"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 108916,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC8Uh67pY7hePkA5",
                          "court": {
                            "additionalLevels": null,
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTWMygTBww9BG5bU/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTWMygTBww9BG5bU",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTWMygTBww9BG5bU/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTWMygTBww9BG5bU%22%29",
                            "courtSystemId": "COSYACHBdMewtaG5DY",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:50:10+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTWMygTBww9BG5bU/jurisdictionGeo",
                            "name": "Orange County Superior Court",
                            "nameAka": "Orange County Superior Court of California",
                            "object": "Court",
                            "system": "California Superior Courts",
                            "type": "State"
                          },
                          "object": "CaseCountAnalyticsByCourt"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 99951,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCcP3eSNhFjMLpNz",
                          "court": {
                            "additionalLevels": null,
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORT3tv4GNBcsFGmsi/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORT3tv4GNBcsFGmsi",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORT3tv4GNBcsFGmsi/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORT3tv4GNBcsFGmsi%22%29",
                            "courtSystemId": "COSYACHBdMewtaG5DY",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:50:13+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORT3tv4GNBcsFGmsi/jurisdictionGeo",
                            "name": "San Diego County Superior Court",
                            "nameAka": "San Diego County Superior Court of California",
                            "object": "Court",
                            "system": "California Superior Courts",
                            "type": "State"
                          },
                          "object": "CaseCountAnalyticsByCourt"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 86319,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC7BSPo58KDSV9dQ",
                          "court": {
                            "additionalLevels": null,
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTeEBGTHQvamZaxo/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTeEBGTHQvamZaxo",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTeEBGTHQvamZaxo/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTeEBGTHQvamZaxo%22%29",
                            "courtSystemId": "COSYACHBdMewtaG5DY",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:50:11+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTeEBGTHQvamZaxo/jurisdictionGeo",
                            "name": "Riverside County Superior Court",
                            "nameAka": "Riverside County Superior Court of California",
                            "object": "Court",
                            "system": "California Superior Courts",
                            "type": "State"
                          },
                          "object": "CaseCountAnalyticsByCourt"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 66529,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCX9h2MrXXRtLsb8",
                          "court": {
                            "additionalLevels": null,
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTNNv9SxXgQg6Ynv/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTNNv9SxXgQg6Ynv",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTNNv9SxXgQg6Ynv/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTNNv9SxXgQg6Ynv%22%29",
                            "courtSystemId": "COSYACHBdMewtaG5DY",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:50:12+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTNNv9SxXgQg6Ynv/jurisdictionGeo",
                            "name": "San Bernardino County Superior Court",
                            "nameAka": "San Bernardino County Superior Court of California",
                            "object": "Court",
                            "system": "California Superior Courts",
                            "type": "State"
                          },
                          "object": "CaseCountAnalyticsByCourt"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 60461,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCEiLo3WWDALYsvW",
                          "court": {
                            "additionalLevels": null,
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTkEg5dXwj3tkV75/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTkEg5dXwj3tkV75",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTkEg5dXwj3tkV75/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTkEg5dXwj3tkV75%22%29",
                            "courtSystemId": "COSY4vuCtGQeAmdDdN",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:50:25+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTkEg5dXwj3tkV75/jurisdictionGeo",
                            "name": "Broward County Court",
                            "nameAka": "Broward County Court of Florida",
                            "object": "Court",
                            "system": "Florida County Courts",
                            "type": "State"
                          },
                          "object": "CaseCountAnalyticsByCourt"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 55990,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCAdYaGY9JSzSece",
                          "court": {
                            "additionalLevels": null,
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORT9m8tuUi4TrtmaR/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORT9m8tuUi4TrtmaR",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORT9m8tuUi4TrtmaR/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORT9m8tuUi4TrtmaR%22%29",
                            "courtSystemId": "COSY4BQSK7HBZc2ymW",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:51:59+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORT9m8tuUi4TrtmaR/jurisdictionGeo",
                            "name": "Harris County Court",
                            "nameAka": "Harris County Court of Texas",
                            "object": "Court",
                            "system": "Texas County Courts",
                            "type": "State"
                          },
                          "object": "CaseCountAnalyticsByCourt"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 54803,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCAjcCZYEePJVdi2",
                          "court": {
                            "additionalLevels": null,
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORT5gbsA7gvQ5JGpt/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORT5gbsA7gvQ5JGpt",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORT5gbsA7gvQ5JGpt/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORT5gbsA7gvQ5JGpt%22%29",
                            "courtSystemId": "COSYACHBdMewtaG5DY",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:50:12+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORT5gbsA7gvQ5JGpt/jurisdictionGeo",
                            "name": "Sacramento County Superior Court",
                            "nameAka": "Sacramento County Superior Court of California",
                            "object": "Court",
                            "system": "California Superior Courts",
                            "type": "State"
                          },
                          "object": "CaseCountAnalyticsByCourt"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 50287,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCK5JFytGwdAos2M",
                          "court": {
                            "additionalLevels": {
                              "level1": "Precinct 5",
                              "level2": "Place 1",
                              "level3": null,
                              "level4": null,
                              "object": "AdditionalLevels"
                            },
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTmKXk5EdnhAppWR/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTmKXk5EdnhAppWR",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTmKXk5EdnhAppWR/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTmKXk5EdnhAppWR%22%29",
                            "courtSystemId": "COSY53DJ9jCL9U4iUt",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:52:05+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTmKXk5EdnhAppWR/jurisdictionGeo",
                            "name": "Harris County Justice of the Peace Court",
                            "nameAka": "Harris County Justice of the Peace Court of Texas",
                            "object": "Court",
                            "system": "Texas Justice of the Peace Courts",
                            "type": "State"
                          },
                          "object": "CaseCountAnalyticsByCourt"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 36721,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC4oC7fNAPFA8rvt",
                          "court": {
                            "additionalLevels": null,
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTcTkxTTLRwLgsEP/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTcTkxTTLRwLgsEP",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTcTkxTTLRwLgsEP/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTcTkxTTLRwLgsEP%22%29",
                            "courtSystemId": "COSYACHBdMewtaG5DY",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:50:05+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTcTkxTTLRwLgsEP/jurisdictionGeo",
                            "name": "Fresno County Superior Court",
                            "nameAka": "Fresno County Superior Court of California",
                            "object": "Court",
                            "system": "California Superior Courts",
                            "type": "State"
                          },
                          "object": "CaseCountAnalyticsByCourt"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 34262,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCRWzHoBzy2XwumJ",
                          "court": {
                            "additionalLevels": null,
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTKQiA4LJuv54tEj/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTKQiA4LJuv54tEj",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTKQiA4LJuv54tEj/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTKQiA4LJuv54tEj%22%29",
                            "courtSystemId": "COSYACHBdMewtaG5DY",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:50:06+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTKQiA4LJuv54tEj/jurisdictionGeo",
                            "name": "Kern County Superior Court",
                            "nameAka": "Kern County Superior Court of California",
                            "object": "Court",
                            "system": "California Superior Courts",
                            "type": "State"
                          },
                          "object": "CaseCountAnalyticsByCourt"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 32106,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCanHKzxkVJetpCN",
                          "court": {
                            "additionalLevels": {
                              "level1": "Precinct 4",
                              "level2": "Place 1",
                              "level3": null,
                              "level4": null,
                              "object": "AdditionalLevels"
                            },
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTfcU6QvWG3SbA5H/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTfcU6QvWG3SbA5H",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTfcU6QvWG3SbA5H/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTfcU6QvWG3SbA5H%22%29",
                            "courtSystemId": "COSY53DJ9jCL9U4iUt",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:52:05+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTfcU6QvWG3SbA5H/jurisdictionGeo",
                            "name": "Harris County Justice of the Peace Court",
                            "nameAka": "Harris County Justice of the Peace Court of Texas",
                            "object": "Court",
                            "system": "Texas Justice of the Peace Courts",
                            "type": "State"
                          },
                          "object": "CaseCountAnalyticsByCourt"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 31105,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCLXmknR5knkCusU",
                          "court": {
                            "additionalLevels": null,
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTffVfGo5UwJXRrV/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTffVfGo5UwJXRrV",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTffVfGo5UwJXRrV/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTffVfGo5UwJXRrV%22%29",
                            "courtSystemId": "COSY4vuCtGQeAmdDdN",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:50:30+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTffVfGo5UwJXRrV/jurisdictionGeo",
                            "name": "Hillsborough County Court",
                            "nameAka": "Hillsborough County Court of Florida",
                            "object": "Court",
                            "system": "Florida County Courts",
                            "type": "State"
                          },
                          "object": "CaseCountAnalyticsByCourt"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 30373,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCFiRfAsKp5rEnhT",
                          "court": {
                            "additionalLevels": null,
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTg7DXfYQhpg637L/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTg7DXfYQhpg637L",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTg7DXfYQhpg637L/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTg7DXfYQhpg637L%22%29",
                            "courtSystemId": "COSYACHBdMewtaG5DY",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:50:14+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTg7DXfYQhpg637L/jurisdictionGeo",
                            "name": "San Joaquin County Superior Court",
                            "nameAka": "San Joaquin County Superior Court of California",
                            "object": "Court",
                            "system": "California Superior Courts",
                            "type": "State"
                          },
                          "object": "CaseCountAnalyticsByCourt"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 29117,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCbwkb9hoAGJSLjr",
                          "court": {
                            "additionalLevels": null,
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTDWtdTX3PpY7esW/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTDWtdTX3PpY7esW",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTDWtdTX3PpY7esW/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTDWtdTX3PpY7esW%22%29",
                            "courtSystemId": "COSYXjbiiAha8b6qW9",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:52:00+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTDWtdTX3PpY7esW/jurisdictionGeo",
                            "name": "Bexar County District Court",
                            "nameAka": "Bexar County District Court of Texas",
                            "object": "Court",
                            "system": "Texas District Courts",
                            "type": "State"
                          },
                          "object": "CaseCountAnalyticsByCourt"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 28565,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCGDCkBPSHCxTdec",
                          "court": {
                            "additionalLevels": null,
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTk8eZzjJ35gCpLU/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTk8eZzjJ35gCpLU",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTk8eZzjJ35gCpLU/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTk8eZzjJ35gCpLU%22%29",
                            "courtSystemId": "COSY53DJ9jCL9U4iUt",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:52:01+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTk8eZzjJ35gCpLU/jurisdictionGeo",
                            "name": "Collin County Justice of the Peace Court",
                            "nameAka": "Collin County Justice of the Peace Court of Texas",
                            "object": "Court",
                            "system": "Texas Justice of the Peace Courts",
                            "type": "State"
                          },
                          "object": "CaseCountAnalyticsByCourt"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 26924,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCYSpwJwRLaK7deD",
                          "court": {
                            "additionalLevels": null,
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTVpmBYP8vggX4Qg/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTVpmBYP8vggX4Qg",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTVpmBYP8vggX4Qg/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTVpmBYP8vggX4Qg%22%29",
                            "courtSystemId": "COSYGzMRVkZDPLotfw",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:50:50+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTVpmBYP8vggX4Qg/jurisdictionGeo",
                            "name": "Westchester County Supreme Court",
                            "nameAka": "Westchester County Supreme Court of New York",
                            "object": "Court",
                            "system": "New York Supreme Courts",
                            "type": "State"
                          },
                          "object": "CaseCountAnalyticsByCourt"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 26895,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCg4jKp7Syw8rU5b",
                          "court": {
                            "additionalLevels": null,
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTLmr3s9mbzktTZ7/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTLmr3s9mbzktTZ7",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTLmr3s9mbzktTZ7/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTLmr3s9mbzktTZ7%22%29",
                            "courtSystemId": "COSYACHBdMewtaG5DY",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:50:15+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTLmr3s9mbzktTZ7/jurisdictionGeo",
                            "name": "Ventura County Superior Court",
                            "nameAka": "Ventura County Superior Court of California",
                            "object": "Court",
                            "system": "California Superior Courts",
                            "type": "State"
                          },
                          "object": "CaseCountAnalyticsByCourt"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 26859,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCWSwbZ78bTYWwrW",
                          "court": {
                            "additionalLevels": null,
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORT6LaaGbX2qPRryA/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORT6LaaGbX2qPRryA",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORT6LaaGbX2qPRryA/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORT6LaaGbX2qPRryA%22%29",
                            "courtSystemId": "COSYXjbiiAha8b6qW9",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:52:00+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORT6LaaGbX2qPRryA/jurisdictionGeo",
                            "name": "Harris County District Court",
                            "nameAka": "Harris County District Court of Texas",
                            "object": "Court",
                            "system": "Texas District Courts",
                            "type": "State"
                          },
                          "object": "CaseCountAnalyticsByCourt"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 26592,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCDbxa7qCTMfJzbC",
                          "court": {
                            "additionalLevels": {
                              "level1": "Precinct 4",
                              "level2": "Place 2",
                              "level3": null,
                              "level4": null,
                              "object": "AdditionalLevels"
                            },
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTjdRJQd8F7TD2di/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTjdRJQd8F7TD2di",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTjdRJQd8F7TD2di/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTjdRJQd8F7TD2di%22%29",
                            "courtSystemId": "COSY53DJ9jCL9U4iUt",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:52:05+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTjdRJQd8F7TD2di/jurisdictionGeo",
                            "name": "Harris County Justice of the Peace Court",
                            "nameAka": "Harris County Justice of the Peace Court of Texas",
                            "object": "Court",
                            "system": "Texas Justice of the Peace Courts",
                            "type": "State"
                          },
                          "object": "CaseCountAnalyticsByCourt"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 26578,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCRXq7knb6pggRi9",
                          "court": {
                            "additionalLevels": {
                              "level1": "Precinct 1",
                              "level2": "Place 2",
                              "level3": null,
                              "level4": null,
                              "object": "AdditionalLevels"
                            },
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTCsn48ZfAkwkmc5/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTCsn48ZfAkwkmc5",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTCsn48ZfAkwkmc5/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTCsn48ZfAkwkmc5%22%29",
                            "courtSystemId": "COSY53DJ9jCL9U4iUt",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:52:05+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTCsn48ZfAkwkmc5/jurisdictionGeo",
                            "name": "Harris County Justice of the Peace Court",
                            "nameAka": "Harris County Justice of the Peace Court of Texas",
                            "object": "Court",
                            "system": "Texas Justice of the Peace Courts",
                            "type": "State"
                          },
                          "object": "CaseCountAnalyticsByCourt"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 25150,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCS7TxV9uUra54KR",
                          "court": {
                            "additionalLevels": null,
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTYsomR6GiiiPovp/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTYsomR6GiiiPovp",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTYsomR6GiiiPovp/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTYsomR6GiiiPovp%22%29",
                            "courtSystemId": "COSYACHBdMewtaG5DY",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:50:04+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTYsomR6GiiiPovp/jurisdictionGeo",
                            "name": "Alameda County Superior Court",
                            "nameAka": "Alameda County Superior Court of California",
                            "object": "Court",
                            "system": "California Superior Courts",
                            "type": "State"
                          },
                          "object": "CaseCountAnalyticsByCourt"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 21432,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCP8r6Ld4J3dxV4j",
                          "court": {
                            "additionalLevels": null,
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTmDBp2gcTfXFkvK/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTmDBp2gcTfXFkvK",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTmDBp2gcTfXFkvK/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTmDBp2gcTfXFkvK%22%29",
                            "courtSystemId": "COSY4vuCtGQeAmdDdN",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:50:35+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTmDBp2gcTfXFkvK/jurisdictionGeo",
                            "name": "Palm Beach County Court",
                            "nameAka": "Palm Beach County Court of Florida",
                            "object": "Court",
                            "system": "Florida County Courts",
                            "type": "State"
                          },
                          "object": "CaseCountAnalyticsByCourt"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 20288,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCSobAYNCyStRcy7",
                          "court": {
                            "additionalLevels": null,
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTPsq4vPhdH8TdHs/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTPsq4vPhdH8TdHs",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTPsq4vPhdH8TdHs/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTPsq4vPhdH8TdHs%22%29",
                            "courtSystemId": "COSYGzMRVkZDPLotfw",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:50:47+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTPsq4vPhdH8TdHs/jurisdictionGeo",
                            "name": "Erie County Supreme Court",
                            "nameAka": "Erie County Supreme Court of New York",
                            "object": "Court",
                            "system": "New York Supreme Courts",
                            "type": "State"
                          },
                          "object": "CaseCountAnalyticsByCourt"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 20232,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRChz8Hxv8mbpWikt",
                          "court": {
                            "additionalLevels": {
                              "level1": "Precinct 7",
                              "level2": null,
                              "level3": null,
                              "level4": null,
                              "object": "AdditionalLevels"
                            },
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTSZU6FW3DDbikGj/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTSZU6FW3DDbikGj",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTSZU6FW3DDbikGj/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTSZU6FW3DDbikGj%22%29",
                            "courtSystemId": "COSY53DJ9jCL9U4iUt",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:52:07+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTSZU6FW3DDbikGj/jurisdictionGeo",
                            "name": "Tarrant County Justice of the Peace Court",
                            "nameAka": "Tarrant County Justice of the Peace Court of Texas",
                            "object": "Court",
                            "system": "Texas Justice of the Peace Courts",
                            "type": "State"
                          },
                          "object": "CaseCountAnalyticsByCourt"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 19901,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCgq6S9ZdMdZCQNt",
                          "court": {
                            "additionalLevels": {
                              "level1": "Precinct 6",
                              "level2": "Place 1",
                              "level3": null,
                              "level4": null,
                              "object": "AdditionalLevels"
                            },
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTB6SqnU2ya3vxru/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTB6SqnU2ya3vxru",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTB6SqnU2ya3vxru/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTB6SqnU2ya3vxru%22%29",
                            "courtSystemId": "COSY53DJ9jCL9U4iUt",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:52:06+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTB6SqnU2ya3vxru/jurisdictionGeo",
                            "name": "Harris County Justice of the Peace Court",
                            "nameAka": "Harris County Justice of the Peace Court of Texas",
                            "object": "Court",
                            "system": "Texas Justice of the Peace Courts",
                            "type": "State"
                          },
                          "object": "CaseCountAnalyticsByCourt"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 18749,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCZqcgbLhgXdTyQj",
                          "court": {
                            "additionalLevels": null,
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORT3mPQHqz7ZP2kse/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORT3mPQHqz7ZP2kse",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORT3mPQHqz7ZP2kse/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORT3mPQHqz7ZP2kse%22%29",
                            "courtSystemId": "COSYACHBdMewtaG5DY",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:50:13+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORT3mPQHqz7ZP2kse/jurisdictionGeo",
                            "name": "San Francisco County Superior Court",
                            "nameAka": "San Francisco County Superior Court of California",
                            "object": "Court",
                            "system": "California Superior Courts",
                            "type": "State"
                          },
                          "object": "CaseCountAnalyticsByCourt"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 18410,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCSMicYKmF9a8Wrm",
                          "court": {
                            "additionalLevels": null,
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORT2HDQUmhCv5mugX/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORT2HDQUmhCv5mugX",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORT2HDQUmhCv5mugX/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORT2HDQUmhCv5mugX%22%29",
                            "courtSystemId": "COSYACHBdMewtaG5DY",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:50:14+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORT2HDQUmhCv5mugX/jurisdictionGeo",
                            "name": "San Mateo County Superior Court",
                            "nameAka": "San Mateo County Superior Court of California",
                            "object": "Court",
                            "system": "California Superior Courts",
                            "type": "State"
                          },
                          "object": "CaseCountAnalyticsByCourt"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 18373,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCAihj8vUiCbt9Ft",
                          "court": {
                            "additionalLevels": {
                              "level1": "Precinct 3",
                              "level2": "Place 1",
                              "level3": null,
                              "level4": null,
                              "object": "AdditionalLevels"
                            },
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTGEMM69FiKWxJBY/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTGEMM69FiKWxJBY",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTGEMM69FiKWxJBY/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTGEMM69FiKWxJBY%22%29",
                            "courtSystemId": "COSY53DJ9jCL9U4iUt",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:52:05+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTGEMM69FiKWxJBY/jurisdictionGeo",
                            "name": "Harris County Justice of the Peace Court",
                            "nameAka": "Harris County Justice of the Peace Court of Texas",
                            "object": "Court",
                            "system": "Texas Justice of the Peace Courts",
                            "type": "State"
                          },
                          "object": "CaseCountAnalyticsByCourt"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 17212,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCVj3xKME8sGsyqt",
                          "court": {
                            "additionalLevels": null,
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTAieXGKvDrXgPJW/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTAieXGKvDrXgPJW",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTAieXGKvDrXgPJW/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTAieXGKvDrXgPJW%22%29",
                            "courtSystemId": "COSY4vuCtGQeAmdDdN",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:50:35+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTAieXGKvDrXgPJW/jurisdictionGeo",
                            "name": "Pinellas County Court",
                            "nameAka": "Pinellas County Court of Florida",
                            "object": "Court",
                            "system": "Florida County Courts",
                            "type": "State"
                          },
                          "object": "CaseCountAnalyticsByCourt"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 16836,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC2M5nhFiw72abS3",
                          "court": {
                            "additionalLevels": {
                              "level1": "Precinct 1",
                              "level2": "Place 1",
                              "level3": null,
                              "level4": null,
                              "object": "AdditionalLevels"
                            },
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTHdxZnRscqXjgfh/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTHdxZnRscqXjgfh",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTHdxZnRscqXjgfh/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTHdxZnRscqXjgfh%22%29",
                            "courtSystemId": "COSY53DJ9jCL9U4iUt",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:52:05+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTHdxZnRscqXjgfh/jurisdictionGeo",
                            "name": "Harris County Justice of the Peace Court",
                            "nameAka": "Harris County Justice of the Peace Court of Texas",
                            "object": "Court",
                            "system": "Texas Justice of the Peace Courts",
                            "type": "State"
                          },
                          "object": "CaseCountAnalyticsByCourt"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 15814,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCmn89qjojrqiG59",
                          "court": {
                            "additionalLevels": {
                              "level1": "Precinct 1",
                              "level2": null,
                              "level3": null,
                              "level4": null,
                              "object": "AdditionalLevels"
                            },
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTN7X348oUhf6wah/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTN7X348oUhf6wah",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTN7X348oUhf6wah/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTN7X348oUhf6wah%22%29",
                            "courtSystemId": "COSY53DJ9jCL9U4iUt",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:52:06+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTN7X348oUhf6wah/jurisdictionGeo",
                            "name": "Tarrant County Justice of the Peace Court",
                            "nameAka": "Tarrant County Justice of the Peace Court of Texas",
                            "object": "Court",
                            "system": "Texas Justice of the Peace Courts",
                            "type": "State"
                          },
                          "object": "CaseCountAnalyticsByCourt"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 14955,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRChmcU623J6NUxHQ",
                          "court": {
                            "additionalLevels": {
                              "level1": "Precinct 8",
                              "level2": "Place 1",
                              "level3": null,
                              "level4": null,
                              "object": "AdditionalLevels"
                            },
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTJ2wDkCAK7JASSx/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTJ2wDkCAK7JASSx",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTJ2wDkCAK7JASSx/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTJ2wDkCAK7JASSx%22%29",
                            "courtSystemId": "COSY53DJ9jCL9U4iUt",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:52:06+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTJ2wDkCAK7JASSx/jurisdictionGeo",
                            "name": "Harris County Justice of the Peace Court",
                            "nameAka": "Harris County Justice of the Peace Court of Texas",
                            "object": "Court",
                            "system": "Texas Justice of the Peace Courts",
                            "type": "State"
                          },
                          "object": "CaseCountAnalyticsByCourt"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 13193,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC2YMMPYnpgGErLC",
                          "court": {
                            "additionalLevels": {
                              "level1": "Precinct 3",
                              "level2": null,
                              "level3": null,
                              "level4": null,
                              "object": "AdditionalLevels"
                            },
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTGv494ZCVdHkrq6/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTGv494ZCVdHkrq6",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTGv494ZCVdHkrq6/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTGv494ZCVdHkrq6%22%29",
                            "courtSystemId": "COSY53DJ9jCL9U4iUt",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:52:06+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTGv494ZCVdHkrq6/jurisdictionGeo",
                            "name": "Tarrant County Justice of the Peace Court",
                            "nameAka": "Tarrant County Justice of the Peace Court of Texas",
                            "object": "Court",
                            "system": "Texas Justice of the Peace Courts",
                            "type": "State"
                          },
                          "object": "CaseCountAnalyticsByCourt"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 12942,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCThjFi3nVEL7Hra",
                          "court": {
                            "additionalLevels": {
                              "level1": "Precinct 6",
                              "level2": null,
                              "level3": null,
                              "level4": null,
                              "object": "AdditionalLevels"
                            },
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTmUuycCMbjzQg8r/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTmUuycCMbjzQg8r",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTmUuycCMbjzQg8r/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTmUuycCMbjzQg8r%22%29",
                            "courtSystemId": "COSY53DJ9jCL9U4iUt",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:52:07+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTmUuycCMbjzQg8r/jurisdictionGeo",
                            "name": "Tarrant County Justice of the Peace Court",
                            "nameAka": "Tarrant County Justice of the Peace Court of Texas",
                            "object": "Court",
                            "system": "Texas Justice of the Peace Courts",
                            "type": "State"
                          },
                          "object": "CaseCountAnalyticsByCourt"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 12383,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCJqfazLqndTmUMb",
                          "court": {
                            "additionalLevels": {
                              "level1": "Precinct 2",
                              "level2": "Place 2",
                              "level3": null,
                              "level4": null,
                              "object": "AdditionalLevels"
                            },
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTbyvUWX3A64CuBz/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTbyvUWX3A64CuBz",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTbyvUWX3A64CuBz/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTbyvUWX3A64CuBz%22%29",
                            "courtSystemId": "COSY53DJ9jCL9U4iUt",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:52:05+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTbyvUWX3A64CuBz/jurisdictionGeo",
                            "name": "Harris County Justice of the Peace Court",
                            "nameAka": "Harris County Justice of the Peace Court of Texas",
                            "object": "Court",
                            "system": "Texas Justice of the Peace Courts",
                            "type": "State"
                          },
                          "object": "CaseCountAnalyticsByCourt"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 12318,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCMSq5Lo2zafLpE8",
                          "court": {
                            "additionalLevels": {
                              "level1": "Precinct 4",
                              "level2": null,
                              "level3": null,
                              "level4": null,
                              "object": "AdditionalLevels"
                            },
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORT4Kny825gknNP35/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORT4Kny825gknNP35",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORT4Kny825gknNP35/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORT4Kny825gknNP35%22%29",
                            "courtSystemId": "COSY53DJ9jCL9U4iUt",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:52:06+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORT4Kny825gknNP35/jurisdictionGeo",
                            "name": "Tarrant County Justice of the Peace Court",
                            "nameAka": "Tarrant County Justice of the Peace Court of Texas",
                            "object": "Court",
                            "system": "Texas Justice of the Peace Courts",
                            "type": "State"
                          },
                          "object": "CaseCountAnalyticsByCourt"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 12266,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCFgoNaNc3ZZMxcH",
                          "court": {
                            "additionalLevels": null,
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTdrbCQPBVoLH37r/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTdrbCQPBVoLH37r",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTdrbCQPBVoLH37r/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTdrbCQPBVoLH37r%22%29",
                            "courtSystemId": "COSYGzMRVkZDPLotfw",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:50:49+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTdrbCQPBVoLH37r/jurisdictionGeo",
                            "name": "Rockland County Supreme Court",
                            "nameAka": "Rockland County Supreme Court of New York",
                            "object": "Court",
                            "system": "New York Supreme Courts",
                            "type": "State"
                          },
                          "object": "CaseCountAnalyticsByCourt"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 12131,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC9AzPRxEToKbseH",
                          "court": {
                            "additionalLevels": null,
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORT5dsQDAuw9ctWLp/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORT5dsQDAuw9ctWLp",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORT5dsQDAuw9ctWLp/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORT5dsQDAuw9ctWLp%22%29",
                            "courtSystemId": "COSYGzMRVkZDPLotfw",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:50:48+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORT5dsQDAuw9ctWLp/jurisdictionGeo",
                            "name": "Onondaga County Supreme Court",
                            "nameAka": "Onondaga County Supreme Court of New York",
                            "object": "Court",
                            "system": "New York Supreme Courts",
                            "type": "State"
                          },
                          "object": "CaseCountAnalyticsByCourt"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 12049,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCcnWF8LCHceuU97",
                          "court": {
                            "additionalLevels": null,
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORT7ffyBSuDi5Zjua/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORT7ffyBSuDi5Zjua",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORT7ffyBSuDi5Zjua/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORT7ffyBSuDi5Zjua%22%29",
                            "courtSystemId": "COSYACHBdMewtaG5DY",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:50:05+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORT7ffyBSuDi5Zjua/jurisdictionGeo",
                            "name": "Contra Costa County Superior Court",
                            "nameAka": "Contra Costa County Court of California",
                            "object": "Court",
                            "system": "California Superior Courts",
                            "type": "State"
                          },
                          "object": "CaseCountAnalyticsByCourt"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 11550,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCasLZ6o3tPopEmR",
                          "court": {
                            "additionalLevels": {
                              "level1": "Precinct 2",
                              "level2": null,
                              "level3": null,
                              "level4": null,
                              "object": "AdditionalLevels"
                            },
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTFKaRdGKGqba2AN/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTFKaRdGKGqba2AN",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTFKaRdGKGqba2AN/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTFKaRdGKGqba2AN%22%29",
                            "courtSystemId": "COSY53DJ9jCL9U4iUt",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:52:06+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTFKaRdGKGqba2AN/jurisdictionGeo",
                            "name": "Tarrant County Justice of the Peace Court",
                            "nameAka": "Tarrant County Justice of the Peace Court of Texas",
                            "object": "Court",
                            "system": "Texas Justice of the Peace Courts",
                            "type": "State"
                          },
                          "object": "CaseCountAnalyticsByCourt"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 11085,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCguNPpMUyUcfsMf",
                          "court": {
                            "additionalLevels": null,
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORT7Ms8EmHiSALLSW/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORT7Ms8EmHiSALLSW",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORT7Ms8EmHiSALLSW/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORT7Ms8EmHiSALLSW%22%29",
                            "courtSystemId": "COSYGzMRVkZDPLotfw",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:50:48+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORT7Ms8EmHiSALLSW/jurisdictionGeo",
                            "name": "Orange County Supreme Court",
                            "nameAka": "Orange County Supreme Court of New York",
                            "object": "Court",
                            "system": "New York Supreme Courts",
                            "type": "State"
                          },
                          "object": "CaseCountAnalyticsByCourt"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 9935,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRChva3erePTeo6kE",
                          "court": {
                            "additionalLevels": {
                              "level1": "Precinct 4",
                              "level2": null,
                              "level3": null,
                              "level4": null,
                              "object": "AdditionalLevels"
                            },
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTSdV2vCxUpnwG5m/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTSdV2vCxUpnwG5m",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTSdV2vCxUpnwG5m/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTSdV2vCxUpnwG5m%22%29",
                            "courtSystemId": "COSY53DJ9jCL9U4iUt",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:52:04+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTSdV2vCxUpnwG5m/jurisdictionGeo",
                            "name": "El Paso County Justice of the Peace Court",
                            "nameAka": "El Paso County Justice of the Peace Court of Texas",
                            "object": "Court",
                            "system": "Texas Justice of the Peace Courts",
                            "type": "State"
                          },
                          "object": "CaseCountAnalyticsByCourt"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 9319,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCAckZPhXQe8kWMB",
                          "court": {
                            "additionalLevels": {
                              "level1": "Precinct 2",
                              "level2": null,
                              "level3": null,
                              "level4": null,
                              "object": "AdditionalLevels"
                            },
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTgrvCyVcfQvx7fZ/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTgrvCyVcfQvx7fZ",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTgrvCyVcfQvx7fZ/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTgrvCyVcfQvx7fZ%22%29",
                            "courtSystemId": "COSY53DJ9jCL9U4iUt",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:52:04+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTgrvCyVcfQvx7fZ/jurisdictionGeo",
                            "name": "Fort Bend County Justice of the Peace Court",
                            "nameAka": "Fort Bend Justice of the Peace Court of Texas",
                            "object": "Court",
                            "system": "Texas Justice of the Peace Courts",
                            "type": "State"
                          },
                          "object": "CaseCountAnalyticsByCourt"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 9136,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCSrTGU82UDKv2qX",
                          "court": {
                            "additionalLevels": {
                              "level1": "Precinct 2",
                              "level2": "Place 1",
                              "level3": null,
                              "level4": null,
                              "object": "AdditionalLevels"
                            },
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTfhijeU54GTnn7w/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTfhijeU54GTnn7w",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTfhijeU54GTnn7w/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTfhijeU54GTnn7w%22%29",
                            "courtSystemId": "COSY53DJ9jCL9U4iUt",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:52:05+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTfhijeU54GTnn7w/jurisdictionGeo",
                            "name": "Harris County Justice of the Peace Court",
                            "nameAka": "Harris County Justice of the Peace Court of Texas",
                            "object": "Court",
                            "system": "Texas Justice of the Peace Courts",
                            "type": "State"
                          },
                          "object": "CaseCountAnalyticsByCourt"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 8864,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCJwtjNoZ4eR242v",
                          "court": {
                            "additionalLevels": null,
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTkgcbEh9erq3Hvs/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTkgcbEh9erq3Hvs",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTkgcbEh9erq3Hvs/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTkgcbEh9erq3Hvs%22%29",
                            "courtSystemId": "COSY4BQSK7HBZc2ymW",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:51:59+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTkgcbEh9erq3Hvs/jurisdictionGeo",
                            "name": "Dallas County Court",
                            "nameAka": "Dallas County Court of Texas",
                            "object": "Court",
                            "system": "Texas County Courts",
                            "type": "State"
                          },
                          "object": "CaseCountAnalyticsByCourt"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 8576,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCJjhe25x6Ab7GZp",
                          "court": {
                            "additionalLevels": null,
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTFQmuKqnmTgaked/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTFQmuKqnmTgaked",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTFQmuKqnmTgaked/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTFQmuKqnmTgaked%22%29",
                            "courtSystemId": "COSY4BQSK7HBZc2ymW",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:51:58+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTFQmuKqnmTgaked/jurisdictionGeo",
                            "name": "Collin County Court",
                            "nameAka": "Collin County Court of Texas",
                            "object": "Court",
                            "system": "Texas County Courts",
                            "type": "State"
                          },
                          "object": "CaseCountAnalyticsByCourt"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 8042,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC49VRWJWTNqibVx",
                          "court": {
                            "additionalLevels": null,
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTBiyKKUFyvjPBre/appealCourts",
                            "container": "6",
                            "containerType": "Circuit",
                            "courtId": "CORTBiyKKUFyvjPBre",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTBiyKKUFyvjPBre/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTBiyKKUFyvjPBre%22%29",
                            "courtSystemId": "COSYJsiQhCtkP6fm8m",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:50:17+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTBiyKKUFyvjPBre/jurisdictionGeo",
                            "name": "Sixth Judicial Circuit",
                            "nameAka": "Sixth Judicial Circuit of Florida",
                            "object": "Court",
                            "system": "Florida Circuit Courts",
                            "type": "State"
                          },
                          "object": "CaseCountAnalyticsByCourt"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 7885,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCcWDWgt8dPRncjp",
                          "court": {
                            "additionalLevels": null,
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTDd3aEWydCc2GFt/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTDd3aEWydCc2GFt",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTDd3aEWydCc2GFt/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTDd3aEWydCc2GFt%22%29",
                            "courtSystemId": "COSYGzMRVkZDPLotfw",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:50:47+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTDd3aEWydCc2GFt/jurisdictionGeo",
                            "name": "Dutchess County Supreme Court",
                            "nameAka": "Dutchess County Supreme Court of New York",
                            "object": "Court",
                            "system": "New York Supreme Courts",
                            "type": "State"
                          },
                          "object": "CaseCountAnalyticsByCourt"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 7631,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC7qaAsQSygPjXtq",
                          "court": {
                            "additionalLevels": {
                              "level1": "Precinct 2",
                              "level2": null,
                              "level3": null,
                              "level4": null,
                              "object": "AdditionalLevels"
                            },
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTj49DrWbB5e6yps/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTj49DrWbB5e6yps",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTj49DrWbB5e6yps/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTj49DrWbB5e6yps%22%29",
                            "courtSystemId": "COSY53DJ9jCL9U4iUt",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:52:03+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTj49DrWbB5e6yps/jurisdictionGeo",
                            "name": "El Paso County Justice of the Peace Court",
                            "nameAka": "El Paso County Justice of the Peace Court of Texas",
                            "object": "Court",
                            "system": "Texas Justice of the Peace Courts",
                            "type": "State"
                          },
                          "object": "CaseCountAnalyticsByCourt"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 7605,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCLEPhc5HEfXpsvF",
                          "court": {
                            "additionalLevels": null,
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTiFhqjnvRh9P4vg/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTiFhqjnvRh9P4vg",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTiFhqjnvRh9P4vg/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTiFhqjnvRh9P4vg%22%29",
                            "courtSystemId": "COSY4vuCtGQeAmdDdN",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:50:28+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTiFhqjnvRh9P4vg/jurisdictionGeo",
                            "name": "Duval County Court",
                            "nameAka": "Duval County Court of Florida",
                            "object": "Court",
                            "system": "Florida County Courts",
                            "type": "State"
                          },
                          "object": "CaseCountAnalyticsByCourt"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 7475,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCQfrZsJqhxRHJYr",
                          "court": {
                            "additionalLevels": {
                              "level1": "Precinct 3",
                              "level2": null,
                              "level3": null,
                              "level4": null,
                              "object": "AdditionalLevels"
                            },
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4aEeXrmSPoLiX/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTV4aEeXrmSPoLiX",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4aEeXrmSPoLiX/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTV4aEeXrmSPoLiX%22%29",
                            "courtSystemId": "COSY53DJ9jCL9U4iUt",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:52:04+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4aEeXrmSPoLiX/jurisdictionGeo",
                            "name": "Fort Bend County Justice of the Peace Court",
                            "nameAka": "Fort Bend Justice of the Peace Court of Texas",
                            "object": "Court",
                            "system": "Texas Justice of the Peace Courts",
                            "type": "State"
                          },
                          "object": "CaseCountAnalyticsByCourt"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 7462,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCA3QXc76saCxHFL",
                          "court": {
                            "additionalLevels": {
                              "level1": "Precinct 3",
                              "level2": null,
                              "level3": null,
                              "level4": null,
                              "object": "AdditionalLevels"
                            },
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTc4CbicYNnSYfbG/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTc4CbicYNnSYfbG",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTc4CbicYNnSYfbG/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTc4CbicYNnSYfbG%22%29",
                            "courtSystemId": "COSY53DJ9jCL9U4iUt",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:52:03+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTc4CbicYNnSYfbG/jurisdictionGeo",
                            "name": "El Paso County Justice of the Peace Court",
                            "nameAka": "El Paso County Justice of the Peace Court of Texas",
                            "object": "Court",
                            "system": "Texas Justice of the Peace Courts",
                            "type": "State"
                          },
                          "object": "CaseCountAnalyticsByCourt"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 7053,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCTESu3zcbET4o9U",
                          "court": {
                            "additionalLevels": {
                              "level1": "Precinct 6",
                              "level2": "Place 2",
                              "level3": null,
                              "level4": null,
                              "object": "AdditionalLevels"
                            },
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTRt4tjakHxcDvym/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTRt4tjakHxcDvym",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTRt4tjakHxcDvym/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTRt4tjakHxcDvym%22%29",
                            "courtSystemId": "COSY53DJ9jCL9U4iUt",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:52:04+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTRt4tjakHxcDvym/jurisdictionGeo",
                            "name": "El Paso County Justice of the Peace Court",
                            "nameAka": "El Paso County Justice of the Peace Court of Texas",
                            "object": "Court",
                            "system": "Texas Justice of the Peace Courts",
                            "type": "State"
                          },
                          "object": "CaseCountAnalyticsByCourt"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 6931,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCMDfwGNS4eMdJ8m",
                          "court": {
                            "additionalLevels": {
                              "level1": "Precinct 8",
                              "level2": null,
                              "level3": null,
                              "level4": null,
                              "object": "AdditionalLevels"
                            },
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTBPeyaxCsiYUear/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTBPeyaxCsiYUear",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTBPeyaxCsiYUear/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTBPeyaxCsiYUear%22%29",
                            "courtSystemId": "COSY53DJ9jCL9U4iUt",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:52:07+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTBPeyaxCsiYUear/jurisdictionGeo",
                            "name": "Tarrant County Justice of the Peace Court",
                            "nameAka": "Tarrant County Justice of the Peace Court of Texas",
                            "object": "Court",
                            "system": "Texas Justice of the Peace Courts",
                            "type": "State"
                          },
                          "object": "CaseCountAnalyticsByCourt"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 6897,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCoYi4TPkdkGD785",
                          "court": {
                            "additionalLevels": null,
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTjQenxn6hvELHU9/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTjQenxn6hvELHU9",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTjQenxn6hvELHU9/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTjQenxn6hvELHU9%22%29",
                            "courtSystemId": "COSYGzMRVkZDPLotfw",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:50:48+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTjQenxn6hvELHU9/jurisdictionGeo",
                            "name": "Nassau County Supreme Court",
                            "nameAka": "Nassau County Supreme Court of New York",
                            "object": "Court",
                            "system": "New York Supreme Courts",
                            "type": "State"
                          },
                          "object": "CaseCountAnalyticsByCourt"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 6846,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCnqwhNPXUoXodMv",
                          "court": {
                            "additionalLevels": {
                              "level1": "Precinct 3",
                              "level2": "Place 2",
                              "level3": null,
                              "level4": null,
                              "object": "AdditionalLevels"
                            },
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTeJWPRFbV5Swdch/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTeJWPRFbV5Swdch",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTeJWPRFbV5Swdch/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTeJWPRFbV5Swdch%22%29",
                            "courtSystemId": "COSY53DJ9jCL9U4iUt",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:52:05+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTeJWPRFbV5Swdch/jurisdictionGeo",
                            "name": "Harris County Justice of the Peace Court",
                            "nameAka": "Harris County Justice of the Peace Court of Texas",
                            "object": "Court",
                            "system": "Texas Justice of the Peace Courts",
                            "type": "State"
                          },
                          "object": "CaseCountAnalyticsByCourt"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 6626,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCRR25yQS9jyWggS",
                          "court": {
                            "additionalLevels": null,
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTmfGoW94bhbLtkH/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTmfGoW94bhbLtkH",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTmfGoW94bhbLtkH/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTmfGoW94bhbLtkH%22%29",
                            "courtSystemId": "COSYACHBdMewtaG5DY",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:50:10+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTmfGoW94bhbLtkH/jurisdictionGeo",
                            "name": "Merced County Superior Court",
                            "nameAka": "Merced County Superior Court of California",
                            "object": "Court",
                            "system": "California Superior Courts",
                            "type": "State"
                          },
                          "object": "CaseCountAnalyticsByCourt"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 6610,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCN5aUqifSSDQEoF",
                          "court": {
                            "additionalLevels": null,
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTEXKGq7TsiDt7qq/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTEXKGq7TsiDt7qq",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTEXKGq7TsiDt7qq/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTEXKGq7TsiDt7qq%22%29",
                            "courtSystemId": "COSY4vuCtGQeAmdDdN",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:50:38+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTEXKGq7TsiDt7qq/jurisdictionGeo",
                            "name": "Volusia County Court",
                            "nameAka": "Volusia County Court of Florida",
                            "object": "Court",
                            "system": "Florida County Courts",
                            "type": "State"
                          },
                          "object": "CaseCountAnalyticsByCourt"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 6383,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCToT2tpMDZSevwB",
                          "court": {
                            "additionalLevels": {
                              "level1": "Precinct 1",
                              "level2": null,
                              "level3": null,
                              "level4": null,
                              "object": "AdditionalLevels"
                            },
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTjeSxVcdBXAaQdN/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTjeSxVcdBXAaQdN",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTjeSxVcdBXAaQdN/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTjeSxVcdBXAaQdN%22%29",
                            "courtSystemId": "COSY53DJ9jCL9U4iUt",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:52:03+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTjeSxVcdBXAaQdN/jurisdictionGeo",
                            "name": "Denton County Justice of the Peace Court",
                            "nameAka": "Denton County Justice of the Peace Court of Texas",
                            "object": "Court",
                            "system": "Texas Justice of the Peace Courts",
                            "type": "State"
                          },
                          "object": "CaseCountAnalyticsByCourt"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 6239,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCRY7gRdUSKSshmF",
                          "court": {
                            "additionalLevels": {
                              "level1": "Precinct 3",
                              "level2": null,
                              "level3": null,
                              "level4": null,
                              "object": "AdditionalLevels"
                            },
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTKFhQuEMJfRJ9YD/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTKFhQuEMJfRJ9YD",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTKFhQuEMJfRJ9YD/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTKFhQuEMJfRJ9YD%22%29",
                            "courtSystemId": "COSY53DJ9jCL9U4iUt",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:52:03+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTKFhQuEMJfRJ9YD/jurisdictionGeo",
                            "name": "Denton County Justice of the Peace Court",
                            "nameAka": "Denton County Justice of the Peace Court of Texas",
                            "object": "Court",
                            "system": "Texas Justice of the Peace Courts",
                            "type": "State"
                          },
                          "object": "CaseCountAnalyticsByCourt"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 6184,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC6PyVvBD9zcYK8q",
                          "court": {
                            "additionalLevels": {
                              "level1": "Precinct 4",
                              "level2": null,
                              "level3": null,
                              "level4": null,
                              "object": "AdditionalLevels"
                            },
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTc6yA9LdueEeq6s/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTc6yA9LdueEeq6s",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTc6yA9LdueEeq6s/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTc6yA9LdueEeq6s%22%29",
                            "courtSystemId": "COSY53DJ9jCL9U4iUt",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:52:05+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTc6yA9LdueEeq6s/jurisdictionGeo",
                            "name": "Fort Bend County Justice of the Peace Court",
                            "nameAka": "Fort Bend Justice of the Peace Court of Texas",
                            "object": "Court",
                            "system": "Texas Justice of the Peace Courts",
                            "type": "State"
                          },
                          "object": "CaseCountAnalyticsByCourt"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 6123,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC4toMGFUMXoCPew",
                          "court": {
                            "additionalLevels": {
                              "level1": "Precinct 2",
                              "level2": null,
                              "level3": null,
                              "level4": null,
                              "object": "AdditionalLevels"
                            },
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTjDLPrZXbHDsYo8/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTjDLPrZXbHDsYo8",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTjDLPrZXbHDsYo8/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTjDLPrZXbHDsYo8%22%29",
                            "courtSystemId": "COSY53DJ9jCL9U4iUt",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:52:03+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTjDLPrZXbHDsYo8/jurisdictionGeo",
                            "name": "Denton County Justice of the Peace Court",
                            "nameAka": "Denton County Justice of the Peace Court of Texas",
                            "object": "Court",
                            "system": "Texas Justice of the Peace Courts",
                            "type": "State"
                          },
                          "object": "CaseCountAnalyticsByCourt"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 5901,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCGTjBLyijbdCtXk",
                          "court": {
                            "additionalLevels": null,
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTXUGA2aMBDj3rf9/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTXUGA2aMBDj3rf9",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTXUGA2aMBDj3rf9/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTXUGA2aMBDj3rf9%22%29",
                            "courtSystemId": "COSYXjbiiAha8b6qW9",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:52:00+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTXUGA2aMBDj3rf9/jurisdictionGeo",
                            "name": "Collin County District Court",
                            "nameAka": "Collin County District Court of Texas",
                            "object": "Court",
                            "system": "Texas District Courts",
                            "type": "State"
                          },
                          "object": "CaseCountAnalyticsByCourt"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 5897,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCFDk3bQN83DnLBk",
                          "court": {
                            "additionalLevels": null,
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTVLdvVHX9TRtjaG/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTVLdvVHX9TRtjaG",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTVLdvVHX9TRtjaG/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTVLdvVHX9TRtjaG%22%29",
                            "courtSystemId": "COSYXjbiiAha8b6qW9",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:52:00+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTVLdvVHX9TRtjaG/jurisdictionGeo",
                            "name": "Fort Bend County District Court",
                            "nameAka": "Fort Bend County District Court of Texas",
                            "object": "Court",
                            "system": "Texas District Courts",
                            "type": "State"
                          },
                          "object": "CaseCountAnalyticsByCourt"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 5886,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCNN7WoDYJCdhwtT",
                          "court": {
                            "additionalLevels": {
                              "level1": "Precinct 5",
                              "level2": null,
                              "level3": null,
                              "level4": null,
                              "object": "AdditionalLevels"
                            },
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTbe73hMcLsvYu4i/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTbe73hMcLsvYu4i",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTbe73hMcLsvYu4i/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTbe73hMcLsvYu4i%22%29",
                            "courtSystemId": "COSY53DJ9jCL9U4iUt",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:52:04+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTbe73hMcLsvYu4i/jurisdictionGeo",
                            "name": "El Paso County Justice of the Peace Court",
                            "nameAka": "El Paso County Justice of the Peace Court of Texas",
                            "object": "Court",
                            "system": "Texas Justice of the Peace Courts",
                            "type": "State"
                          },
                          "object": "CaseCountAnalyticsByCourt"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 5604,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCFkgB7Gpsx85YkA",
                          "court": {
                            "additionalLevels": {
                              "level1": "Precinct 1",
                              "level2": null,
                              "level3": null,
                              "level4": null,
                              "object": "AdditionalLevels"
                            },
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTMae7F2ovDr7gHP/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTMae7F2ovDr7gHP",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTMae7F2ovDr7gHP/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTMae7F2ovDr7gHP%22%29",
                            "courtSystemId": "COSY53DJ9jCL9U4iUt",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:52:03+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTMae7F2ovDr7gHP/jurisdictionGeo",
                            "name": "El Paso County Justice of the Peace Court",
                            "nameAka": "El Paso County Justice of the Peace Court of Texas",
                            "object": "Court",
                            "system": "Texas Justice of the Peace Courts",
                            "type": "State"
                          },
                          "object": "CaseCountAnalyticsByCourt"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 5308,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCLGE4vbwNDqenDU",
                          "court": {
                            "additionalLevels": {
                              "level1": "Precinct 1",
                              "level2": "Place 1",
                              "level3": null,
                              "level4": null,
                              "object": "AdditionalLevels"
                            },
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTiZhKezviB4476p/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTiZhKezviB4476p",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTiZhKezviB4476p/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTiZhKezviB4476p%22%29",
                            "courtSystemId": "COSY53DJ9jCL9U4iUt",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:52:04+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTiZhKezviB4476p/jurisdictionGeo",
                            "name": "Fort Bend County Justice of the Peace Court",
                            "nameAka": "Fort Bend Justice of the Peace Court of Texas",
                            "object": "Court",
                            "system": "Texas Justice of the Peace Courts",
                            "type": "State"
                          },
                          "object": "CaseCountAnalyticsByCourt"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 5108,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCnTzi6atw8BdoLh",
                          "court": {
                            "additionalLevels": null,
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTVjecJtNAKRWw7Z/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTVjecJtNAKRWw7Z",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTVjecJtNAKRWw7Z/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTVjecJtNAKRWw7Z%22%29",
                            "courtSystemId": "COSYGzMRVkZDPLotfw",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:50:46+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTVjecJtNAKRWw7Z/jurisdictionGeo",
                            "name": "Broome County Supreme Court",
                            "nameAka": "Broome County Supreme Court of New York",
                            "object": "Court",
                            "system": "New York Supreme Courts",
                            "type": "State"
                          },
                          "object": "CaseCountAnalyticsByCourt"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 5080,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCJTzR925dH6X9Sh",
                          "court": {
                            "additionalLevels": {
                              "level1": "Precinct 5",
                              "level2": null,
                              "level3": null,
                              "level4": null,
                              "object": "AdditionalLevels"
                            },
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTj7CYKTQQJyUYFh/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTj7CYKTQQJyUYFh",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTj7CYKTQQJyUYFh/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTj7CYKTQQJyUYFh%22%29",
                            "courtSystemId": "COSY53DJ9jCL9U4iUt",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:52:03+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTj7CYKTQQJyUYFh/jurisdictionGeo",
                            "name": "Denton County Justice of the Peace Court",
                            "nameAka": "Denton County Justice of the Peace Court of Texas",
                            "object": "Court",
                            "system": "Texas Justice of the Peace Courts",
                            "type": "State"
                          },
                          "object": "CaseCountAnalyticsByCourt"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 5028,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCchvDJGHqCmUGP9",
                          "court": {
                            "additionalLevels": null,
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTL44WTqF63bJPAY/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTL44WTqF63bJPAY",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTL44WTqF63bJPAY/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTL44WTqF63bJPAY%22%29",
                            "courtSystemId": "COSYGzMRVkZDPLotfw",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:50:46+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTL44WTqF63bJPAY/jurisdictionGeo",
                            "name": "Albany County Supreme Court",
                            "nameAka": "Albany County Supreme Court of New York",
                            "object": "Court",
                            "system": "New York Supreme Courts",
                            "type": "State"
                          },
                          "object": "CaseCountAnalyticsByCourt"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 4748,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCZDmv9BSBGH7HAh",
                          "court": {
                            "additionalLevels": null,
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTA8LzK3Vg9WTBBj/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTA8LzK3Vg9WTBBj",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTA8LzK3Vg9WTBBj/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTA8LzK3Vg9WTBBj%22%29",
                            "courtSystemId": "COSYGzMRVkZDPLotfw",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:50:48+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTA8LzK3Vg9WTBBj/jurisdictionGeo",
                            "name": "Niagara County Supreme Court",
                            "nameAka": "Niagara County Supreme Court of New York",
                            "object": "Court",
                            "system": "New York Supreme Courts",
                            "type": "State"
                          },
                          "object": "CaseCountAnalyticsByCourt"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 4669,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCXPX8QMGcb4zo2z",
                          "court": {
                            "additionalLevels": {
                              "level1": "Precinct 6",
                              "level2": null,
                              "level3": null,
                              "level4": null,
                              "object": "AdditionalLevels"
                            },
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTf2zjy8daAK9cLN/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTf2zjy8daAK9cLN",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTf2zjy8daAK9cLN/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTf2zjy8daAK9cLN%22%29",
                            "courtSystemId": "COSY53DJ9jCL9U4iUt",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:52:03+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTf2zjy8daAK9cLN/jurisdictionGeo",
                            "name": "Denton County Justice of the Peace Court",
                            "nameAka": "Denton County Justice of the Peace Court of Texas",
                            "object": "Court",
                            "system": "Texas Justice of the Peace Courts",
                            "type": "State"
                          },
                          "object": "CaseCountAnalyticsByCourt"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 4512,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCYxkpChvcjwEjfB",
                          "court": {
                            "additionalLevels": {
                              "level1": "Precinct 1",
                              "level2": "Place 2",
                              "level3": null,
                              "level4": null,
                              "object": "AdditionalLevels"
                            },
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORThhL89U8NwCp6Hi/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORThhL89U8NwCp6Hi",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORThhL89U8NwCp6Hi/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORThhL89U8NwCp6Hi%22%29",
                            "courtSystemId": "COSY53DJ9jCL9U4iUt",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:52:04+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORThhL89U8NwCp6Hi/jurisdictionGeo",
                            "name": "Fort Bend County Justice of the Peace Court",
                            "nameAka": "Fort Bend Justice of the Peace Court of Texas",
                            "object": "Court",
                            "system": "Texas Justice of the Peace Courts",
                            "type": "State"
                          },
                          "object": "CaseCountAnalyticsByCourt"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 4499,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC7DNAuwauq79Vjz",
                          "court": {
                            "additionalLevels": {
                              "level1": "Precinct 5",
                              "level2": null,
                              "level3": null,
                              "level4": null,
                              "object": "AdditionalLevels"
                            },
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORT9a4qDo6qe5kTR8/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORT9a4qDo6qe5kTR8",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORT9a4qDo6qe5kTR8/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORT9a4qDo6qe5kTR8%22%29",
                            "courtSystemId": "COSY53DJ9jCL9U4iUt",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:52:07+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORT9a4qDo6qe5kTR8/jurisdictionGeo",
                            "name": "Tarrant County Justice of the Peace Court",
                            "nameAka": "Tarrant County Justice of the Peace Court of Texas",
                            "object": "Court",
                            "system": "Texas Justice of the Peace Courts",
                            "type": "State"
                          },
                          "object": "CaseCountAnalyticsByCourt"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 4482,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCYWQfZan5D2BJ9S",
                          "court": {
                            "additionalLevels": null,
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORT838ri8ho9qhfnj/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORT838ri8ho9qhfnj",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORT838ri8ho9qhfnj/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORT838ri8ho9qhfnj%22%29",
                            "courtSystemId": "COSYXjbiiAha8b6qW9",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:52:00+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORT838ri8ho9qhfnj/jurisdictionGeo",
                            "name": "Denton County District Court",
                            "nameAka": "Denton County District Court of Texas",
                            "object": "Court",
                            "system": "Texas District Courts",
                            "type": "State"
                          },
                          "object": "CaseCountAnalyticsByCourt"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 4444,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCYseSVD6Bmougth",
                          "court": {
                            "additionalLevels": null,
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTVmkhuFEoS9hcyF/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTVmkhuFEoS9hcyF",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTVmkhuFEoS9hcyF/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTVmkhuFEoS9hcyF%22%29",
                            "courtSystemId": "COSYGzMRVkZDPLotfw",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:50:47+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTVmkhuFEoS9hcyF/jurisdictionGeo",
                            "name": "Kings County Supreme Court",
                            "nameAka": "Kings County Supreme Court of New York",
                            "object": "Court",
                            "system": "New York Supreme Courts",
                            "type": "State"
                          },
                          "object": "CaseCountAnalyticsByCourt"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 4325,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC6C58ykTj7VEuFd",
                          "court": {
                            "additionalLevels": {
                              "level1": "Precinct 6",
                              "level2": "Place 1",
                              "level3": null,
                              "level4": null,
                              "object": "AdditionalLevels"
                            },
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTCsnbBJgSTEPnku/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTCsnbBJgSTEPnku",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTCsnbBJgSTEPnku/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTCsnbBJgSTEPnku%22%29",
                            "courtSystemId": "COSY53DJ9jCL9U4iUt",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:52:04+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTCsnbBJgSTEPnku/jurisdictionGeo",
                            "name": "El Paso County Justice of the Peace Court",
                            "nameAka": "El Paso County Justice of the Peace Court of Texas",
                            "object": "Court",
                            "system": "Texas Justice of the Peace Courts",
                            "type": "State"
                          },
                          "object": "CaseCountAnalyticsByCourt"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 4179,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCX4TVtWUFUU9E3S",
                          "court": {
                            "additionalLevels": null,
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTZmi7KMMh2LgYy5/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTZmi7KMMh2LgYy5",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTZmi7KMMh2LgYy5/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTZmi7KMMh2LgYy5%22%29",
                            "courtSystemId": "COSYGzMRVkZDPLotfw",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:50:49+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTZmi7KMMh2LgYy5/jurisdictionGeo",
                            "name": "Queens County Supreme Court",
                            "nameAka": "Queens County Supreme Court of New York",
                            "object": "Court",
                            "system": "New York Supreme Courts",
                            "type": "State"
                          },
                          "object": "CaseCountAnalyticsByCourt"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 4067,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCkqrjgxZHAWyZMV",
                          "court": {
                            "additionalLevels": null,
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTXg6BsNaTw3ze6V/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTXg6BsNaTw3ze6V",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTXg6BsNaTw3ze6V/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTXg6BsNaTw3ze6V%22%29",
                            "courtSystemId": "COSYGzMRVkZDPLotfw",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:50:48+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTXg6BsNaTw3ze6V/jurisdictionGeo",
                            "name": "Oneida County Supreme Court",
                            "nameAka": "Oneida County Supreme Court of New York",
                            "object": "Court",
                            "system": "New York Supreme Courts",
                            "type": "State"
                          },
                          "object": "CaseCountAnalyticsByCourt"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 3997,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC7JQ3BUNFhmW5Va",
                          "court": {
                            "additionalLevels": {
                              "level1": "Precinct 7",
                              "level2": null,
                              "level3": null,
                              "level4": null,
                              "object": "AdditionalLevels"
                            },
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTMmZ2kCyAguMmyZ/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTMmZ2kCyAguMmyZ",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTMmZ2kCyAguMmyZ/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTMmZ2kCyAguMmyZ%22%29",
                            "courtSystemId": "COSY53DJ9jCL9U4iUt",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:52:04+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTMmZ2kCyAguMmyZ/jurisdictionGeo",
                            "name": "El Paso County Justice of the Peace Court",
                            "nameAka": "El Paso County Justice of the Peace Court of Texas",
                            "object": "Court",
                            "system": "Texas Justice of the Peace Courts",
                            "type": "State"
                          },
                          "object": "CaseCountAnalyticsByCourt"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 3985,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCmRAZUQe2mkT5Zp",
                          "court": {
                            "additionalLevels": {
                              "level1": "Precinct 4",
                              "level2": null,
                              "level3": null,
                              "level4": null,
                              "object": "AdditionalLevels"
                            },
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTknwWuNm7LiFUzb/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTknwWuNm7LiFUzb",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTknwWuNm7LiFUzb/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTknwWuNm7LiFUzb%22%29",
                            "courtSystemId": "COSY53DJ9jCL9U4iUt",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:52:03+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTknwWuNm7LiFUzb/jurisdictionGeo",
                            "name": "Denton County Justice of the Peace Court",
                            "nameAka": "Denton County Justice of the Peace Court of Texas",
                            "object": "Court",
                            "system": "Texas Justice of the Peace Courts",
                            "type": "State"
                          },
                          "object": "CaseCountAnalyticsByCourt"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 3464,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCeBxHiK9zxdT2p2",
                          "court": {
                            "additionalLevels": null,
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTHtN2mRqfDh7yVn/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTHtN2mRqfDh7yVn",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTHtN2mRqfDh7yVn/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTHtN2mRqfDh7yVn%22%29",
                            "courtSystemId": "COSYGzMRVkZDPLotfw",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:50:48+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTHtN2mRqfDh7yVn/jurisdictionGeo",
                            "name": "Oswego County Supreme Court",
                            "nameAka": "Oswego County Supreme Court of New York",
                            "object": "Court",
                            "system": "New York Supreme Courts",
                            "type": "State"
                          },
                          "object": "CaseCountAnalyticsByCourt"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 3395,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCCMmsoJZg9yacSN",
                          "court": {
                            "additionalLevels": null,
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORT2kbrMe6pWKWwaz/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORT2kbrMe6pWKWwaz",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORT2kbrMe6pWKWwaz/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORT2kbrMe6pWKWwaz%22%29",
                            "courtSystemId": "COSYGzMRVkZDPLotfw",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:50:46+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORT2kbrMe6pWKWwaz/jurisdictionGeo",
                            "name": "Chautauqua County Supreme Court",
                            "nameAka": "Chautauqua County Supreme Court of New York",
                            "object": "Court",
                            "system": "New York Supreme Courts",
                            "type": "State"
                          },
                          "object": "CaseCountAnalyticsByCourt"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 3207,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCZKRwbxhXb8unTk",
                          "court": {
                            "additionalLevels": null,
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORT2Ewa5m2Q2vgYbC/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORT2Ewa5m2Q2vgYbC",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORT2Ewa5m2Q2vgYbC/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORT2Ewa5m2Q2vgYbC%22%29",
                            "courtSystemId": "COSYGzMRVkZDPLotfw",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:50:49+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORT2Ewa5m2Q2vgYbC/jurisdictionGeo",
                            "name": "Putnam County Supreme Court",
                            "nameAka": "Putnam County Supreme Court of New York",
                            "object": "Court",
                            "system": "New York Supreme Courts",
                            "type": "State"
                          },
                          "object": "CaseCountAnalyticsByCourt"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 3089,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC7dRMvG8TQfGHT8",
                          "court": {
                            "additionalLevels": null,
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTFg9jXWodXVcSBe/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTFg9jXWodXVcSBe",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTFg9jXWodXVcSBe/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTFg9jXWodXVcSBe%22%29",
                            "courtSystemId": "COSYGzMRVkZDPLotfw",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:50:50+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTFg9jXWodXVcSBe/jurisdictionGeo",
                            "name": "Wayne County Supreme Court",
                            "nameAka": "Wayne County Supreme Court of New York",
                            "object": "Court",
                            "system": "New York Supreme Courts",
                            "type": "State"
                          },
                          "object": "CaseCountAnalyticsByCourt"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 2897,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCaMGCuMg2Fw9Jza",
                          "court": {
                            "additionalLevels": null,
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTCovPWdUpgendpJ/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTCovPWdUpgendpJ",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTCovPWdUpgendpJ/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTCovPWdUpgendpJ%22%29",
                            "courtSystemId": "COSYGzMRVkZDPLotfw",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:50:48+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTCovPWdUpgendpJ/jurisdictionGeo",
                            "name": "New York County Supreme Court",
                            "nameAka": "New York County Supreme Court of New York",
                            "object": "Court",
                            "system": "New York Supreme Courts",
                            "type": "State"
                          },
                          "object": "CaseCountAnalyticsByCourt"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 2838,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCin7fRC3VBeneod",
                          "court": {
                            "additionalLevels": null,
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTDmCm9Yvn74Gjd9/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTDmCm9Yvn74Gjd9",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTDmCm9Yvn74Gjd9/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTDmCm9Yvn74Gjd9%22%29",
                            "courtSystemId": "COSYGzMRVkZDPLotfw",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:50:47+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTDmCm9Yvn74Gjd9/jurisdictionGeo",
                            "name": "Jefferson County Supreme Court",
                            "nameAka": "Jefferson County Supreme Court of New York",
                            "object": "Court",
                            "system": "New York Supreme Courts",
                            "type": "State"
                          },
                          "object": "CaseCountAnalyticsByCourt"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 2740,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCeNCFxGuN2XzRR9",
                          "court": {
                            "additionalLevels": null,
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTjrNa7m7Q57DLc6/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTjrNa7m7Q57DLc6",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTjrNa7m7Q57DLc6/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTjrNa7m7Q57DLc6%22%29",
                            "courtSystemId": "COSY4vuCtGQeAmdDdN",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:50:37+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTjrNa7m7Q57DLc6/jurisdictionGeo",
                            "name": "Sarasota County Court",
                            "nameAka": "Sarasota County Court of Florida",
                            "object": "Court",
                            "system": "Florida County Courts",
                            "type": "State"
                          },
                          "object": "CaseCountAnalyticsByCourt"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 2635,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC3aT2YmxLQ6FPTf",
                          "court": {
                            "additionalLevels": null,
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORToNbiuhnQjcjmF4/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORToNbiuhnQjcjmF4",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORToNbiuhnQjcjmF4/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORToNbiuhnQjcjmF4%22%29",
                            "courtSystemId": "COSY4vuCtGQeAmdDdN",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:50:28+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORToNbiuhnQjcjmF4/jurisdictionGeo",
                            "name": "Escambia County Court",
                            "nameAka": "Escambia County Court of Florida",
                            "object": "Court",
                            "system": "Florida County Courts",
                            "type": "State"
                          },
                          "object": "CaseCountAnalyticsByCourt"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 2544,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCm3PNWVoEdoYJ5T",
                          "court": {
                            "additionalLevels": null,
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTDZ3zAE2QMedZgN/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTDZ3zAE2QMedZgN",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTDZ3zAE2QMedZgN/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTDZ3zAE2QMedZgN%22%29",
                            "courtSystemId": "COSYGzMRVkZDPLotfw",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:50:49+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTDZ3zAE2QMedZgN/jurisdictionGeo",
                            "name": "St. Lawrence County Supreme Court",
                            "nameAka": "St. Lawrence County Supreme Court of New York",
                            "object": "Court",
                            "system": "New York Supreme Courts",
                            "type": "State"
                          },
                          "object": "CaseCountAnalyticsByCourt"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 2326,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCDkPqf86qupeTNG",
                          "court": {
                            "additionalLevels": null,
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTVkEvPXmq3TXMku/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTVkEvPXmq3TXMku",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTVkEvPXmq3TXMku/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTVkEvPXmq3TXMku%22%29",
                            "courtSystemId": "COSY4vuCtGQeAmdDdN",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:50:33+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTVkEvPXmq3TXMku/jurisdictionGeo",
                            "name": "Manatee County Court",
                            "nameAka": "Manatee County Court of Florida",
                            "object": "Court",
                            "system": "Florida County Courts",
                            "type": "State"
                          },
                          "object": "CaseCountAnalyticsByCourt"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 2194,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCjxRAQqCDG84N5D",
                          "court": {
                            "additionalLevels": {
                              "level1": "Precinct 6",
                              "level2": "Place 2",
                              "level3": null,
                              "level4": null,
                              "object": "AdditionalLevels"
                            },
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTJieHXH4DvjkrrV/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTJieHXH4DvjkrrV",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTJieHXH4DvjkrrV/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTJieHXH4DvjkrrV%22%29",
                            "courtSystemId": "COSY53DJ9jCL9U4iUt",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:52:06+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTJieHXH4DvjkrrV/jurisdictionGeo",
                            "name": "Harris County Justice of the Peace Court",
                            "nameAka": "Harris County Justice of the Peace Court of Texas",
                            "object": "Court",
                            "system": "Texas Justice of the Peace Courts",
                            "type": "State"
                          },
                          "object": "CaseCountAnalyticsByCourt"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 2018,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCPh4tfFoY98Kkrm",
                          "court": {
                            "additionalLevels": null,
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTWDD8SeiFEBubcn/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTWDD8SeiFEBubcn",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTWDD8SeiFEBubcn/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTWDD8SeiFEBubcn%22%29",
                            "courtSystemId": "COSY4BQSK7HBZc2ymW",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:52:00+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTWDD8SeiFEBubcn/jurisdictionGeo",
                            "name": "Travis County Court",
                            "nameAka": "Travis County Court of Texas",
                            "object": "Court",
                            "system": "Texas County Courts",
                            "type": "State"
                          },
                          "object": "CaseCountAnalyticsByCourt"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 1878,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCjYNmkamgiYXb25",
                          "court": {
                            "additionalLevels": null,
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTXMv4ET4GWdA9Th/appealCourts",
                            "container": "8",
                            "containerType": "Circuit",
                            "courtId": "CORTXMv4ET4GWdA9Th",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTXMv4ET4GWdA9Th/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTXMv4ET4GWdA9Th%22%29",
                            "courtSystemId": "COSYJsiQhCtkP6fm8m",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:50:19+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTXMv4ET4GWdA9Th/jurisdictionGeo",
                            "name": "Eighth Judicial Circuit",
                            "nameAka": "Eighth Judicial Circuit of Florida",
                            "object": "Court",
                            "system": "Florida Circuit Courts",
                            "type": "State"
                          },
                          "object": "CaseCountAnalyticsByCourt"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 1728,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCLrKvUDKADPCRJs",
                          "court": {
                            "additionalLevels": null,
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTfLvrCx6vDhzntS/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTfLvrCx6vDhzntS",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTfLvrCx6vDhzntS/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTfLvrCx6vDhzntS%22%29",
                            "courtSystemId": "COSY4vuCtGQeAmdDdN",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:50:35+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTfLvrCx6vDhzntS/jurisdictionGeo",
                            "name": "Pasco County Court",
                            "nameAka": "Pasco County Court of Florida",
                            "object": "Court",
                            "system": "Florida County Courts",
                            "type": "State"
                          },
                          "object": "CaseCountAnalyticsByCourt"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 1703,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCftRpMzYXTfX7t7",
                          "court": {
                            "additionalLevels": null,
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTjHxNrDH58otCJa/appealCourts",
                            "container": "1",
                            "containerType": "Circuit",
                            "courtId": "CORTjHxNrDH58otCJa",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTjHxNrDH58otCJa/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTjHxNrDH58otCJa%22%29",
                            "courtSystemId": "COSYJsiQhCtkP6fm8m",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:50:15+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTjHxNrDH58otCJa/jurisdictionGeo",
                            "name": "First Judicial Circuit",
                            "nameAka": "First Judicial Circuit of Florida",
                            "object": "Court",
                            "system": "Florida Circuit Courts",
                            "type": "State"
                          },
                          "object": "CaseCountAnalyticsByCourt"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 1664,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCjfBYCGjCWwkhJv",
                          "court": {
                            "additionalLevels": null,
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTdS4qcaBuvSqnZC/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTdS4qcaBuvSqnZC",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTdS4qcaBuvSqnZC/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTdS4qcaBuvSqnZC%22%29",
                            "courtSystemId": "COSYGzMRVkZDPLotfw",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:50:49+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTdS4qcaBuvSqnZC/jurisdictionGeo",
                            "name": "Steuben County Supreme Court",
                            "nameAka": "Steuben County Supreme Court of New York",
                            "object": "Court",
                            "system": "New York Supreme Courts",
                            "type": "State"
                          },
                          "object": "CaseCountAnalyticsByCourt"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 1629,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCoXzpxGaxPX9GNS",
                          "court": {
                            "additionalLevels": null,
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTYf9GuJPS6khYK3/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTYf9GuJPS6khYK3",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTYf9GuJPS6khYK3/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTYf9GuJPS6khYK3%22%29",
                            "courtSystemId": "COSY4vuCtGQeAmdDdN",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:50:24+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTYf9GuJPS6khYK3/jurisdictionGeo",
                            "name": "Alachua County Court",
                            "nameAka": "Alachua County Court of Florida",
                            "object": "Court",
                            "system": "Florida County Courts",
                            "type": "State"
                          },
                          "object": "CaseCountAnalyticsByCourt"
                        }
                      ],
                      "totalCaseCount": 2320867,
                      "totalCourtCount": 225,
                      "totalPages": 3
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/CaseCountAnalyticsByCourtResponse"
                }
              }
            },
            "description": "OK"
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "sample400AnalyticsQuery": {
                    "value": {
                      "code": "UN400",
                      "details": "caseFiledDate is not in a required format",
                      "message": "INVALID_INPUT",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Bad Request"
          },
          "404": {
            "content": {
              "application/json": {
                "examples": {
                  "sample404AnalyticsQuery": {
                    "value": {
                      "code": "UN404",
                      "details": "caseTypeId not found",
                      "message": "RESOURCE_NOT_FOUND",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Not Found"
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "example-1": {
                    "value": {
                      "code": "UN500",
                      "details": "Has encountered a situation which needs to be handled.",
                      "message": "INTERNAL_SERVER_ERROR",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Internal Server Error"
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Case Count Analytics by Court.",
        "tags": [
          "Case Analytics API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [],
      "x-api-name": "CaseCountAnalyticsByCourtAPI",
      "x-unicourt-tag": "CaseAnalyticsAPIs"
    },
    "/caseCountAnalyticsByCourtLocation": {
      "get": {
        "description": "Get Case Count Analytics grouped by Court Location.\n## Terms and Connectors\n| Connector | Schema   | Description  | Example |\n| ------| ------| ------|------|\n| **AND** ||Find analytics containing all connected terms. The word AND does not have to be capitalized.|**courtId:\"CORTV4vCEaKrhystBz\" AND courtLocationId:\"COLO6b82CkRqS846hx\"**|\n| **IN()** || Allows you to specify multiple values, for a limit of up to 10.| **courtId IN (\"CORTKQiA4LJuv54tEj\",\"CORTV4vCEaKrhystBz\")**|\n| **courtId** | Multiple Ids Allowed |Find Analytics for a particular Court Object. | **courtId:\"CORTV4vCEaKrhystBz\"** |\n| **courtSystemId** | Multiple Ids Allowed |Find Analytics for a particular Court System Object. | **courtSystemId:\"COSYACHBdMewtaG5DY\"** |\n| **courtTypeId** | Multiple Ids Allowed |Find Analytics for a particular Court Type Object. | **courtTypeId:\"COTPm8jjc2PAydpFhq\"** |\n| **courtLocationId** | Multiple Ids Allowed |Find Analytics for a particular Court Location Object. | **courtLocationId:\"COLO6b82CkRqS846hx\"** |\n| **caseTypeId** | Multiple Ids Allowed |Find Analytics for a particular Case Type Object. | **caseTypeId:\"CTYPATMYyaJekdgj2c\"** |\n| **caseTypeGroupId** | Multiple Ids Allowed |Find Analytics for a particular Case Type Group Object. | **caseTypeGroupId:\"CTYG8gZ6hPRKhhYi4Y\"** |\n| **areaOfLawId** | Multiple Ids Allowed |Find Analytics for a particular Area Of Law Object. | **areaOfLawId:\"AOFL2UxEWfVmTPMyqf\"** |\n| **caseClassId** | Multiple Ids Allowed |Find Analytics for a particular Case Class Category Object. | **caseClassId:\"CSCLNjbKTN7Yfo2wdb\"** |\n| **partyRoleId** | Multiple Ids Allowed |Find Analytics for a particular Party Type Object. | **partyRoleId:\"PTYRiP8nMgPxBsPc5i\"** |\n| **partyRoleGroupId** | Multiple Ids Allowed |Find Analytics for a particular Party Type Group Object. | **partyRoleGroupId:\"PTYGBnjxbx6tKNfVEP\"** |\n| **attorneyPartyRoleId** | Multiple Ids Allowed |Find Analytics for a particular Attorney Party Type Object. | **attorneyPartyRoleId:\"PTYRiP8nMgPxBsPc5i\"** |\n| **attorneyPartyRoleGroupId** | Multiple Ids Allowed |Find Analytics for a particular Attorney Party Type Group Object. | **attorneyPartyRoleGroupId:\"PTYGBnjxbx6tKNfVEP\"** |\n| **normAttorneyId** | Multiple Ids Allowed  |Find Analytics for a particular norm Attorney Object. | **normAttorneyId:\"NATYfwmXwRHS279WPY\"** |\n| **normPartyId** | Multiple Ids Allowed |Find Analytics for a particular Party Object. | **normPartyId:\"NORGrPmQyLdx9NGHcT\"** |\n| **normLawFirmId** | Multiple Ids Allowed  |Find Analytics for a particular Norm LawFirm Object. | **normLawFirmId:\"NORGrPmQyLdx9NGHcT\"** |\n| **normJudgeId** | Multiple Ids Allowed  |Find Analytics for a particular Judge Object. | **normJudgeId:\"NJUDT7jCZyFNeLGpRq\"** |\n| **caseFiledDate** | Single Allowed |Find Analytics within a particular date range. | **caseFiledDate:[2018-05-08T00:00:00+00:00TO2019-05-08T00:00:00+00:00]** |\n| **JurisdictionGeo** | Multiple filters Allowed |Find Analytics within a particular Jurisdiction Geo. | **(JurisdictionGeo:(state:\"California\"))** |\n| **confidenceScore** | Single Allowed |Find Analytics for a given ConfidenceScore  | **confidenceScore>=0.5** |\n| **bestMatch** | Single Allowed |True if the normEntity has the highest Confidence Score of all possible normEntities | **bestMatch:true** |\n<br>\n## Example Query\nQuery to get case count grouped by court location  of all cases with court id CORTV4vCEaKrhystBz and filed between Jan 1st, 2017 to Nov 30th,2021<br>\nq=courtId:\"CORTV4vCEaKrhystBz\" AND caseFiledDate:[2017-01-01T00:00:00+00:00TO2021-11-30T00:00:00+00:00]\n",
        "operationId": "getCaseCountAnalyticsByCourtLocation",
        "parameters": [
          {
            "description": "The URL encoded query you are searching for. The query can be as simple as a keyword, but supports many additional options and filters. All options are documented above.",
            "examples": {
              "HTTP200-modifiedValue": {
                "summary": "Default value",
                "value": ""
              },
              "HTTP200-sampleAnalyticsQuery": {
                "summary": "sampleAnalyticsQuery",
                "value": "courtId:\"CORTV4vCEaKrhystBz\" AND caseFiledDate:[2017-01-01T00:00:00+00:00TO2021-11-30T00:00:00+00:00]"
              },
              "HTTP400-sample400AnalyticsQuery": {
                "summary": "sample400AnalyticsQuery",
                "value": "caseTypeId:\"CTYPATMYyaJekdgj2c\" AND caseFiledDate:[2018-01-01T00:00:00+00:00TO2021-11-3000:00:00+00:00]"
              },
              "HTTP404-sample404AnalyticsQuery": {
                "summary": "sample404AnalyticsQuery",
                "value": "caseTypeId:\"CTYPATMYy1Jekdgj2c\" AND caseFiledDate:[2018-01-01T00:00:00+00:00TO2021-11-30T00:00:00+00:00]"
              }
            },
            "in": "query",
            "name": "q",
            "schema": {
              "maxLength": 2048,
              "nullable": false,
              "type": "string"
            }
          },
          {
            "$ref": "#/components/parameters/AnalyticsPageParam"
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleAnalyticsQuery": {
                    "value": {
                      "nextPageAPI": null,
                      "object": "CaseCountAnalyticsByCourtLocationResponse",
                      "previousPageAPI": null,
                      "results": [
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 454776,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCDFexmN4uH3fgJT",
                          "court": {
                            "additionalLevels": null,
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTV4vCEaKrhystBz",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTV4vCEaKrhystBz%22%29",
                            "courtSystemId": "COSYACHBdMewtaG5DY",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:50:06+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/jurisdictionGeo",
                            "name": "Los Angeles County Superior Court",
                            "nameAka": "Los Angeles County Superior Court of California",
                            "object": "Court",
                            "system": "California Superior Courts",
                            "type": "State"
                          },
                          "courtLocation": {
                            "city": "Los Angeles",
                            "courtLocationId": "COLO6b82CkRqS846hx",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=CourtLocation%3A%28courtLocationId%3A%22COLO6b82CkRqS846hx%22%29",
                            "courtsForCourtLocationAPI": "https://enterpriseapi.unicourt.com/masterData/courtLocation/COLO6b82CkRqS846hx/courts",
                            "createdDate": "2022-07-08T05:50:08+00:00",
                            "name": "Stanley Mosk Courthouse",
                            "object": "CourtLocation",
                            "stateName": "California",
                            "streetAddress1": "111 North Hill Street",
                            "streetAddress2": null
                          },
                          "object": "CaseCountAnalyticsByCourtLocation"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 229066,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCgfC3Qz4nhjx6ww",
                          "court": {
                            "additionalLevels": null,
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTV4vCEaKrhystBz",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTV4vCEaKrhystBz%22%29",
                            "courtSystemId": "COSYACHBdMewtaG5DY",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:50:06+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/jurisdictionGeo",
                            "name": "Los Angeles County Superior Court",
                            "nameAka": "Los Angeles County Superior Court of California",
                            "object": "Court",
                            "system": "California Superior Courts",
                            "type": "State"
                          },
                          "courtLocation": {
                            "city": "Chatsworth",
                            "courtLocationId": "COLODj4BBVTho3pKpz",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=CourtLocation%3A%28courtLocationId%3A%22COLODj4BBVTho3pKpz%22%29",
                            "courtsForCourtLocationAPI": "https://enterpriseapi.unicourt.com/masterData/courtLocation/COLODj4BBVTho3pKpz/courts",
                            "createdDate": "2022-07-08T05:50:07+00:00",
                            "name": "Chatsworth Courthouse",
                            "object": "CourtLocation",
                            "stateName": "California",
                            "streetAddress1": "9425 Penfield Ave",
                            "streetAddress2": null
                          },
                          "object": "CaseCountAnalyticsByCourtLocation"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 213046,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCBAeHB8TxzQJi3f",
                          "court": {
                            "additionalLevels": null,
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTV4vCEaKrhystBz",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTV4vCEaKrhystBz%22%29",
                            "courtSystemId": "COSYACHBdMewtaG5DY",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:50:06+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/jurisdictionGeo",
                            "name": "Los Angeles County Superior Court",
                            "nameAka": "Los Angeles County Superior Court of California",
                            "object": "Court",
                            "system": "California Superior Courts",
                            "type": "State"
                          },
                          "courtLocation": {
                            "city": "Norwalk",
                            "courtLocationId": "COLOPUfJRhw5yPxgRi",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=CourtLocation%3A%28courtLocationId%3A%22COLOPUfJRhw5yPxgRi%22%29",
                            "courtsForCourtLocationAPI": "https://enterpriseapi.unicourt.com/masterData/courtLocation/COLOPUfJRhw5yPxgRi/courts",
                            "createdDate": "2022-07-08T05:50:09+00:00",
                            "name": "Norwalk Courthouse",
                            "object": "CourtLocation",
                            "stateName": "California",
                            "streetAddress1": "12720 Norwalk Blvd",
                            "streetAddress2": null
                          },
                          "object": "CaseCountAnalyticsByCourtLocation"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 118963,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC22acdvdMrfqrcn",
                          "court": {
                            "additionalLevels": null,
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTV4vCEaKrhystBz",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTV4vCEaKrhystBz%22%29",
                            "courtSystemId": "COSYACHBdMewtaG5DY",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:50:06+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/jurisdictionGeo",
                            "name": "Los Angeles County Superior Court",
                            "nameAka": "Los Angeles County Superior Court of California",
                            "object": "Court",
                            "system": "California Superior Courts",
                            "type": "State"
                          },
                          "courtLocation": {
                            "city": "Los Angeles",
                            "courtLocationId": "COLOjNP4yqYuqz8qTs",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=CourtLocation%3A%28courtLocationId%3A%22COLOjNP4yqYuqz8qTs%22%29",
                            "courtsForCourtLocationAPI": "https://enterpriseapi.unicourt.com/masterData/courtLocation/COLOjNP4yqYuqz8qTs/courts",
                            "createdDate": "2022-07-08T05:50:08+00:00",
                            "name": "Spring Street Courthouse",
                            "object": "CourtLocation",
                            "stateName": "California",
                            "streetAddress1": "312 North Spring Street",
                            "streetAddress2": null
                          },
                          "object": "CaseCountAnalyticsByCourtLocation"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 103938,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCJZEmckRsp3JcVp",
                          "court": {
                            "additionalLevels": null,
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTV4vCEaKrhystBz",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTV4vCEaKrhystBz%22%29",
                            "courtSystemId": "COSYACHBdMewtaG5DY",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:50:06+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/jurisdictionGeo",
                            "name": "Los Angeles County Superior Court",
                            "nameAka": "Los Angeles County Superior Court of California",
                            "object": "Court",
                            "system": "California Superior Courts",
                            "type": "State"
                          },
                          "courtLocation": {
                            "city": "Van Nuys",
                            "courtLocationId": "COLO4K6FgnqJd5nPWc",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=CourtLocation%3A%28courtLocationId%3A%22COLO4K6FgnqJd5nPWc%22%29",
                            "courtsForCourtLocationAPI": "https://enterpriseapi.unicourt.com/masterData/courtLocation/COLO4K6FgnqJd5nPWc/courts",
                            "createdDate": "2022-07-08T05:50:10+00:00",
                            "name": "Van Nuys Courthouse East",
                            "object": "CourtLocation",
                            "stateName": "California",
                            "streetAddress1": "6230 Sylmar Ave",
                            "streetAddress2": null
                          },
                          "object": "CaseCountAnalyticsByCourtLocation"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 85835,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCWMnyPDnztsbCNW",
                          "court": {
                            "additionalLevels": null,
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTV4vCEaKrhystBz",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTV4vCEaKrhystBz%22%29",
                            "courtSystemId": "COSYACHBdMewtaG5DY",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:50:06+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/jurisdictionGeo",
                            "name": "Los Angeles County Superior Court",
                            "nameAka": "Los Angeles County Superior Court of California",
                            "object": "Court",
                            "system": "California Superior Courts",
                            "type": "State"
                          },
                          "courtLocation": {
                            "city": "Lancaster",
                            "courtLocationId": "COLO4qykLrqacEpYxU",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=CourtLocation%3A%28courtLocationId%3A%22COLO4qykLrqacEpYxU%22%29",
                            "courtsForCourtLocationAPI": "https://enterpriseapi.unicourt.com/masterData/courtLocation/COLO4qykLrqacEpYxU/courts",
                            "createdDate": "2022-07-08T05:50:08+00:00",
                            "name": "Michael Antonovich Antelope Valley Courthouse",
                            "object": "CourtLocation",
                            "stateName": "California",
                            "streetAddress1": "42011 4Th Street West",
                            "streetAddress2": null
                          },
                          "object": "CaseCountAnalyticsByCourtLocation"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 83935,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCCAng9DXfvBsmVs",
                          "court": {
                            "additionalLevels": null,
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTV4vCEaKrhystBz",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTV4vCEaKrhystBz%22%29",
                            "courtSystemId": "COSYACHBdMewtaG5DY",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:50:06+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/jurisdictionGeo",
                            "name": "Los Angeles County Superior Court",
                            "nameAka": "Los Angeles County Superior Court of California",
                            "object": "Court",
                            "system": "California Superior Courts",
                            "type": "State"
                          },
                          "courtLocation": {
                            "city": "Long Beach",
                            "courtLocationId": "COLO8XVisBxabAo4Qb",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=CourtLocation%3A%28courtLocationId%3A%22COLO8XVisBxabAo4Qb%22%29",
                            "courtsForCourtLocationAPI": "https://enterpriseapi.unicourt.com/masterData/courtLocation/COLO8XVisBxabAo4Qb/courts",
                            "createdDate": "2022-07-08T05:50:08+00:00",
                            "name": "Governor George Deukmejian Courthouse",
                            "object": "CourtLocation",
                            "stateName": "California",
                            "streetAddress1": "275 Magnolia",
                            "streetAddress2": null
                          },
                          "object": "CaseCountAnalyticsByCourtLocation"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 77993,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCHjByH49U3NNf2R",
                          "court": {
                            "additionalLevels": null,
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTV4vCEaKrhystBz",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTV4vCEaKrhystBz%22%29",
                            "courtSystemId": "COSYACHBdMewtaG5DY",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:50:06+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/jurisdictionGeo",
                            "name": "Los Angeles County Superior Court",
                            "nameAka": "Los Angeles County Superior Court of California",
                            "object": "Court",
                            "system": "California Superior Courts",
                            "type": "State"
                          },
                          "courtLocation": {
                            "city": "Los Angeles",
                            "courtLocationId": "COLOF2HEMwomMD5Bcx",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=CourtLocation%3A%28courtLocationId%3A%22COLOF2HEMwomMD5Bcx%22%29",
                            "courtsForCourtLocationAPI": "https://enterpriseapi.unicourt.com/masterData/courtLocation/COLOF2HEMwomMD5Bcx/courts",
                            "createdDate": "2022-07-08T05:50:09+00:00",
                            "name": "Central Civil West Courthouse",
                            "object": "CourtLocation",
                            "stateName": "California",
                            "streetAddress1": "600 South Commonwealth Ave",
                            "streetAddress2": null
                          },
                          "object": "CaseCountAnalyticsByCourtLocation"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 77806,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCL7zWbRusvWyhM9",
                          "court": {
                            "additionalLevels": null,
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTV4vCEaKrhystBz",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTV4vCEaKrhystBz%22%29",
                            "courtSystemId": "COSYACHBdMewtaG5DY",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:50:06+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/jurisdictionGeo",
                            "name": "Los Angeles County Superior Court",
                            "nameAka": "Los Angeles County Superior Court of California",
                            "object": "Court",
                            "system": "California Superior Courts",
                            "type": "State"
                          },
                          "courtLocation": {
                            "city": "Compton",
                            "courtLocationId": "COLOK7frMgqJiF8KcM",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=CourtLocation%3A%28courtLocationId%3A%22COLOK7frMgqJiF8KcM%22%29",
                            "courtsForCourtLocationAPI": "https://enterpriseapi.unicourt.com/masterData/courtLocation/COLOK7frMgqJiF8KcM/courts",
                            "createdDate": "2022-07-08T05:50:07+00:00",
                            "name": "Compton Courthouse",
                            "object": "CourtLocation",
                            "stateName": "California",
                            "streetAddress1": "200 West Compton Blvd",
                            "streetAddress2": null
                          },
                          "object": "CaseCountAnalyticsByCourtLocation"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 73479,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCmtiDPZfxynTUJp",
                          "court": {
                            "additionalLevels": null,
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTV4vCEaKrhystBz",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTV4vCEaKrhystBz%22%29",
                            "courtSystemId": "COSYACHBdMewtaG5DY",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:50:06+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/jurisdictionGeo",
                            "name": "Los Angeles County Superior Court",
                            "nameAka": "Los Angeles County Superior Court of California",
                            "object": "Court",
                            "system": "California Superior Courts",
                            "type": "State"
                          },
                          "courtLocation": {
                            "city": "Downey",
                            "courtLocationId": "COLOh3u7ExTwiNPoZX",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=CourtLocation%3A%28courtLocationId%3A%22COLOh3u7ExTwiNPoZX%22%29",
                            "courtsForCourtLocationAPI": "https://enterpriseapi.unicourt.com/masterData/courtLocation/COLOh3u7ExTwiNPoZX/courts",
                            "createdDate": "2022-07-08T05:50:07+00:00",
                            "name": "Downey Courthouse",
                            "object": "CourtLocation",
                            "stateName": "California",
                            "streetAddress1": "7500 East Imperial Highway",
                            "streetAddress2": null
                          },
                          "object": "CaseCountAnalyticsByCourtLocation"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 70454,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC26M9WSM2jynb5D",
                          "court": {
                            "additionalLevels": null,
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTV4vCEaKrhystBz",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTV4vCEaKrhystBz%22%29",
                            "courtSystemId": "COSYACHBdMewtaG5DY",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:50:06+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/jurisdictionGeo",
                            "name": "Los Angeles County Superior Court",
                            "nameAka": "Los Angeles County Superior Court of California",
                            "object": "Court",
                            "system": "California Superior Courts",
                            "type": "State"
                          },
                          "courtLocation": {
                            "city": "Los Angeles",
                            "courtLocationId": "COLO6dwmsnh7bzM6oC",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=CourtLocation%3A%28courtLocationId%3A%22COLO6dwmsnh7bzM6oC%22%29",
                            "courtsForCourtLocationAPI": "https://enterpriseapi.unicourt.com/masterData/courtLocation/COLO6dwmsnh7bzM6oC/courts",
                            "createdDate": "2022-07-08T05:50:08+00:00",
                            "name": "Central Arraignment Courthouse",
                            "object": "CourtLocation",
                            "stateName": "California",
                            "streetAddress1": "429 Bauchet St.",
                            "streetAddress2": null
                          },
                          "object": "CaseCountAnalyticsByCourtLocation"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 65488,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCD3NzbSrKSQe7ii",
                          "court": {
                            "additionalLevels": null,
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTV4vCEaKrhystBz",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTV4vCEaKrhystBz%22%29",
                            "courtSystemId": "COSYACHBdMewtaG5DY",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:50:06+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/jurisdictionGeo",
                            "name": "Los Angeles County Superior Court",
                            "nameAka": "Los Angeles County Superior Court of California",
                            "object": "Court",
                            "system": "California Superior Courts",
                            "type": "State"
                          },
                          "courtLocation": {
                            "city": "Pasadena",
                            "courtLocationId": "COLOZpjsm3Xnn47Qu7",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=CourtLocation%3A%28courtLocationId%3A%22COLOZpjsm3Xnn47Qu7%22%29",
                            "courtsForCourtLocationAPI": "https://enterpriseapi.unicourt.com/masterData/courtLocation/COLOZpjsm3Xnn47Qu7/courts",
                            "createdDate": "2022-07-08T05:50:09+00:00",
                            "name": "Pasadena Courthouse",
                            "object": "CourtLocation",
                            "stateName": "California",
                            "streetAddress1": "300 East Walnut Ave",
                            "streetAddress2": null
                          },
                          "object": "CaseCountAnalyticsByCourtLocation"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 60015,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCQHfQp2GLDzCko5",
                          "court": {
                            "additionalLevels": null,
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTV4vCEaKrhystBz",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTV4vCEaKrhystBz%22%29",
                            "courtSystemId": "COSYACHBdMewtaG5DY",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:50:06+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/jurisdictionGeo",
                            "name": "Los Angeles County Superior Court",
                            "nameAka": "Los Angeles County Superior Court of California",
                            "object": "Court",
                            "system": "California Superior Courts",
                            "type": "State"
                          },
                          "courtLocation": {
                            "city": "West Covina",
                            "courtLocationId": "COLON8Ho6q4SpwBBNS",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=CourtLocation%3A%28courtLocationId%3A%22COLON8Ho6q4SpwBBNS%22%29",
                            "courtsForCourtLocationAPI": "https://enterpriseapi.unicourt.com/masterData/courtLocation/COLON8Ho6q4SpwBBNS/courts",
                            "createdDate": "2022-07-08T05:50:10+00:00",
                            "name": "West Covina Courthouse",
                            "object": "CourtLocation",
                            "stateName": "California",
                            "streetAddress1": "1427 West Covina Parkway",
                            "streetAddress2": null
                          },
                          "object": "CaseCountAnalyticsByCourtLocation"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 58362,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCSY7Wkk4KVhAPUe",
                          "court": {
                            "additionalLevels": null,
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTV4vCEaKrhystBz",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTV4vCEaKrhystBz%22%29",
                            "courtSystemId": "COSYACHBdMewtaG5DY",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:50:06+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/jurisdictionGeo",
                            "name": "Los Angeles County Superior Court",
                            "nameAka": "Los Angeles County Superior Court of California",
                            "object": "Court",
                            "system": "California Superior Courts",
                            "type": "State"
                          },
                          "courtLocation": {
                            "city": "Pomona",
                            "courtLocationId": "COLO6vjBS9oznhJ3SW",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=CourtLocation%3A%28courtLocationId%3A%22COLO6vjBS9oznhJ3SW%22%29",
                            "courtsForCourtLocationAPI": "https://enterpriseapi.unicourt.com/masterData/courtLocation/COLO6vjBS9oznhJ3SW/courts",
                            "createdDate": "2022-07-08T05:50:09+00:00",
                            "name": "Pomona Courthouse South",
                            "object": "CourtLocation",
                            "stateName": "California",
                            "streetAddress1": "400 Civic Center Plaza",
                            "streetAddress2": null
                          },
                          "object": "CaseCountAnalyticsByCourtLocation"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 55630,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCQEVY3Y3pdYbsWu",
                          "court": {
                            "additionalLevels": null,
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTV4vCEaKrhystBz",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTV4vCEaKrhystBz%22%29",
                            "courtSystemId": "COSYACHBdMewtaG5DY",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:50:06+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/jurisdictionGeo",
                            "name": "Los Angeles County Superior Court",
                            "nameAka": "Los Angeles County Superior Court of California",
                            "object": "Court",
                            "system": "California Superior Courts",
                            "type": "State"
                          },
                          "courtLocation": {
                            "city": "Inglewood",
                            "courtLocationId": "COLO5EQDkQEeTCajLw",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=CourtLocation%3A%28courtLocationId%3A%22COLO5EQDkQEeTCajLw%22%29",
                            "courtsForCourtLocationAPI": "https://enterpriseapi.unicourt.com/masterData/courtLocation/COLO5EQDkQEeTCajLw/courts",
                            "createdDate": "2022-07-08T05:50:07+00:00",
                            "name": "Inglewood Courthouse",
                            "object": "CourtLocation",
                            "stateName": "California",
                            "streetAddress1": "One Regent Street",
                            "streetAddress2": null
                          },
                          "object": "CaseCountAnalyticsByCourtLocation"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 54298,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC7a5B5eJYWy9zk7",
                          "court": {
                            "additionalLevels": null,
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTV4vCEaKrhystBz",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTV4vCEaKrhystBz%22%29",
                            "courtSystemId": "COSYACHBdMewtaG5DY",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:50:06+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/jurisdictionGeo",
                            "name": "Los Angeles County Superior Court",
                            "nameAka": "Los Angeles County Superior Court of California",
                            "object": "Court",
                            "system": "California Superior Courts",
                            "type": "State"
                          },
                          "courtLocation": {
                            "city": "Bellflower",
                            "courtLocationId": "COLOWexLChQDe8XBsU",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=CourtLocation%3A%28courtLocationId%3A%22COLOWexLChQDe8XBsU%22%29",
                            "courtsForCourtLocationAPI": "https://enterpriseapi.unicourt.com/masterData/courtLocation/COLOWexLChQDe8XBsU/courts",
                            "createdDate": "2022-07-08T05:50:07+00:00",
                            "name": "Bellflower Courthouse",
                            "object": "CourtLocation",
                            "stateName": "California",
                            "streetAddress1": "10025 East Flower Street",
                            "streetAddress2": null
                          },
                          "object": "CaseCountAnalyticsByCourtLocation"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 54291,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCntFLXyEfLYgB8Z",
                          "court": {
                            "additionalLevels": null,
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTV4vCEaKrhystBz",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTV4vCEaKrhystBz%22%29",
                            "courtSystemId": "COSYACHBdMewtaG5DY",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:50:06+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/jurisdictionGeo",
                            "name": "Los Angeles County Superior Court",
                            "nameAka": "Los Angeles County Superior Court of California",
                            "object": "Court",
                            "system": "California Superior Courts",
                            "type": "State"
                          },
                          "courtLocation": {
                            "city": "Los Angeles",
                            "courtLocationId": "COLOQjgHKVS2sYNQCp",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=CourtLocation%3A%28courtLocationId%3A%22COLOQjgHKVS2sYNQCp%22%29",
                            "courtsForCourtLocationAPI": "https://enterpriseapi.unicourt.com/masterData/courtLocation/COLOQjgHKVS2sYNQCp/courts",
                            "createdDate": "2022-07-08T05:50:08+00:00",
                            "name": "Clara Shortridge Foltz Criminal Justice Center",
                            "object": "CourtLocation",
                            "stateName": "California",
                            "streetAddress1": "210 West Temple Street",
                            "streetAddress2": null
                          },
                          "object": "CaseCountAnalyticsByCourtLocation"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 42771,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCGuGps38TXWN2PG",
                          "court": {
                            "additionalLevels": null,
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTV4vCEaKrhystBz",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTV4vCEaKrhystBz%22%29",
                            "courtSystemId": "COSYACHBdMewtaG5DY",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:50:06+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/jurisdictionGeo",
                            "name": "Los Angeles County Superior Court",
                            "nameAka": "Los Angeles County Superior Court of California",
                            "object": "Court",
                            "system": "California Superior Courts",
                            "type": "State"
                          },
                          "courtLocation": {
                            "city": "Torrance",
                            "courtLocationId": "COLOXupiWaZSFHH3EU",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=CourtLocation%3A%28courtLocationId%3A%22COLOXupiWaZSFHH3EU%22%29",
                            "courtsForCourtLocationAPI": "https://enterpriseapi.unicourt.com/masterData/courtLocation/COLOXupiWaZSFHH3EU/courts",
                            "createdDate": "2022-07-08T05:50:10+00:00",
                            "name": "Torrance Courthouse",
                            "object": "CourtLocation",
                            "stateName": "California",
                            "streetAddress1": "825 Maple Ave",
                            "streetAddress2": null
                          },
                          "object": "CaseCountAnalyticsByCourtLocation"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 36671,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC4NDpgGLtb2Sne3",
                          "court": {
                            "additionalLevels": null,
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTV4vCEaKrhystBz",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTV4vCEaKrhystBz%22%29",
                            "courtSystemId": "COSYACHBdMewtaG5DY",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:50:06+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/jurisdictionGeo",
                            "name": "Los Angeles County Superior Court",
                            "nameAka": "Los Angeles County Superior Court of California",
                            "object": "Court",
                            "system": "California Superior Courts",
                            "type": "State"
                          },
                          "courtLocation": {
                            "city": "Los Angeles",
                            "courtLocationId": "COLO76pSAJpBZZ6KuK",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=CourtLocation%3A%28courtLocationId%3A%22COLO76pSAJpBZZ6KuK%22%29",
                            "courtsForCourtLocationAPI": "https://enterpriseapi.unicourt.com/masterData/courtLocation/COLO76pSAJpBZZ6KuK/courts",
                            "createdDate": "2022-07-08T05:50:08+00:00",
                            "name": "Metropolitan Courthouse",
                            "object": "CourtLocation",
                            "stateName": "California",
                            "streetAddress1": "1945 South Hill Street",
                            "streetAddress2": null
                          },
                          "object": "CaseCountAnalyticsByCourtLocation"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 35957,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC7nFcVcrJe2YGk9",
                          "court": {
                            "additionalLevels": null,
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTV4vCEaKrhystBz",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTV4vCEaKrhystBz%22%29",
                            "courtSystemId": "COSYACHBdMewtaG5DY",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:50:06+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/jurisdictionGeo",
                            "name": "Los Angeles County Superior Court",
                            "nameAka": "Los Angeles County Superior Court of California",
                            "object": "Court",
                            "system": "California Superior Courts",
                            "type": "State"
                          },
                          "courtLocation": {
                            "city": "El Monte",
                            "courtLocationId": "COLODGUV3nDYcnD4wo",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=CourtLocation%3A%28courtLocationId%3A%22COLODGUV3nDYcnD4wo%22%29",
                            "courtsForCourtLocationAPI": "https://enterpriseapi.unicourt.com/masterData/courtLocation/COLODGUV3nDYcnD4wo/courts",
                            "createdDate": "2022-07-08T05:50:07+00:00",
                            "name": "El Monte Courthouse",
                            "object": "CourtLocation",
                            "stateName": "California",
                            "streetAddress1": "11234 East Valley Blvd",
                            "streetAddress2": null
                          },
                          "object": "CaseCountAnalyticsByCourtLocation"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 31205,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCEoVjiBqN9wv3sk",
                          "court": {
                            "additionalLevels": null,
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTV4vCEaKrhystBz",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTV4vCEaKrhystBz%22%29",
                            "courtSystemId": "COSYACHBdMewtaG5DY",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:50:06+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/jurisdictionGeo",
                            "name": "Los Angeles County Superior Court",
                            "nameAka": "Los Angeles County Superior Court of California",
                            "object": "Court",
                            "system": "California Superior Courts",
                            "type": "State"
                          },
                          "courtLocation": {
                            "city": "Santa Monica",
                            "courtLocationId": "COLOdxXZEDNgP8iYAn",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=CourtLocation%3A%28courtLocationId%3A%22COLOdxXZEDNgP8iYAn%22%29",
                            "courtsForCourtLocationAPI": "https://enterpriseapi.unicourt.com/masterData/courtLocation/COLOdxXZEDNgP8iYAn/courts",
                            "createdDate": "2022-07-08T05:50:09+00:00",
                            "name": "Santa Monica Courthouse",
                            "object": "CourtLocation",
                            "stateName": "California",
                            "streetAddress1": "1725 Main Street",
                            "streetAddress2": null
                          },
                          "object": "CaseCountAnalyticsByCourtLocation"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 30162,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCUFt5mgHBUyFbkH",
                          "court": {
                            "additionalLevels": null,
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTV4vCEaKrhystBz",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTV4vCEaKrhystBz%22%29",
                            "courtSystemId": "COSYACHBdMewtaG5DY",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:50:06+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/jurisdictionGeo",
                            "name": "Los Angeles County Superior Court",
                            "nameAka": "Los Angeles County Superior Court of California",
                            "object": "Court",
                            "system": "California Superior Courts",
                            "type": "State"
                          },
                          "courtLocation": {
                            "city": "Alhambra",
                            "courtLocationId": "COLOdUi4dMLYMemUPd",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=CourtLocation%3A%28courtLocationId%3A%22COLOdUi4dMLYMemUPd%22%29",
                            "courtsForCourtLocationAPI": "https://enterpriseapi.unicourt.com/masterData/courtLocation/COLOdUi4dMLYMemUPd/courts",
                            "createdDate": "2022-07-08T05:50:06+00:00",
                            "name": "Alhambra Courthouse",
                            "object": "CourtLocation",
                            "stateName": "California",
                            "streetAddress1": "150 West Commonwealth Ave",
                            "streetAddress2": null
                          },
                          "object": "CaseCountAnalyticsByCourtLocation"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 30029,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCSJJS3MXyuCGs3t",
                          "court": {
                            "additionalLevels": null,
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTV4vCEaKrhystBz",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTV4vCEaKrhystBz%22%29",
                            "courtSystemId": "COSYACHBdMewtaG5DY",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:50:06+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/jurisdictionGeo",
                            "name": "Los Angeles County Superior Court",
                            "nameAka": "Los Angeles County Superior Court of California",
                            "object": "Court",
                            "system": "California Superior Courts",
                            "type": "State"
                          },
                          "courtLocation": {
                            "city": "Los Angeles",
                            "courtLocationId": "COLOE7vjzasRZ6nHjR",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=CourtLocation%3A%28courtLocationId%3A%22COLOE7vjzasRZ6nHjR%22%29",
                            "courtsForCourtLocationAPI": "https://enterpriseapi.unicourt.com/masterData/courtLocation/COLOE7vjzasRZ6nHjR/courts",
                            "createdDate": "2022-07-08T05:50:08+00:00",
                            "name": "East Los Angeles Courthouse",
                            "object": "CourtLocation",
                            "stateName": "California",
                            "streetAddress1": "4848 East Civic Center Way",
                            "streetAddress2": null
                          },
                          "object": "CaseCountAnalyticsByCourtLocation"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 28602,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCD5AybNbEHf8zZ2",
                          "court": {
                            "additionalLevels": null,
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTV4vCEaKrhystBz",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTV4vCEaKrhystBz%22%29",
                            "courtSystemId": "COSYACHBdMewtaG5DY",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:50:06+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/jurisdictionGeo",
                            "name": "Los Angeles County Superior Court",
                            "nameAka": "Los Angeles County Superior Court of California",
                            "object": "Court",
                            "system": "California Superior Courts",
                            "type": "State"
                          },
                          "courtLocation": {
                            "city": "Glendale",
                            "courtLocationId": "COLOFHf7RmSLRML7DQ",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=CourtLocation%3A%28courtLocationId%3A%22COLOFHf7RmSLRML7DQ%22%29",
                            "courtsForCourtLocationAPI": "https://enterpriseapi.unicourt.com/masterData/courtLocation/COLOFHf7RmSLRML7DQ/courts",
                            "createdDate": "2022-07-08T05:50:07+00:00",
                            "name": "Glendale Courthouse",
                            "object": "CourtLocation",
                            "stateName": "California",
                            "streetAddress1": "600 East Broadway",
                            "streetAddress2": null
                          },
                          "object": "CaseCountAnalyticsByCourtLocation"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 25324,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC7ZvNaN9ptBZL9N",
                          "court": {
                            "additionalLevels": null,
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTV4vCEaKrhystBz",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTV4vCEaKrhystBz%22%29",
                            "courtSystemId": "COSYACHBdMewtaG5DY",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:50:06+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/jurisdictionGeo",
                            "name": "Los Angeles County Superior Court",
                            "nameAka": "Los Angeles County Superior Court of California",
                            "object": "Court",
                            "system": "California Superior Courts",
                            "type": "State"
                          },
                          "courtLocation": {
                            "city": "Burbank",
                            "courtLocationId": "COLOa2VJGwTxEs5su2",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=CourtLocation%3A%28courtLocationId%3A%22COLOa2VJGwTxEs5su2%22%29",
                            "courtsForCourtLocationAPI": "https://enterpriseapi.unicourt.com/masterData/courtLocation/COLOa2VJGwTxEs5su2/courts",
                            "createdDate": "2022-07-08T05:50:07+00:00",
                            "name": "Burbank Courthouse",
                            "object": "CourtLocation",
                            "stateName": "California",
                            "streetAddress1": "300 East Olive Ave",
                            "streetAddress2": null
                          },
                          "object": "CaseCountAnalyticsByCourtLocation"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 24976,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCBLwUBe78vjo3wm",
                          "court": {
                            "additionalLevels": null,
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTV4vCEaKrhystBz",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTV4vCEaKrhystBz%22%29",
                            "courtSystemId": "COSYACHBdMewtaG5DY",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:50:06+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/jurisdictionGeo",
                            "name": "Los Angeles County Superior Court",
                            "nameAka": "Los Angeles County Superior Court of California",
                            "object": "Court",
                            "system": "California Superior Courts",
                            "type": "State"
                          },
                          "courtLocation": {
                            "city": "San Fernando",
                            "courtLocationId": "COLOUU8dHgcwUXmNGE",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=CourtLocation%3A%28courtLocationId%3A%22COLOUU8dHgcwUXmNGE%22%29",
                            "courtsForCourtLocationAPI": "https://enterpriseapi.unicourt.com/masterData/courtLocation/COLOUU8dHgcwUXmNGE/courts",
                            "createdDate": "2022-07-08T05:50:09+00:00",
                            "name": "San Fernando Courthouse",
                            "object": "CourtLocation",
                            "stateName": "California",
                            "streetAddress1": "900 3Rd Street",
                            "streetAddress2": null
                          },
                          "object": "CaseCountAnalyticsByCourtLocation"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 23382,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCZgYpsmAVYnrd9T",
                          "court": {
                            "additionalLevels": null,
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTV4vCEaKrhystBz",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTV4vCEaKrhystBz%22%29",
                            "courtSystemId": "COSYACHBdMewtaG5DY",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:50:06+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/jurisdictionGeo",
                            "name": "Los Angeles County Superior Court",
                            "nameAka": "Los Angeles County Superior Court of California",
                            "object": "Court",
                            "system": "California Superior Courts",
                            "type": "State"
                          },
                          "courtLocation": {
                            "city": "Whittier",
                            "courtLocationId": "COLOXeozRzUhBJqozx",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=CourtLocation%3A%28courtLocationId%3A%22COLOXeozRzUhBJqozx%22%29",
                            "courtsForCourtLocationAPI": "https://enterpriseapi.unicourt.com/masterData/courtLocation/COLOXeozRzUhBJqozx/courts",
                            "createdDate": "2022-07-08T05:50:10+00:00",
                            "name": "Whittier Courthouse",
                            "object": "CourtLocation",
                            "stateName": "California",
                            "streetAddress1": "7339 South Painter Ave",
                            "streetAddress2": null
                          },
                          "object": "CaseCountAnalyticsByCourtLocation"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 22731,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCRkR9S4bbhdj8Qe",
                          "court": {
                            "additionalLevels": null,
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTV4vCEaKrhystBz",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTV4vCEaKrhystBz%22%29",
                            "courtSystemId": "COSYACHBdMewtaG5DY",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:50:06+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/jurisdictionGeo",
                            "name": "Los Angeles County Superior Court",
                            "nameAka": "Los Angeles County Superior Court of California",
                            "object": "Court",
                            "system": "California Superior Courts",
                            "type": "State"
                          },
                          "courtLocation": {
                            "city": "Los Angeles",
                            "courtLocationId": "COLOV75AKgqMqnfVhM",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=CourtLocation%3A%28courtLocationId%3A%22COLOV75AKgqMqnfVhM%22%29",
                            "courtsForCourtLocationAPI": "https://enterpriseapi.unicourt.com/masterData/courtLocation/COLOV75AKgqMqnfVhM/courts",
                            "createdDate": "2022-07-08T05:50:08+00:00",
                            "name": "Airport Courthouse",
                            "object": "CourtLocation",
                            "stateName": "California",
                            "streetAddress1": "11701 South La Cienega Blvd",
                            "streetAddress2": null
                          },
                          "object": "CaseCountAnalyticsByCourtLocation"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 4334,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCbWAfNivJcCCYzS",
                          "court": {
                            "additionalLevels": null,
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTV4vCEaKrhystBz",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTV4vCEaKrhystBz%22%29",
                            "courtSystemId": "COSYACHBdMewtaG5DY",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:50:06+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/jurisdictionGeo",
                            "name": "Los Angeles County Superior Court",
                            "nameAka": "Los Angeles County Superior Court of California",
                            "object": "Court",
                            "system": "California Superior Courts",
                            "type": "State"
                          },
                          "courtLocation": {
                            "city": "Santa Clarita",
                            "courtLocationId": "COLOCTTk9MXvnmqVaD",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=CourtLocation%3A%28courtLocationId%3A%22COLOCTTk9MXvnmqVaD%22%29",
                            "courtsForCourtLocationAPI": "https://enterpriseapi.unicourt.com/masterData/courtLocation/COLOCTTk9MXvnmqVaD/courts",
                            "createdDate": "2022-07-08T05:50:09+00:00",
                            "name": "Santa Clarita Courthouse",
                            "object": "CourtLocation",
                            "stateName": "California",
                            "streetAddress1": "23747 West Valencia Blvd",
                            "streetAddress2": null
                          },
                          "object": "CaseCountAnalyticsByCourtLocation"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 2768,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCfu54ka93ZaiYDH",
                          "court": {
                            "additionalLevels": null,
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTV4vCEaKrhystBz",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTV4vCEaKrhystBz%22%29",
                            "courtSystemId": "COSYACHBdMewtaG5DY",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:50:06+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/jurisdictionGeo",
                            "name": "Los Angeles County Superior Court",
                            "nameAka": "Los Angeles County Superior Court of California",
                            "object": "Court",
                            "system": "California Superior Courts",
                            "type": "State"
                          },
                          "courtLocation": {
                            "city": "Avalon",
                            "courtLocationId": "COLOkPVMAuWSr7eCWw",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=CourtLocation%3A%28courtLocationId%3A%22COLOkPVMAuWSr7eCWw%22%29",
                            "courtsForCourtLocationAPI": "https://enterpriseapi.unicourt.com/masterData/courtLocation/COLOkPVMAuWSr7eCWw/courts",
                            "createdDate": "2022-07-08T05:50:06+00:00",
                            "name": "Catalina Courthouse",
                            "object": "CourtLocation",
                            "stateName": "California",
                            "streetAddress1": "215 Summer Avenue",
                            "streetAddress2": null
                          },
                          "object": "CaseCountAnalyticsByCourtLocation"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 2703,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCUQzWzDgMGDbNDG",
                          "court": {
                            "additionalLevels": null,
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTV4vCEaKrhystBz",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTV4vCEaKrhystBz%22%29",
                            "courtSystemId": "COSYACHBdMewtaG5DY",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:50:06+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/jurisdictionGeo",
                            "name": "Los Angeles County Superior Court",
                            "nameAka": "Los Angeles County Superior Court of California",
                            "object": "Court",
                            "system": "California Superior Courts",
                            "type": "State"
                          },
                          "courtLocation": {
                            "city": "Van Nuys",
                            "courtLocationId": "COLONsHWtFkfA9mmaN",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=CourtLocation%3A%28courtLocationId%3A%22COLONsHWtFkfA9mmaN%22%29",
                            "courtsForCourtLocationAPI": "https://enterpriseapi.unicourt.com/masterData/courtLocation/COLONsHWtFkfA9mmaN/courts",
                            "createdDate": "2022-07-08T05:50:10+00:00",
                            "name": "Van Nuys Courthouse West",
                            "object": "CourtLocation",
                            "stateName": "California",
                            "streetAddress1": "14400 Erwin Street Mall",
                            "streetAddress2": null
                          },
                          "object": "CaseCountAnalyticsByCourtLocation"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 634,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCm6aiwUogRsi5bX",
                          "court": {
                            "additionalLevels": null,
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTV4vCEaKrhystBz",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/courtLocations",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=Court%3A%28courtId%3A%22CORTV4vCEaKrhystBz%22%29",
                            "courtSystemId": "COSYACHBdMewtaG5DY",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:50:06+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/jurisdictionGeo",
                            "name": "Los Angeles County Superior Court",
                            "nameAka": "Los Angeles County Superior Court of California",
                            "object": "Court",
                            "system": "California Superior Courts",
                            "type": "State"
                          },
                          "courtLocation": {
                            "city": "Beverly Hills",
                            "courtLocationId": "COLOFJc7guY6VMAJcu",
                            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=CourtLocation%3A%28courtLocationId%3A%22COLOFJc7guY6VMAJcu%22%29",
                            "courtsForCourtLocationAPI": "https://enterpriseapi.unicourt.com/masterData/courtLocation/COLOFJc7guY6VMAJcu/courts",
                            "createdDate": "2022-07-08T05:50:07+00:00",
                            "name": "Beverly Hills Courthouse",
                            "object": "CourtLocation",
                            "stateName": "California",
                            "streetAddress1": "9355 Burton Way",
                            "streetAddress2": null
                          },
                          "object": "CaseCountAnalyticsByCourtLocation"
                        }
                      ],
                      "totalCaseCount": 2279624,
                      "totalCourtLocationCount": 32,
                      "totalPages": 1
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/CaseCountAnalyticsByCourtLocationResponse"
                }
              }
            },
            "description": "OK"
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "sample400AnalyticsQuery": {
                    "value": {
                      "code": "UN400",
                      "details": "caseFiledDate is not in a required format",
                      "message": "INVALID_INPUT",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Bad Request"
          },
          "404": {
            "content": {
              "application/json": {
                "examples": {
                  "sample404AnalyticsQuery": {
                    "value": {
                      "code": "UN404",
                      "details": "caseTypeId not found",
                      "message": "RESOURCE_NOT_FOUND",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Not Found"
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "example-1": {
                    "value": {
                      "code": "UN500",
                      "details": "Has encountered a situation which needs to be handled.",
                      "message": "INTERNAL_SERVER_ERROR",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Internal Server Error"
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Case Count Analytics by Court Location.",
        "tags": [
          "Case Analytics API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [],
      "x-api-name": "CaseCountAnalyticsByCourtLocationAPI",
      "x-unicourt-tag": "CaseAnalyticsAPIs"
    },
    "/caseCountAnalyticsByCourtSystem": {
      "get": {
        "description": "Get Case Count Analytics grouped by Court System.\n## Terms and Connectors\n| Connector | Schema   | Description  | Example |\n| ------| ------| ------|------|\n| **AND** ||Find analytics containing all connected terms. The word AND does not have to be capitalized.|**courtId:\"CORTV4vCEaKrhystBz\" AND courtLocationId:\"COLO6b82CkRqS846hx\"**|\n| **IN()** || Allows you to specify multiple values, for a limit of up to 10.| **courtId IN (\"CORTKQiA4LJuv54tEj\",\"CORTV4vCEaKrhystBz\")**|\n| **courtId** | Multiple Ids Allowed |Find Analytics for a particular Court Object. | **courtId:\"CORTV4vCEaKrhystBz\"** |\n| **courtSystemId** | Multiple Ids Allowed |Find Analytics for a particular Court System Object. | **courtSystemId:\"COSYACHBdMewtaG5DY\"** |\n| **courtTypeId** | Multiple Ids Allowed |Find Analytics for a particular Court Type Object. | **courtTypeId:\"COTPm8jjc2PAydpFhq\"** |\n| **courtLocationId** | Multiple Ids Allowed |Find Analytics for a particular Court Location Object. | **courtLocationId:\"COLO6b82CkRqS846hx\"** |\n| **caseTypeId** | Multiple Ids Allowed |Find Analytics for a particular Case Type Object. | **caseTypeId:\"CTYPATMYyaJekdgj2c\"** |\n| **caseTypeGroupId** | Multiple Ids Allowed |Find Analytics for a particular Case Type Group Object. | **caseTypeGroupId:\"CTYG8gZ6hPRKhhYi4Y\"** |\n| **areaOfLawId** | Multiple Ids Allowed |Find Analytics for a particular Area Of Law Object. | **areaOfLawId:\"AOFL2UxEWfVmTPMyqf\"** |\n| **caseClassId** | Multiple Ids Allowed |Find Analytics for a particular Case Class Category Object. | **caseClassId:\"CSCLNjbKTN7Yfo2wdb\"** |\n| **partyRoleId** | Multiple Ids Allowed |Find Analytics for a particular Party Type Object. | **partyRoleId:\"PTYRiP8nMgPxBsPc5i\"** |\n| **partyRoleGroupId** | Multiple Ids Allowed |Find Analytics for a particular Party Type Group Object. | **partyRoleGroupId:\"PTYGBnjxbx6tKNfVEP\"** |\n| **attorneyPartyRoleId** | Multiple Ids Allowed |Find Analytics for a particular Attorney Party Type Object. | **attorneyPartyRoleId:\"PTYRiP8nMgPxBsPc5i\"** |\n| **attorneyPartyRoleGroupId** | Multiple Ids Allowed |Find Analytics for a particular Attorney Party Type Group Object. | **attorneyPartyRoleGroupId:\"PTYGBnjxbx6tKNfVEP\"** |\n| **normAttorneyId** | Multiple Ids Allowed  |Find Analytics for a particular norm Attorney Object. | **normAttorneyId:\"NATYfwmXwRHS279WPY\"** |\n| **normPartyId** | Multiple Ids Allowed |Find Analytics for a particular Party Object. | **normPartyId:\"NORGrPmQyLdx9NGHcT\"** |\n| **normLawFirmId** | Multiple Ids Allowed |Find Analytics for a particular Norm LawFirm Object. | **normLawFirmId:\"NORGrPmQyLdx9NGHcT\"** |\n| **normJudgeId** | Multiple Ids Allowed |Find Analytics for a particular Judge Object. | **normJudgeId:\"NJUDT7jCZyFNeLGpRq\"** |\n| **caseFiledDate** | Single Allowed  |Find Analytics within a particular date range. | **caseFiledDate:[2018-05-08T00:00:00+00:00TO2019-05-08T00:00:00+00:00]** |\n| **JurisdictionGeo** | Multiple filters Allowed  |Find Analytics within a particular Jurisdiction Geo. | **(JurisdictionGeo:(state:\"California\"))** |\n| **confidenceScore** | Single Allowed |Find Analytics for a given ConfidenceScore  | **confidenceScore>=0.5** |\n| **bestMatch** | Single Allowed |True if the normEntity has the highest Confidence Score of all possible normEntities | **bestMatch:true** |\n<br>\n## Example Query\nQuery to get case count grouped by court system of all cases with case type id CTYPATMYyaJekdgj2c and filed between Jan 1st, 2017 to Nov 30th,2021<br>\nq=caseTypeId:\"CTYPATMYyaJekdgj2c\" AND caseFiledDate:[2017-01-01T00:00:00+00:00TO2021-11-30T00:00:00+00:00]\n",
        "operationId": "getCaseCountAnalyticsByCourtSystem",
        "parameters": [
          {
            "description": "The URL encoded query you are searching for. The query can be as simple as a keyword, but supports many additional options and filters. All options are documented above.",
            "examples": {
              "HTTP200-modifiedValue": {
                "summary": "Default value",
                "value": ""
              },
              "HTTP200-sampleAnalyticsQuery": {
                "summary": "sampleAnalyticsQuery",
                "value": "caseTypeId:\"CTYPATMYyaJekdgj2c\" AND caseFiledDate:[2017-01-01T00:00:00+00:00TO2021-11-30T00:00:00+00:00]"
              },
              "HTTP400-sample400AnalyticsQuery": {
                "summary": "sample400AnalyticsQuery",
                "value": "caseTypeId:\"CTYPATMYyaJekdgj2c\" AND caseFiledDate:[2018-01-01T00:00:00+00:00TO2021-11-3000:00:00+00:00]"
              },
              "HTTP404-sample404AnalyticsQuery": {
                "summary": "sample404AnalyticsQuery",
                "value": "caseTypeId:\"CTYPATMYy1Jekdgj2c\" AND caseFiledDate:[2018-01-01T00:00:00+00:00TO2021-11-30T00:00:00+00:00]"
              }
            },
            "in": "query",
            "name": "q",
            "schema": {
              "maxLength": 2048,
              "nullable": false,
              "type": "string"
            }
          },
          {
            "$ref": "#/components/parameters/AnalyticsPageParam"
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleAnalyticsQuery": {
                    "value": {
                      "nextPageAPI": null,
                      "object": "CaseCountAnalyticsByCourtSystemResponse",
                      "previousPageAPI": null,
                      "results": [
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 1035954,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC5TTz96SQSLttvp",
                          "courtSystem": {
                            "courtSystemId": "COSYACHBdMewtaG5DY",
                            "courtType": "State",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:50:04+00:00",
                            "name": "California Superior Courts",
                            "object": "CourtSystem"
                          },
                          "object": "CaseCountAnalyticsByCourtSystem"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 485001,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC9hkdr3azEW7QPz",
                          "courtSystem": {
                            "courtSystemId": "COSY4vuCtGQeAmdDdN",
                            "courtType": "State",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:50:24+00:00",
                            "name": "Florida County Courts",
                            "object": "CourtSystem"
                          },
                          "object": "CaseCountAnalyticsByCourtSystem"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 480030,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCE8nhVSZMEkSma4",
                          "courtSystem": {
                            "courtSystemId": "COSY53DJ9jCL9U4iUt",
                            "courtType": "State",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:52:00+00:00",
                            "name": "Texas Justice of the Peace Courts",
                            "object": "CourtSystem"
                          },
                          "object": "CaseCountAnalyticsByCourtSystem"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 152205,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCdxrASEzhB5uoYw",
                          "courtSystem": {
                            "courtSystemId": "COSYGzMRVkZDPLotfw",
                            "courtType": "State",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:50:46+00:00",
                            "name": "New York Supreme Courts",
                            "object": "CourtSystem"
                          },
                          "object": "CaseCountAnalyticsByCourtSystem"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 75448,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCGVyrpdPbMfoym3",
                          "courtSystem": {
                            "courtSystemId": "COSY4BQSK7HBZc2ymW",
                            "courtType": "State",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:51:58+00:00",
                            "name": "Texas County Courts",
                            "object": "CourtSystem"
                          },
                          "object": "CaseCountAnalyticsByCourtSystem"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 72256,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC8RT4uQBfXtv8Ao",
                          "courtSystem": {
                            "courtSystemId": "COSYXjbiiAha8b6qW9",
                            "courtType": "State",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:52:00+00:00",
                            "name": "Texas District Courts",
                            "object": "CourtSystem"
                          },
                          "object": "CaseCountAnalyticsByCourtSystem"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 17882,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCezuQWFQUvkogvc",
                          "courtSystem": {
                            "courtSystemId": "COSYJsiQhCtkP6fm8m",
                            "courtType": "State",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-07-08T05:50:15+00:00",
                            "name": "Florida Circuit Courts",
                            "object": "CourtSystem"
                          },
                          "object": "CaseCountAnalyticsByCourtSystem"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 1918,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCH2Hzfh4vXqN8UR",
                          "courtSystem": {
                            "courtSystemId": "COSY8rpkvJ4kMi4ZYD",
                            "courtType": "Federal",
                            "courtTypeId": "COTPLurdwRD5jyKSYb",
                            "createdDate": "2022-07-08T05:49:48+00:00",
                            "name": "U.S. District Courts",
                            "object": "CourtSystem"
                          },
                          "object": "CaseCountAnalyticsByCourtSystem"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 173,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCjZYzK8Fv9QLvKL",
                          "courtSystem": {
                            "courtSystemId": "COSYKbTM5W3zTCNN6j",
                            "courtType": "Federal",
                            "courtTypeId": "COTPLurdwRD5jyKSYb",
                            "createdDate": "2022-07-08T05:49:48+00:00",
                            "name": "U.S. Courts of Appeals",
                            "object": "CourtSystem"
                          },
                          "object": "CaseCountAnalyticsByCourtSystem"
                        }
                      ],
                      "totalCaseCount": 2320867,
                      "totalCourtSystemCount": 9,
                      "totalPages": 1
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/CaseCountAnalyticsByCourtSystemResponse"
                }
              }
            },
            "description": "OK"
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "sample400AnalyticsQuery": {
                    "value": {
                      "code": "UN400",
                      "details": "caseFiledDate is not in a required format",
                      "message": "INVALID_INPUT",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Bad Request"
          },
          "404": {
            "content": {
              "application/json": {
                "examples": {
                  "sample404AnalyticsQuery": {
                    "value": {
                      "code": "UN404",
                      "details": "caseTypeId not found",
                      "message": "RESOURCE_NOT_FOUND",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Not Found"
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "example-1": {
                    "value": {
                      "code": "UN500",
                      "details": "Has encountered a situation which needs to be handled.",
                      "message": "INTERNAL_SERVER_ERROR",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Internal Server Error"
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Case Count Analytics by Court System.",
        "tags": [
          "Case Analytics API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [],
      "x-api-name": "CaseCountAnalyticsByCourtSystemAPI",
      "x-unicourt-tag": "CaseAnalyticsAPIs"
    },
    "/caseCountAnalyticsByCourtType": {
      "get": {
        "description": "Get Case Count Analytics grouped by Court Type.\n## Terms and Connectors\n| Connector | Schema   | Description  | Example |\n| ------| ------| ------|------|\n| **AND** ||Find analytics containing all connected terms. The word AND does not have to be capitalized.|**courtId:\"CORTV4vCEaKrhystBz\" AND courtLocationId:\"COLO6b82CkRqS846hx\"**|\n| **IN()** || Allows you to specify multiple values, for a limit of up to 10.| **courtId IN (\"CORTKQiA4LJuv54tEj\",\"CORTV4vCEaKrhystBz\")**|\n| **courtId** | Multiple Ids Allowed |Find Analytics for a particular Court Object. | **courtId:\"CORTV4vCEaKrhystBz\"** |\n| **courtSystemId** | Multiple Ids Allowed |Find Analytics for a particular Court System Object. | **courtSystemId:\"COSYACHBdMewtaG5DY\"** |\n| **courtTypeId** | Multiple Ids Allowed |Find Analytics for a particular Court Type Object. | **courtTypeId:\"COTPm8jjc2PAydpFhq\"** |\n| **courtLocationId** | Multiple Ids Allowed |Find Analytics for a particular Court Location Object. | **courtLocationId:\"COLO6b82CkRqS846hx\"** |\n| **caseTypeId** | Multiple Ids Allowed |Find Analytics for a particular Case Type Object. | **caseTypeId:\"CTYPATMYyaJekdgj2c\"** |\n| **caseTypeGroupId** | Multiple Ids Allowed |Find Analytics for a particular Case Type Group Object. | **caseTypeGroupId:\"CTYG8gZ6hPRKhhYi4Y\"** |\n| **areaOfLawId** | Multiple Ids Allowed |Find Analytics for a particular Area Of Law Object. | **areaOfLawId:\"AOFL2UxEWfVmTPMyqf\"** |\n| **caseClassId** | Multiple Ids Allowed |Find Analytics for a particular Case Class Category Object. | **caseClassId:\"CSCLNjbKTN7Yfo2wdb\"** |\n| **partyRoleId** | Multiple Ids Allowed |Find Analytics for a particular Party Type Object. | **partyRoleId:\"PTYRiP8nMgPxBsPc5i\"** |\n| **partyRoleGroupId** | Multiple Ids Allowed |Find Analytics for a particular Party Type Group Object. | **partyRoleGroupId:\"PTYGBnjxbx6tKNfVEP\"** |\n| **attorneyPartyRoleId** | Multiple Ids Allowed |Find Analytics for a particular Attorney Party Type Object. | **attorneyPartyRoleId:\"PTYRiP8nMgPxBsPc5i\"** |\n| **attorneyPartyRoleGroupId** | Multiple Ids Allowed |Find Analytics for a particular Attorney Party Type Group Object. | **attorneyPartyRoleGroupId:\"PTYGBnjxbx6tKNfVEP\"** |\n| **normAttorneyId** | Multiple Ids Allowed |Find Analytics for a particular norm Attorney Object. | **normAttorneyId:\"NATYfwmXwRHS279WPY\"** |\n| **normPartyId** | Multiple Ids Allowed |Find Analytics for a particular Party Object. | **normPartyId:\"NORGrPmQyLdx9NGHcT\"** |\n| **normLawFirmId** | Multiple Ids Allowed |Find Analytics for a particular Norm LawFirm Object. | **normLawFirmId:\"NORGrPmQyLdx9NGHcT\"** |\n| **normJudgeId** | Multiple Ids Allowed  |Find Analytics for a particular Judge Object. | **normJudgeId:\"NJUDT7jCZyFNeLGpRq\"** |\n| **caseFiledDate** | Single Allowed   |Find Analytics within a particular date range. | **caseFiledDate:[2018-05-08T00:00:00+00:00TO2019-05-08T00:00:00+00:00]** |\n| **JurisdictionGeo** | Multiple filters Allowed  |Find Analytics within a particular Jurisdiction Geo. | **(JurisdictionGeo:(state:\"California\"))** |\n| **confidenceScore** | Single Allowed |Find Analytics for a given ConfidenceScore  | **confidenceScore>=0.5** |\n| **bestMatch** | Single Allowed |True if the normEntity has the highest Confidence Score of all possible normEntities | **bestMatch:true** |\n<br>\n## Example Query\nQuery to get case count grouped by court type  of all cases with case type id CTYPATMYyaJekdgj2c and filed between Jan 1st, 2017 to Nov 30th,2021<br>\nq=caseTypeId:\"CTYPATMYyaJekdgj2c\" AND caseFiledDate:[2017-01-01T00:00:00+00:00TO2021-11-30T00:00:00+00:00]\n",
        "operationId": "getCaseCountAnalyticsByCourtType",
        "parameters": [
          {
            "description": "The URL encoded query you are searching for. The query can be as simple as a keyword, but supports many additional options and filters. All options are documented above.",
            "examples": {
              "HTTP200-modifiedValue": {
                "summary": "Default value",
                "value": ""
              },
              "HTTP200-sampleAnalyticsQuery": {
                "summary": "sampleAnalyticsQuery",
                "value": "caseTypeId:\"CTYPATMYyaJekdgj2c\" AND caseFiledDate:[2017-01-01T00:00:00+00:00TO2021-11-30T00:00:00+00:00]"
              },
              "HTTP400-sample400AnalyticsQuery": {
                "summary": "sample400AnalyticsQuery",
                "value": "caseTypeId:\"CTYPATMYyaJekdgj2c\" AND caseFiledDate:[2018-01-01T00:00:00+00:00TO2021-11-3000:00:00+00:00]"
              },
              "HTTP404-sample404AnalyticsQuery": {
                "summary": "sample404AnalyticsQuery",
                "value": "caseTypeId:\"CTYPATMYy1Jekdgj2c\" AND caseFiledDate:[2018-01-01T00:00:00+00:00TO2021-11-30T00:00:00+00:00]"
              }
            },
            "in": "query",
            "name": "q",
            "schema": {
              "maxLength": 2048,
              "nullable": false,
              "type": "string"
            }
          },
          {
            "$ref": "#/components/parameters/AnalyticsPageParam"
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleAnalyticsQuery": {
                    "value": {
                      "nextPageAPI": null,
                      "object": "CaseCountAnalyticsByCourtTypeResponse",
                      "previousPageAPI": null,
                      "results": [
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 2318776,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCVHWAR4tr8i53LF",
                          "courtType": {
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-03-28T04:49:02+00:00",
                            "name": "State",
                            "object": "CourtType"
                          },
                          "object": "CaseCountAnalyticsByCourtType"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 2091,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCiU7idFVo8cAy4o",
                          "courtType": {
                            "courtTypeId": "COTPLurdwRD5jyKSYb",
                            "createdDate": "2022-03-28T04:49:02+00:00",
                            "name": "Federal",
                            "object": "CourtType"
                          },
                          "object": "CaseCountAnalyticsByCourtType"
                        }
                      ],
                      "totalCaseCount": 2320867,
                      "totalCourtTypeCount": 2,
                      "totalPages": 1
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/CaseCountAnalyticsByCourtTypeResponse"
                }
              }
            },
            "description": "OK"
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "sample400AnalyticsQuery": {
                    "value": {
                      "code": "UN400",
                      "details": "caseFiledDate is not in a required format",
                      "message": "INVALID_INPUT",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Bad Request"
          },
          "404": {
            "content": {
              "application/json": {
                "examples": {
                  "sample404AnalyticsQuery": {
                    "value": {
                      "code": "UN404",
                      "details": "caseTypeId not found",
                      "message": "RESOURCE_NOT_FOUND",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Not Found"
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "example-1": {
                    "value": {
                      "code": "UN500",
                      "details": "Has encountered a situation which needs to be handled.",
                      "message": "INTERNAL_SERVER_ERROR",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Internal Server Error"
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Case Count Analytics by CourtType.",
        "tags": [
          "Case Analytics API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [],
      "x-api-name": "CaseCountAnalyticsByCourtTypeAPI",
      "x-unicourt-tag": "CaseAnalyticsAPIs"
    },
    "/caseCountAnalyticsByJurisdictionGeo": {
      "get": {
        "description": "Get Case Count Analytics grouped by Jurisdiction Geo.\n## Terms and Connectors\n| Connector | Schema   | Description  | Example |\n| ------| ------| ------|------|\n| **AND** ||Find analytics containing all connected terms. The word AND does not have to be capitalized.|**courtId:\"CORTV4vCEaKrhystBz\" AND courtLocationId:\"COLO6b82CkRqS846hx\"**|\n| **IN()** || Allows you to specify multiple values, for a limit of up to 10.| **courtId IN (\"CORTKQiA4LJuv54tEj\",\"CORTV4vCEaKrhystBz\")**|\n| **courtId** | Multiple Ids Allowed |Find Analytics for a particular Court Object. | **courtId:\"CORTV4vCEaKrhystBz\"** |\n| **courtSystemId** | Multiple Ids Allowed |Find Analytics for a particular Court System Object. | **courtSystemId:\"COSYACHBdMewtaG5DY\"** |\n| **courtTypeId** | Multiple Ids Allowed |Find Analytics for a particular Court Type Object. | **courtTypeId:\"COTPm8jjc2PAydpFhq\"** |\n| **courtLocationId** | Multiple Ids Allowed |Find Analytics for a particular Court Location Object. | **courtLocationId:\"COLO6b82CkRqS846hx\"** |\n| **caseTypeId** | Multiple Ids Allowed |Find Analytics for a particular Case Type Object. | **caseTypeId:\"CTYPATMYyaJekdgj2c\"** |\n| **caseTypeGroupId** | Multiple Ids Allowed |Find Analytics for a particular Case Type Group Object. | **caseTypeGroupId:\"CTYG8gZ6hPRKhhYi4Y\"** |\n| **areaOfLawId** | Multiple Ids Allowed |Find Analytics for a particular Area Of Law Object. | **areaOfLawId:\"AOFL2UxEWfVmTPMyqf\"** |\n| **caseClassId** | Multiple Ids Allowed |Find Analytics for a particular Case Class Category Object. | **caseClassId:\"CSCLNjbKTN7Yfo2wdb\"** |\n| **partyRoleId** | Multiple Ids Allowed |Find Analytics for a particular Party Type Object. | **partyRoleId:\"PTYRiP8nMgPxBsPc5i\"** |\n| **partyRoleGroupId** | Multiple Ids Allowed |Find Analytics for a particular Party Type Group Object. | **partyRoleGroupId:\"PTYGBnjxbx6tKNfVEP\"** |\n| **attorneyPartyRoleId** | Multiple Ids Allowed |Find Analytics for a particular Attorney Party Type Object. | **attorneyPartyRoleId:\"PTYRiP8nMgPxBsPc5i\"** |\n| **attorneyPartyRoleGroupId** | Multiple Ids Allowed |Find Analytics for a particular Attorney Party Type Group Object. | **attorneyPartyRoleGroupId:\"PTYGBnjxbx6tKNfVEP\"** |\n| **normAttorneyId** | Multiple Ids Allowed  |Find Analytics for a particular norm Attorney Object. | **normAttorneyId:\"NATYfwmXwRHS279WPY\"** |\n| **normPartyId** | Multiple Ids Allowed |Find Analytics for a particular Party Object. | **normPartyId:\"NORGrPmQyLdx9NGHcT\"** |\n| **normLawFirmId** | Multiple Ids Allowed |Find Analytics for a particular Norm LawFirm Object. | **normLawFirmId:\"NORGrPmQyLdx9NGHcT\"** |\n| **normJudgeId** | Multiple Ids Allowed |Find Analytics for a particular Judge Object. | **normJudgeId:\"NJUDT7jCZyFNeLGpRq\"** |\n| **caseFiledDate** | Single Allowed  |Find Analytics within a particular date range. | **caseFiledDate:[2018-05-08T00:00:00+00:00TO2019-05-08T00:00:00+00:00]** |\n| **JurisdictionGeo** | Multiple filters Allowed  |Find Analytics within a particular Jurisdiction Geo. | **(JurisdictionGeo:(state:\"California\"))** |\n| **confidenceScore** | Single Allowed |Find Analytics for a given ConfidenceScore  | **confidenceScore>=0.5** |\n| **bestMatch** | Single Allowed |True if the normEntity has the highest Confidence Score of all possible normEntities | **bestMatch:true** |\n<br>\n## Example Query\nQuery to get case count grouped by jurisdiction geo of all cases with case type id CTYPATMYyaJekdgj2c and filed between Jan 1st, 2017 to Nov 30th,2021<br>\nq=caseTypeId:\"CTYPATMYyaJekdgj2c\" AND caseFiledDate:[2017-01-01T00:00:00+00:00TO2021-11-30T00:00:00+00:00]\n",
        "operationId": "getCaseCountAnalyticsByJurisdictionGeo",
        "parameters": [
          {
            "description": "The URL encoded query you are searching for. The query can be as simple as a keyword, but supports many additional options and filters. All options are documented above.",
            "examples": {
              "HTTP200-modifiedValue": {
                "summary": "Default value",
                "value": ""
              },
              "HTTP200-sampleAnalyticsQuery": {
                "summary": "sampleAnalyticsQuery",
                "value": "caseTypeId:\"CTYPATMYyaJekdgj2c\" AND caseFiledDate:[2017-01-01T00:00:00+00:00TO2021-11-30T00:00:00+00:00]"
              },
              "HTTP400-sample400AnalyticsQuery": {
                "summary": "sample400AnalyticsQuery",
                "value": "caseTypeId:\"CTYPATMYyaJekdgj2c\" AND caseFiledDate:[2018-01-01T00:00:00+00:00TO2021-11-3000:00:00+00:00]"
              },
              "HTTP404-sample404AnalyticsQuery": {
                "summary": "sample404AnalyticsQuery",
                "value": "caseTypeId:\"CTYPATMYy1Jekdgj2c\" AND caseFiledDate:[2018-01-01T00:00:00+00:00TO2021-11-30T00:00:00+00:00]"
              }
            },
            "in": "query",
            "name": "q",
            "schema": {
              "maxLength": 2048,
              "nullable": false,
              "type": "string"
            }
          },
          {
            "$ref": "#/components/parameters/AnalyticsPageParam"
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleAnalyticsQuery": {
                    "value": {
                      "nextPageAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByJurisdictionGeo?pageNumber=2&q=caseTypeId%3A%22CTYPATMYyaJekdgj2c%22+AND+caseFiledDate%3A%5B2017-01-01T00%3A00%3A00%2B00%3A00TO2021-11-30T00%3A00%3A00%2B00%3A00%5D",
                      "object": "CaseCountAnalyticsByJurisdictionGeoResponse",
                      "previousPageAPI": null,
                      "results": [
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 410201,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCbNcjGHXks9W4ra",
                          "jurisdictionGeo": {
                            "city": null,
                            "country": "United States of America",
                            "county": "Los Angeles",
                            "courtsForJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/masterData/jurisdictionGeo/JUGO8Mep3ckEkD2SFk/courts",
                            "createdDate": "2022-07-08T05:50:06+00:00",
                            "fipsCode": "06037",
                            "jurisdictionGeoId": "JUGO8Mep3ckEkD2SFk",
                            "object": "JurisdictionGeo",
                            "state": "California",
                            "zipCodeArray": []
                          },
                          "object": "CaseCountAnalyticsByJurisdictionGeo"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 328017,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCSVwwSjqMBjsJjZ",
                          "jurisdictionGeo": {
                            "city": null,
                            "country": "United States of America",
                            "county": "Dade",
                            "courtsForJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/masterData/jurisdictionGeo/JUGOGtHeG4DRX3ySmn/courts",
                            "createdDate": "2022-07-08T05:50:20+00:00",
                            "fipsCode": "12025",
                            "jurisdictionGeoId": "JUGOGtHeG4DRX3ySmn",
                            "object": "JurisdictionGeo",
                            "state": "Florida",
                            "zipCodeArray": []
                          },
                          "object": "CaseCountAnalyticsByJurisdictionGeo"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 319665,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCBhjn3xckYHq9WP",
                          "jurisdictionGeo": {
                            "city": null,
                            "country": "United States of America",
                            "county": "Harris",
                            "courtsForJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/masterData/jurisdictionGeo/JUGOKSjNLYA2ZEdg4i/courts",
                            "createdDate": "2022-07-08T05:51:59+00:00",
                            "fipsCode": "48201",
                            "jurisdictionGeoId": "JUGOKSjNLYA2ZEdg4i",
                            "object": "JurisdictionGeo",
                            "state": "Texas",
                            "zipCodeArray": []
                          },
                          "object": "CaseCountAnalyticsByJurisdictionGeo"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 108916,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCSAHoduqVPEzKNS",
                          "jurisdictionGeo": {
                            "city": null,
                            "country": "United States of America",
                            "county": "Orange",
                            "courtsForJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/masterData/jurisdictionGeo/JUGOJgv89K497vRNog/courts",
                            "createdDate": "2022-07-08T05:50:10+00:00",
                            "fipsCode": "06059",
                            "jurisdictionGeoId": "JUGOJgv89K497vRNog",
                            "object": "JurisdictionGeo",
                            "state": "California",
                            "zipCodeArray": []
                          },
                          "object": "CaseCountAnalyticsByJurisdictionGeo"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 99951,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC2TdAvfKbarwHRo",
                          "jurisdictionGeo": {
                            "city": null,
                            "country": "United States of America",
                            "county": "San Diego",
                            "courtsForJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/masterData/jurisdictionGeo/JUGOJFzn8p2WpHTkTr/courts",
                            "createdDate": "2022-07-08T05:50:13+00:00",
                            "fipsCode": "06073",
                            "jurisdictionGeoId": "JUGOJFzn8p2WpHTkTr",
                            "object": "JurisdictionGeo",
                            "state": "California",
                            "zipCodeArray": []
                          },
                          "object": "CaseCountAnalyticsByJurisdictionGeo"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 97479,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCAgvDFnXfkt9Sh3",
                          "jurisdictionGeo": {
                            "city": null,
                            "country": "United States of America",
                            "county": "Tarrant",
                            "courtsForJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/masterData/jurisdictionGeo/JUGORWTUZvxeJ6SSpe/courts",
                            "createdDate": "2022-07-08T05:52:00+00:00",
                            "fipsCode": "48439",
                            "jurisdictionGeoId": "JUGORWTUZvxeJ6SSpe",
                            "object": "JurisdictionGeo",
                            "state": "Texas",
                            "zipCodeArray": []
                          },
                          "object": "CaseCountAnalyticsByJurisdictionGeo"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 86319,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCeSkyLQJX5itd5X",
                          "jurisdictionGeo": {
                            "city": null,
                            "country": "United States of America",
                            "county": "Riverside",
                            "courtsForJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/masterData/jurisdictionGeo/JUGONt2pzehwQg2rXv/courts",
                            "createdDate": "2022-07-08T05:50:11+00:00",
                            "fipsCode": "06065",
                            "jurisdictionGeoId": "JUGONt2pzehwQg2rXv",
                            "object": "JurisdictionGeo",
                            "state": "California",
                            "zipCodeArray": []
                          },
                          "object": "CaseCountAnalyticsByJurisdictionGeo"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 66529,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCPSmWQjTEVYqh56",
                          "jurisdictionGeo": {
                            "city": null,
                            "country": "United States of America",
                            "county": "San Bernardino",
                            "courtsForJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/masterData/jurisdictionGeo/JUGOmhmDfJeUwjAWAy/courts",
                            "createdDate": "2022-07-08T05:50:12+00:00",
                            "fipsCode": "06071",
                            "jurisdictionGeoId": "JUGOmhmDfJeUwjAWAy",
                            "object": "JurisdictionGeo",
                            "state": "California",
                            "zipCodeArray": []
                          },
                          "object": "CaseCountAnalyticsByJurisdictionGeo"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 60461,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCDUGVrHNLR3GZdU",
                          "jurisdictionGeo": {
                            "city": null,
                            "country": "United States of America",
                            "county": "Broward",
                            "courtsForJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/masterData/jurisdictionGeo/JUGOnZ95TFa8DaNnEq/courts",
                            "createdDate": "2022-07-08T05:50:22+00:00",
                            "fipsCode": "12011",
                            "jurisdictionGeoId": "JUGOnZ95TFa8DaNnEq",
                            "object": "JurisdictionGeo",
                            "state": "Florida",
                            "zipCodeArray": []
                          },
                          "object": "CaseCountAnalyticsByJurisdictionGeo"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 54803,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCQ2wevpDdFN8b7D",
                          "jurisdictionGeo": {
                            "city": null,
                            "country": "United States of America",
                            "county": "Sacramento",
                            "courtsForJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/masterData/jurisdictionGeo/JUGOoRymGVKeQ7q7Az/courts",
                            "createdDate": "2022-07-08T05:50:12+00:00",
                            "fipsCode": "06067",
                            "jurisdictionGeoId": "JUGOoRymGVKeQ7q7Az",
                            "object": "JurisdictionGeo",
                            "state": "California",
                            "zipCodeArray": []
                          },
                          "object": "CaseCountAnalyticsByJurisdictionGeo"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 51893,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCFpWrZwCtQJCtap",
                          "jurisdictionGeo": {
                            "city": null,
                            "country": "United States of America",
                            "county": "El Paso",
                            "courtsForJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/masterData/jurisdictionGeo/JUGOP5XuX78QSxZZ2y/courts",
                            "createdDate": "2022-07-08T05:51:59+00:00",
                            "fipsCode": "48141",
                            "jurisdictionGeoId": "JUGOP5XuX78QSxZZ2y",
                            "object": "JurisdictionGeo",
                            "state": "Texas",
                            "zipCodeArray": []
                          },
                          "object": "CaseCountAnalyticsByJurisdictionGeo"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 43042,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCNNSfkL56iUj85m",
                          "jurisdictionGeo": {
                            "city": null,
                            "country": "United States of America",
                            "county": "Collin",
                            "courtsForJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/masterData/jurisdictionGeo/JUGOfcdRM92eLqAFoH/courts",
                            "createdDate": "2022-07-08T05:51:59+00:00",
                            "fipsCode": "48085",
                            "jurisdictionGeoId": "JUGOfcdRM92eLqAFoH",
                            "object": "JurisdictionGeo",
                            "state": "Texas",
                            "zipCodeArray": []
                          },
                          "object": "CaseCountAnalyticsByJurisdictionGeo"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 38695,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCWoAdvzJ3QcPd3Q",
                          "jurisdictionGeo": {
                            "city": null,
                            "country": "United States of America",
                            "county": "Fort Bend",
                            "courtsForJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/masterData/jurisdictionGeo/JUGOHC2NYPg2TPk33J/courts",
                            "createdDate": "2022-07-08T05:51:59+00:00",
                            "fipsCode": "48157",
                            "jurisdictionGeoId": "JUGOHC2NYPg2TPk33J",
                            "object": "JurisdictionGeo",
                            "state": "Texas",
                            "zipCodeArray": []
                          },
                          "object": "CaseCountAnalyticsByJurisdictionGeo"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 36961,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCkjxYwLKTkntm7m",
                          "jurisdictionGeo": {
                            "city": null,
                            "country": "United States of America",
                            "county": "Denton",
                            "courtsForJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/masterData/jurisdictionGeo/JUGOLrASjeXAf2JtFZ/courts",
                            "createdDate": "2022-07-08T05:51:59+00:00",
                            "fipsCode": "48121",
                            "jurisdictionGeoId": "JUGOLrASjeXAf2JtFZ",
                            "object": "JurisdictionGeo",
                            "state": "Texas",
                            "zipCodeArray": []
                          },
                          "object": "CaseCountAnalyticsByJurisdictionGeo"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 36721,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCD9NAkXMrP9WaKt",
                          "jurisdictionGeo": {
                            "city": null,
                            "country": "United States of America",
                            "county": "Fresno",
                            "courtsForJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/masterData/jurisdictionGeo/JUGOTCEg9Yd6RABJih/courts",
                            "createdDate": "2022-07-08T05:50:05+00:00",
                            "fipsCode": "06019",
                            "jurisdictionGeoId": "JUGOTCEg9Yd6RABJih",
                            "object": "JurisdictionGeo",
                            "state": "California",
                            "zipCodeArray": []
                          },
                          "object": "CaseCountAnalyticsByJurisdictionGeo"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 34262,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCLkq6ATpWUXJUGw",
                          "jurisdictionGeo": {
                            "city": null,
                            "country": "United States of America",
                            "county": "Kern",
                            "courtsForJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/masterData/jurisdictionGeo/JUGOPNZkB567oUm598/courts",
                            "createdDate": "2022-07-08T05:50:06+00:00",
                            "fipsCode": "06029",
                            "jurisdictionGeoId": "JUGOPNZkB567oUm598",
                            "object": "JurisdictionGeo",
                            "state": "California",
                            "zipCodeArray": []
                          },
                          "object": "CaseCountAnalyticsByJurisdictionGeo"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 31105,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC3wn6LHkRhQjAju",
                          "jurisdictionGeo": {
                            "city": null,
                            "country": "United States of America",
                            "county": "Hillsborough",
                            "courtsForJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/masterData/jurisdictionGeo/JUGOiMranA3NtQbDSt/courts",
                            "createdDate": "2022-07-08T05:50:21+00:00",
                            "fipsCode": "12057",
                            "jurisdictionGeoId": "JUGOiMranA3NtQbDSt",
                            "object": "JurisdictionGeo",
                            "state": "Florida",
                            "zipCodeArray": []
                          },
                          "object": "CaseCountAnalyticsByJurisdictionGeo"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 30373,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCcaor5BWRtVHKq6",
                          "jurisdictionGeo": {
                            "city": null,
                            "country": "United States of America",
                            "county": "San Joaquin",
                            "courtsForJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/masterData/jurisdictionGeo/JUGOmdFqVoHxG99hH4/courts",
                            "createdDate": "2022-07-08T05:50:14+00:00",
                            "fipsCode": "06077",
                            "jurisdictionGeoId": "JUGOmdFqVoHxG99hH4",
                            "object": "JurisdictionGeo",
                            "state": "California",
                            "zipCodeArray": []
                          },
                          "object": "CaseCountAnalyticsByJurisdictionGeo"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 29117,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCmbHc8Xi78G37x6",
                          "jurisdictionGeo": {
                            "city": null,
                            "country": "United States of America",
                            "county": "Bexar",
                            "courtsForJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/masterData/jurisdictionGeo/JUGOmU5vxfPqsphXzm/courts",
                            "createdDate": "2022-07-08T05:51:58+00:00",
                            "fipsCode": "48029",
                            "jurisdictionGeoId": "JUGOmU5vxfPqsphXzm",
                            "object": "JurisdictionGeo",
                            "state": "Texas",
                            "zipCodeArray": []
                          },
                          "object": "CaseCountAnalyticsByJurisdictionGeo"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 26924,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCDUsN2yrmq4x4zR",
                          "jurisdictionGeo": {
                            "city": null,
                            "country": "United States of America",
                            "county": "Westchester",
                            "courtsForJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/masterData/jurisdictionGeo/JUGO9Bsojqb9tVgJGf/courts",
                            "createdDate": "2022-07-08T05:50:50+00:00",
                            "fipsCode": "36119",
                            "jurisdictionGeoId": "JUGO9Bsojqb9tVgJGf",
                            "object": "JurisdictionGeo",
                            "state": "New York",
                            "zipCodeArray": []
                          },
                          "object": "CaseCountAnalyticsByJurisdictionGeo"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 26895,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCTPjvY4bPGo4U44",
                          "jurisdictionGeo": {
                            "city": null,
                            "country": "United States of America",
                            "county": "Ventura",
                            "courtsForJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/masterData/jurisdictionGeo/JUGOFNqdTaTrSQPC2Q/courts",
                            "createdDate": "2022-07-08T05:50:15+00:00",
                            "fipsCode": "06111",
                            "jurisdictionGeoId": "JUGOFNqdTaTrSQPC2Q",
                            "object": "JurisdictionGeo",
                            "state": "California",
                            "zipCodeArray": []
                          },
                          "object": "CaseCountAnalyticsByJurisdictionGeo"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 25254,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCJ8fe6oFo4CMsTQ",
                          "jurisdictionGeo": {
                            "city": null,
                            "country": "United States of America",
                            "county": "Pinellas",
                            "courtsForJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/masterData/jurisdictionGeo/JUGOTUmc855TsvZgDE/courts",
                            "createdDate": "2022-07-08T05:50:17+00:00",
                            "fipsCode": "12103",
                            "jurisdictionGeoId": "JUGOTUmc855TsvZgDE",
                            "object": "JurisdictionGeo",
                            "state": "Florida",
                            "zipCodeArray": []
                          },
                          "object": "CaseCountAnalyticsByJurisdictionGeo"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 25150,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCLRSiX8VJvWc8ux",
                          "jurisdictionGeo": {
                            "city": null,
                            "country": "United States of America",
                            "county": "Alameda",
                            "courtsForJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/masterData/jurisdictionGeo/JUGOTG8Zvpwnp2ZBnZ/courts",
                            "createdDate": "2022-07-08T05:50:04+00:00",
                            "fipsCode": "06001",
                            "jurisdictionGeoId": "JUGOTG8Zvpwnp2ZBnZ",
                            "object": "JurisdictionGeo",
                            "state": "California",
                            "zipCodeArray": []
                          },
                          "object": "CaseCountAnalyticsByJurisdictionGeo"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 21432,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCRsuKRgdNqtJtos",
                          "jurisdictionGeo": {
                            "city": null,
                            "country": "United States of America",
                            "county": "Palm Beach",
                            "courtsForJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/masterData/jurisdictionGeo/JUGOC5obqEtLWDtbtD/courts",
                            "createdDate": "2022-07-08T05:50:22+00:00",
                            "fipsCode": "12099",
                            "jurisdictionGeoId": "JUGOC5obqEtLWDtbtD",
                            "object": "JurisdictionGeo",
                            "state": "Florida",
                            "zipCodeArray": []
                          },
                          "object": "CaseCountAnalyticsByJurisdictionGeo"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 20288,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCH5538rMj7X34dv",
                          "jurisdictionGeo": {
                            "city": null,
                            "country": "United States of America",
                            "county": "Erie",
                            "courtsForJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/masterData/jurisdictionGeo/JUGOmUr4rqmf5Tiwhz/courts",
                            "createdDate": "2022-07-08T05:50:47+00:00",
                            "fipsCode": "36029",
                            "jurisdictionGeoId": "JUGOmUr4rqmf5Tiwhz",
                            "object": "JurisdictionGeo",
                            "state": "New York",
                            "zipCodeArray": []
                          },
                          "object": "CaseCountAnalyticsByJurisdictionGeo"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 18749,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCN786BsayozNY9Q",
                          "jurisdictionGeo": {
                            "city": null,
                            "country": "United States of America",
                            "county": "San Francisco",
                            "courtsForJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/masterData/jurisdictionGeo/JUGOQzb2LCQvhjzkvs/courts",
                            "createdDate": "2022-07-08T05:50:13+00:00",
                            "fipsCode": "06075",
                            "jurisdictionGeoId": "JUGOQzb2LCQvhjzkvs",
                            "object": "JurisdictionGeo",
                            "state": "California",
                            "zipCodeArray": []
                          },
                          "object": "CaseCountAnalyticsByJurisdictionGeo"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 18410,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC4XXMYSGc9RrRg3",
                          "jurisdictionGeo": {
                            "city": null,
                            "country": "United States of America",
                            "county": "San Mateo",
                            "courtsForJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/masterData/jurisdictionGeo/JUGO3q85cnTZX7xo7Q/courts",
                            "createdDate": "2022-07-08T05:50:14+00:00",
                            "fipsCode": "06081",
                            "jurisdictionGeoId": "JUGO3q85cnTZX7xo7Q",
                            "object": "JurisdictionGeo",
                            "state": "California",
                            "zipCodeArray": []
                          },
                          "object": "CaseCountAnalyticsByJurisdictionGeo"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 12266,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCDBsYVoyAxGPRYt",
                          "jurisdictionGeo": {
                            "city": null,
                            "country": "United States of America",
                            "county": "Rockland",
                            "courtsForJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/masterData/jurisdictionGeo/JUGOJKkLTWKwjkv36n/courts",
                            "createdDate": "2022-07-08T05:50:49+00:00",
                            "fipsCode": "36087",
                            "jurisdictionGeoId": "JUGOJKkLTWKwjkv36n",
                            "object": "JurisdictionGeo",
                            "state": "New York",
                            "zipCodeArray": []
                          },
                          "object": "CaseCountAnalyticsByJurisdictionGeo"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 12131,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCQiKFLSsBwZWPJp",
                          "jurisdictionGeo": {
                            "city": null,
                            "country": "United States of America",
                            "county": "Onondaga",
                            "courtsForJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/masterData/jurisdictionGeo/JUGOKHLRucqJnTgdK5/courts",
                            "createdDate": "2022-07-08T05:50:48+00:00",
                            "fipsCode": "36067",
                            "jurisdictionGeoId": "JUGOKHLRucqJnTgdK5",
                            "object": "JurisdictionGeo",
                            "state": "New York",
                            "zipCodeArray": []
                          },
                          "object": "CaseCountAnalyticsByJurisdictionGeo"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 12049,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCPYGMhjHbE4ozaa",
                          "jurisdictionGeo": {
                            "city": null,
                            "country": "United States of America",
                            "county": "Contra Costa",
                            "courtsForJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/masterData/jurisdictionGeo/JUGOmPWfBMByfMEyxR/courts",
                            "createdDate": "2022-07-08T05:50:05+00:00",
                            "fipsCode": "06013",
                            "jurisdictionGeoId": "JUGOmPWfBMByfMEyxR",
                            "object": "JurisdictionGeo",
                            "state": "California",
                            "zipCodeArray": []
                          },
                          "object": "CaseCountAnalyticsByJurisdictionGeo"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 11085,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCPKwfDi2MyFNDJh",
                          "jurisdictionGeo": {
                            "city": null,
                            "country": "United States of America",
                            "county": "Orange",
                            "courtsForJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/masterData/jurisdictionGeo/JUGO99VEuLuUBKZMEw/courts",
                            "createdDate": "2022-07-08T05:50:48+00:00",
                            "fipsCode": "36071",
                            "jurisdictionGeoId": "JUGO99VEuLuUBKZMEw",
                            "object": "JurisdictionGeo",
                            "state": "New York",
                            "zipCodeArray": []
                          },
                          "object": "CaseCountAnalyticsByJurisdictionGeo"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 9770,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCoWM6YPuu6AeoE3",
                          "jurisdictionGeo": {
                            "city": null,
                            "country": "United States of America",
                            "county": "Pasco",
                            "courtsForJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/masterData/jurisdictionGeo/JUGOYsKyBdr8NtdKiJ/courts",
                            "createdDate": "2022-07-08T05:50:18+00:00",
                            "fipsCode": "12101",
                            "jurisdictionGeoId": "JUGOYsKyBdr8NtdKiJ",
                            "object": "JurisdictionGeo",
                            "state": "Florida",
                            "zipCodeArray": []
                          },
                          "object": "CaseCountAnalyticsByJurisdictionGeo"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 8864,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC67LaKrLTs5h9eR",
                          "jurisdictionGeo": {
                            "city": null,
                            "country": "United States of America",
                            "county": "Dallas",
                            "courtsForJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/masterData/jurisdictionGeo/JUGOdU4GrpJVh7m9jj/courts",
                            "createdDate": "2022-07-08T05:51:59+00:00",
                            "fipsCode": "48113",
                            "jurisdictionGeoId": "JUGOdU4GrpJVh7m9jj",
                            "object": "JurisdictionGeo",
                            "state": "Texas",
                            "zipCodeArray": []
                          },
                          "object": "CaseCountAnalyticsByJurisdictionGeo"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 7885,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCGkY2RB89vaH2fx",
                          "jurisdictionGeo": {
                            "city": null,
                            "country": "United States of America",
                            "county": "Dutchess",
                            "courtsForJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/masterData/jurisdictionGeo/JUGOQVVEJzuZCxRexq/courts",
                            "createdDate": "2022-07-08T05:50:47+00:00",
                            "fipsCode": "36027",
                            "jurisdictionGeoId": "JUGOQVVEJzuZCxRexq",
                            "object": "JurisdictionGeo",
                            "state": "New York",
                            "zipCodeArray": []
                          },
                          "object": "CaseCountAnalyticsByJurisdictionGeo"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 7605,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCBufgwhQMDMEyVv",
                          "jurisdictionGeo": {
                            "city": null,
                            "country": "United States of America",
                            "county": "Duval",
                            "courtsForJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/masterData/jurisdictionGeo/JUGOfN34UuoHCtzMDu/courts",
                            "createdDate": "2022-07-08T05:50:17+00:00",
                            "fipsCode": "12031",
                            "jurisdictionGeoId": "JUGOfN34UuoHCtzMDu",
                            "object": "JurisdictionGeo",
                            "state": "Florida",
                            "zipCodeArray": []
                          },
                          "object": "CaseCountAnalyticsByJurisdictionGeo"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 7213,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCiUVAZgjyZxzXL8",
                          "jurisdictionGeo": {
                            "city": null,
                            "country": "United States of America",
                            "county": "Volusia",
                            "courtsForJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/masterData/jurisdictionGeo/JUGOVRQUSCNMYhvrAS/courts",
                            "createdDate": "2022-07-08T05:50:18+00:00",
                            "fipsCode": "12127",
                            "jurisdictionGeoId": "JUGOVRQUSCNMYhvrAS",
                            "object": "JurisdictionGeo",
                            "state": "Florida",
                            "zipCodeArray": []
                          },
                          "object": "CaseCountAnalyticsByJurisdictionGeo"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 6897,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCNJnn6JNGSi78fZ",
                          "jurisdictionGeo": {
                            "city": null,
                            "country": "United States of America",
                            "county": "Nassau",
                            "courtsForJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/masterData/jurisdictionGeo/JUGOHeHeK7rKK5g8TT/courts",
                            "createdDate": "2022-07-08T05:50:45+00:00",
                            "fipsCode": "36059",
                            "jurisdictionGeoId": "JUGOHeHeK7rKK5g8TT",
                            "object": "JurisdictionGeo",
                            "state": "New York",
                            "zipCodeArray": []
                          },
                          "object": "CaseCountAnalyticsByJurisdictionGeo"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 6626,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCmWMSiJzZke9Pak",
                          "jurisdictionGeo": {
                            "city": null,
                            "country": "United States of America",
                            "county": "Merced",
                            "courtsForJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/masterData/jurisdictionGeo/JUGOcQ66BjcmGC9bm3/courts",
                            "createdDate": "2022-07-08T05:50:10+00:00",
                            "fipsCode": "06047",
                            "jurisdictionGeoId": "JUGOcQ66BjcmGC9bm3",
                            "object": "JurisdictionGeo",
                            "state": "California",
                            "zipCodeArray": []
                          },
                          "object": "CaseCountAnalyticsByJurisdictionGeo"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 5108,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC5TyMP7ka2DRkqH",
                          "jurisdictionGeo": {
                            "city": null,
                            "country": "United States of America",
                            "county": "Broome",
                            "courtsForJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/masterData/jurisdictionGeo/JUGObBNzFoacQbpRX2/courts",
                            "createdDate": "2022-07-08T05:50:46+00:00",
                            "fipsCode": "36007",
                            "jurisdictionGeoId": "JUGObBNzFoacQbpRX2",
                            "object": "JurisdictionGeo",
                            "state": "New York",
                            "zipCodeArray": []
                          },
                          "object": "CaseCountAnalyticsByJurisdictionGeo"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 5028,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCJNxLCzv6u5pcnS",
                          "jurisdictionGeo": {
                            "city": null,
                            "country": "United States of America",
                            "county": "Albany",
                            "courtsForJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/masterData/jurisdictionGeo/JUGOD2He3REa366Kdg/courts",
                            "createdDate": "2022-07-08T05:50:46+00:00",
                            "fipsCode": "36001",
                            "jurisdictionGeoId": "JUGOD2He3REa366Kdg",
                            "object": "JurisdictionGeo",
                            "state": "New York",
                            "zipCodeArray": []
                          },
                          "object": "CaseCountAnalyticsByJurisdictionGeo"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 4748,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCiguFCqZV6hYqnD",
                          "jurisdictionGeo": {
                            "city": null,
                            "country": "United States of America",
                            "county": "Niagara",
                            "courtsForJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/masterData/jurisdictionGeo/JUGOifQGFbwTLofGZJ/courts",
                            "createdDate": "2022-07-08T05:50:48+00:00",
                            "fipsCode": "36063",
                            "jurisdictionGeoId": "JUGOifQGFbwTLofGZJ",
                            "object": "JurisdictionGeo",
                            "state": "New York",
                            "zipCodeArray": []
                          },
                          "object": "CaseCountAnalyticsByJurisdictionGeo"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 4444,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRChjhoxJbQwu3Qwo",
                          "jurisdictionGeo": {
                            "city": null,
                            "country": "United States of America",
                            "county": "Kings",
                            "courtsForJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/masterData/jurisdictionGeo/JUGOAwucoMao748hxv/courts",
                            "createdDate": "2022-07-08T05:50:40+00:00",
                            "fipsCode": "36047",
                            "jurisdictionGeoId": "JUGOAwucoMao748hxv",
                            "object": "JurisdictionGeo",
                            "state": "New York",
                            "zipCodeArray": []
                          },
                          "object": "CaseCountAnalyticsByJurisdictionGeo"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 4338,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCPrBg2NXpZtUPMC",
                          "jurisdictionGeo": {
                            "city": null,
                            "country": "United States of America",
                            "county": "Escambia",
                            "courtsForJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/masterData/jurisdictionGeo/JUGOEV34xtAdUDtTSv/courts",
                            "createdDate": "2022-07-08T05:50:16+00:00",
                            "fipsCode": "12033",
                            "jurisdictionGeoId": "JUGOEV34xtAdUDtTSv",
                            "object": "JurisdictionGeo",
                            "state": "Florida",
                            "zipCodeArray": []
                          },
                          "object": "CaseCountAnalyticsByJurisdictionGeo"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 4179,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCT2ZrG9Fj8WgSJv",
                          "jurisdictionGeo": {
                            "city": null,
                            "country": "United States of America",
                            "county": "Queens",
                            "courtsForJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/masterData/jurisdictionGeo/JUGORz8PkfzKbf5mRp/courts",
                            "createdDate": "2022-07-08T05:50:40+00:00",
                            "fipsCode": "36081",
                            "jurisdictionGeoId": "JUGORz8PkfzKbf5mRp",
                            "object": "JurisdictionGeo",
                            "state": "New York",
                            "zipCodeArray": []
                          },
                          "object": "CaseCountAnalyticsByJurisdictionGeo"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 4067,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCaQRhyeCD2zRksR",
                          "jurisdictionGeo": {
                            "city": null,
                            "country": "United States of America",
                            "county": "Oneida",
                            "courtsForJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/masterData/jurisdictionGeo/JUGOPXz5TMVRx3nNfN/courts",
                            "createdDate": "2022-07-08T05:50:48+00:00",
                            "fipsCode": "36065",
                            "jurisdictionGeoId": "JUGOPXz5TMVRx3nNfN",
                            "object": "JurisdictionGeo",
                            "state": "New York",
                            "zipCodeArray": []
                          },
                          "object": "CaseCountAnalyticsByJurisdictionGeo"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 3507,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCjXcGRcUStBVEio",
                          "jurisdictionGeo": {
                            "city": null,
                            "country": "United States of America",
                            "county": "Alachua",
                            "courtsForJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/masterData/jurisdictionGeo/JUGOb4xmMQt9axAWoo/courts",
                            "createdDate": "2022-07-08T05:50:19+00:00",
                            "fipsCode": "12001",
                            "jurisdictionGeoId": "JUGOb4xmMQt9axAWoo",
                            "object": "JurisdictionGeo",
                            "state": "Florida",
                            "zipCodeArray": []
                          },
                          "object": "CaseCountAnalyticsByJurisdictionGeo"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 3464,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCRnQhXHuYiLrJ59",
                          "jurisdictionGeo": {
                            "city": null,
                            "country": "United States of America",
                            "county": "Oswego",
                            "courtsForJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/masterData/jurisdictionGeo/JUGOgNrCjDAGB5uNSK/courts",
                            "createdDate": "2022-07-08T05:50:48+00:00",
                            "fipsCode": "36075",
                            "jurisdictionGeoId": "JUGOgNrCjDAGB5uNSK",
                            "object": "JurisdictionGeo",
                            "state": "New York",
                            "zipCodeArray": []
                          },
                          "object": "CaseCountAnalyticsByJurisdictionGeo"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 3395,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCSamFcpym8GoXVT",
                          "jurisdictionGeo": {
                            "city": null,
                            "country": "United States of America",
                            "county": "Chautauqua",
                            "courtsForJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/masterData/jurisdictionGeo/JUGO2yiAxDwdqgnQYu/courts",
                            "createdDate": "2022-07-08T05:50:46+00:00",
                            "fipsCode": "36013",
                            "jurisdictionGeoId": "JUGO2yiAxDwdqgnQYu",
                            "object": "JurisdictionGeo",
                            "state": "New York",
                            "zipCodeArray": []
                          },
                          "object": "CaseCountAnalyticsByJurisdictionGeo"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 3207,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCNPeE9meMmrFgox",
                          "jurisdictionGeo": {
                            "city": null,
                            "country": "United States of America",
                            "county": "Putnam",
                            "courtsForJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/masterData/jurisdictionGeo/JUGOY73XqfvBGbbBpx/courts",
                            "createdDate": "2022-07-08T05:50:49+00:00",
                            "fipsCode": "36079",
                            "jurisdictionGeoId": "JUGOY73XqfvBGbbBpx",
                            "object": "JurisdictionGeo",
                            "state": "New York",
                            "zipCodeArray": []
                          },
                          "object": "CaseCountAnalyticsByJurisdictionGeo"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 3089,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCVsY9aojSBWQEpM",
                          "jurisdictionGeo": {
                            "city": null,
                            "country": "United States of America",
                            "county": "Wayne",
                            "courtsForJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/masterData/jurisdictionGeo/JUGOBaBDit8thxELtJ/courts",
                            "createdDate": "2022-07-08T05:50:50+00:00",
                            "fipsCode": "36117",
                            "jurisdictionGeoId": "JUGOBaBDit8thxELtJ",
                            "object": "JurisdictionGeo",
                            "state": "New York",
                            "zipCodeArray": []
                          },
                          "object": "CaseCountAnalyticsByJurisdictionGeo"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 2897,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC2X7bemAvx6MmfM",
                          "jurisdictionGeo": {
                            "city": null,
                            "country": "United States of America",
                            "county": "New York",
                            "courtsForJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/masterData/jurisdictionGeo/JUGOXF5Zs6RvofDZY6/courts",
                            "createdDate": "2022-07-08T05:50:40+00:00",
                            "fipsCode": "36061",
                            "jurisdictionGeoId": "JUGOXF5Zs6RvofDZY6",
                            "object": "JurisdictionGeo",
                            "state": "New York",
                            "zipCodeArray": []
                          },
                          "object": "CaseCountAnalyticsByJurisdictionGeo"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 2877,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC8BcD3jcGHZBbVK",
                          "jurisdictionGeo": {
                            "city": null,
                            "country": "United States of America",
                            "county": "Sarasota",
                            "courtsForJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/masterData/jurisdictionGeo/JUGOM9P6uHtDF3SLUz/courts",
                            "createdDate": "2022-07-08T05:50:21+00:00",
                            "fipsCode": "12115",
                            "jurisdictionGeoId": "JUGOM9P6uHtDF3SLUz",
                            "object": "JurisdictionGeo",
                            "state": "Florida",
                            "zipCodeArray": []
                          },
                          "object": "CaseCountAnalyticsByJurisdictionGeo"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 2838,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCgkUWufP8DqEbQ9",
                          "jurisdictionGeo": {
                            "city": null,
                            "country": "United States of America",
                            "county": "Jefferson",
                            "courtsForJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/masterData/jurisdictionGeo/JUGOfgAMUbtDWP6SPy/courts",
                            "createdDate": "2022-07-08T05:50:47+00:00",
                            "fipsCode": "36045",
                            "jurisdictionGeoId": "JUGOfgAMUbtDWP6SPy",
                            "object": "JurisdictionGeo",
                            "state": "New York",
                            "zipCodeArray": []
                          },
                          "object": "CaseCountAnalyticsByJurisdictionGeo"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 2544,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCDhJhHxmLzoiUnF",
                          "jurisdictionGeo": {
                            "city": null,
                            "country": "United States of America",
                            "county": "St. Lawrence",
                            "courtsForJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/masterData/jurisdictionGeo/JUGOR4CUVybr65pjSN/courts",
                            "createdDate": "2022-07-08T05:50:49+00:00",
                            "fipsCode": "36089",
                            "jurisdictionGeoId": "JUGOR4CUVybr65pjSN",
                            "object": "JurisdictionGeo",
                            "state": "New York",
                            "zipCodeArray": []
                          },
                          "object": "CaseCountAnalyticsByJurisdictionGeo"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 2463,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCURmhTiZotmupev",
                          "jurisdictionGeo": {
                            "city": null,
                            "country": "United States of America",
                            "county": "Manatee",
                            "courtsForJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/masterData/jurisdictionGeo/JUGOSecc9T3yhQLZme/courts",
                            "createdDate": "2022-07-08T05:50:24+00:00",
                            "fipsCode": "12081",
                            "jurisdictionGeoId": "JUGOSecc9T3yhQLZme",
                            "object": "JurisdictionGeo",
                            "state": "Florida",
                            "zipCodeArray": []
                          },
                          "object": "CaseCountAnalyticsByJurisdictionGeo"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 2018,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCYCGYj2ep78ybXX",
                          "jurisdictionGeo": {
                            "city": null,
                            "country": "United States of America",
                            "county": "Travis",
                            "courtsForJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/masterData/jurisdictionGeo/JUGOWdVtWud4zM8T9J/courts",
                            "createdDate": "2022-07-08T05:52:00+00:00",
                            "fipsCode": "48453",
                            "jurisdictionGeoId": "JUGOWdVtWud4zM8T9J",
                            "object": "JurisdictionGeo",
                            "state": "Texas",
                            "zipCodeArray": []
                          },
                          "object": "CaseCountAnalyticsByJurisdictionGeo"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 1919,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCS7X3vCuiFhPBEi",
                          "jurisdictionGeo": {
                            "city": null,
                            "country": "United States of America",
                            "county": "Bradford",
                            "courtsForJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/masterData/jurisdictionGeo/JUGOnW3SAheWVzfViU/courts",
                            "createdDate": "2022-07-08T05:50:19+00:00",
                            "fipsCode": "12007",
                            "jurisdictionGeoId": "JUGOnW3SAheWVzfViU",
                            "object": "JurisdictionGeo",
                            "state": "Florida",
                            "zipCodeArray": []
                          },
                          "object": "CaseCountAnalyticsByJurisdictionGeo"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 1882,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC993xjpZ8wtwzEm",
                          "jurisdictionGeo": {
                            "city": null,
                            "country": "United States of America",
                            "county": "Baker",
                            "courtsForJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/masterData/jurisdictionGeo/JUGOTZ6b9SxS9QchBP/courts",
                            "createdDate": "2022-07-08T05:50:19+00:00",
                            "fipsCode": "12003",
                            "jurisdictionGeoId": "JUGOTZ6b9SxS9QchBP",
                            "object": "JurisdictionGeo",
                            "state": "Florida",
                            "zipCodeArray": []
                          },
                          "object": "CaseCountAnalyticsByJurisdictionGeo"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 1879,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCGTHP4f4P3Qa27V",
                          "jurisdictionGeo": {
                            "city": null,
                            "country": "United States of America",
                            "county": "Gilchrist",
                            "courtsForJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/masterData/jurisdictionGeo/JUGOF8Kogcfr2m3QmT/courts",
                            "createdDate": "2022-07-08T05:50:19+00:00",
                            "fipsCode": "12041",
                            "jurisdictionGeoId": "JUGOF8Kogcfr2m3QmT",
                            "object": "JurisdictionGeo",
                            "state": "Florida",
                            "zipCodeArray": []
                          },
                          "object": "CaseCountAnalyticsByJurisdictionGeo"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 1878,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRChxk56mMsfxwLyN",
                          "jurisdictionGeo": {
                            "city": null,
                            "country": "United States of America",
                            "county": "Union",
                            "courtsForJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/masterData/jurisdictionGeo/JUGOFKs4sFDM2arRAE/courts",
                            "createdDate": "2022-07-08T05:50:19+00:00",
                            "fipsCode": "12125",
                            "jurisdictionGeoId": "JUGOFKs4sFDM2arRAE",
                            "object": "JurisdictionGeo",
                            "state": "Florida",
                            "zipCodeArray": []
                          },
                          "object": "CaseCountAnalyticsByJurisdictionGeo"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 1703,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCHbHsky3YoCu5oR",
                          "jurisdictionGeo": {
                            "city": null,
                            "country": "United States of America",
                            "county": "Okaloosa",
                            "courtsForJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/masterData/jurisdictionGeo/JUGOaRfaF47fXPyF7Q/courts",
                            "createdDate": "2022-07-08T05:50:15+00:00",
                            "fipsCode": "12091",
                            "jurisdictionGeoId": "JUGOaRfaF47fXPyF7Q",
                            "object": "JurisdictionGeo",
                            "state": "Florida",
                            "zipCodeArray": []
                          },
                          "object": "CaseCountAnalyticsByJurisdictionGeo"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 1703,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCVqWUHYAbxLtSaC",
                          "jurisdictionGeo": {
                            "city": null,
                            "country": "United States of America",
                            "county": "Walton",
                            "courtsForJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/masterData/jurisdictionGeo/JUGOKYBNx2jhFrHvRL/courts",
                            "createdDate": "2022-07-08T05:50:15+00:00",
                            "fipsCode": "12131",
                            "jurisdictionGeoId": "JUGOKYBNx2jhFrHvRL",
                            "object": "JurisdictionGeo",
                            "state": "Florida",
                            "zipCodeArray": []
                          },
                          "object": "CaseCountAnalyticsByJurisdictionGeo"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 1703,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCag5jXc2kL4VWho",
                          "jurisdictionGeo": {
                            "city": null,
                            "country": "United States of America",
                            "county": "Santa Rosa",
                            "courtsForJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/masterData/jurisdictionGeo/JUGOBqiokhmLxTaGxR/courts",
                            "createdDate": "2022-07-08T05:50:16+00:00",
                            "fipsCode": "12113",
                            "jurisdictionGeoId": "JUGOBqiokhmLxTaGxR",
                            "object": "JurisdictionGeo",
                            "state": "Florida",
                            "zipCodeArray": []
                          },
                          "object": "CaseCountAnalyticsByJurisdictionGeo"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 1664,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCSKWpvD2EcoofeX",
                          "jurisdictionGeo": {
                            "city": null,
                            "country": "United States of America",
                            "county": "Steuben",
                            "courtsForJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/masterData/jurisdictionGeo/JUGO4TZxH5uTsH7RU9/courts",
                            "createdDate": "2022-07-08T05:50:49+00:00",
                            "fipsCode": "36101",
                            "jurisdictionGeoId": "JUGO4TZxH5uTsH7RU9",
                            "object": "JurisdictionGeo",
                            "state": "New York",
                            "zipCodeArray": []
                          },
                          "object": "CaseCountAnalyticsByJurisdictionGeo"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 1357,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRChewa4uJiSTPRVC",
                          "jurisdictionGeo": {
                            "city": null,
                            "country": "United States of America",
                            "county": "Hernando",
                            "courtsForJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/masterData/jurisdictionGeo/JUGOLVCAY49BwKLKXK/courts",
                            "createdDate": "2022-07-08T05:50:17+00:00",
                            "fipsCode": "12053",
                            "jurisdictionGeoId": "JUGOLVCAY49BwKLKXK",
                            "object": "JurisdictionGeo",
                            "state": "Florida",
                            "zipCodeArray": []
                          },
                          "object": "CaseCountAnalyticsByJurisdictionGeo"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 1357,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCeLHrLZbpFJmxDP",
                          "jurisdictionGeo": {
                            "city": null,
                            "country": "United States of America",
                            "county": "Sumter",
                            "courtsForJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/masterData/jurisdictionGeo/JUGOZG8oznZFfm2rEV/courts",
                            "createdDate": "2022-07-08T05:50:17+00:00",
                            "fipsCode": "12119",
                            "jurisdictionGeoId": "JUGOZG8oznZFfm2rEV",
                            "object": "JurisdictionGeo",
                            "state": "Florida",
                            "zipCodeArray": []
                          },
                          "object": "CaseCountAnalyticsByJurisdictionGeo"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 1357,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCFsWXyqamwk5jFe",
                          "jurisdictionGeo": {
                            "city": null,
                            "country": "United States of America",
                            "county": "Marion",
                            "courtsForJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/masterData/jurisdictionGeo/JUGOcLNqwte6YP6V9Y/courts",
                            "createdDate": "2022-07-08T05:50:17+00:00",
                            "fipsCode": "12083",
                            "jurisdictionGeoId": "JUGOcLNqwte6YP6V9Y",
                            "object": "JurisdictionGeo",
                            "state": "Florida",
                            "zipCodeArray": []
                          },
                          "object": "CaseCountAnalyticsByJurisdictionGeo"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 1357,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCJ6oVRGsFXodtgk",
                          "jurisdictionGeo": {
                            "city": null,
                            "country": "United States of America",
                            "county": "Lake",
                            "courtsForJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/masterData/jurisdictionGeo/JUGOB44DJsvFHbgo6B/courts",
                            "createdDate": "2022-07-08T05:50:17+00:00",
                            "fipsCode": "12069",
                            "jurisdictionGeoId": "JUGOB44DJsvFHbgo6B",
                            "object": "JurisdictionGeo",
                            "state": "Florida",
                            "zipCodeArray": []
                          },
                          "object": "CaseCountAnalyticsByJurisdictionGeo"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 1297,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCHP37PLmTkV2MyE",
                          "jurisdictionGeo": {
                            "city": null,
                            "country": "United States of America",
                            "county": "Franklin",
                            "courtsForJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/masterData/jurisdictionGeo/JUGOno8hz8pgjCHUZT/courts",
                            "createdDate": "2022-07-08T05:50:47+00:00",
                            "fipsCode": "36033",
                            "jurisdictionGeoId": "JUGOno8hz8pgjCHUZT",
                            "object": "JurisdictionGeo",
                            "state": "New York",
                            "zipCodeArray": []
                          },
                          "object": "CaseCountAnalyticsByJurisdictionGeo"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 1276,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC4wzfWU8JZagQU6",
                          "jurisdictionGeo": {
                            "city": null,
                            "country": "United States of America",
                            "county": "Gulf",
                            "courtsForJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/masterData/jurisdictionGeo/JUGOVekq4zT2fQaCHo/courts",
                            "createdDate": "2022-07-08T05:50:22+00:00",
                            "fipsCode": "12045",
                            "jurisdictionGeoId": "JUGOVekq4zT2fQaCHo",
                            "object": "JurisdictionGeo",
                            "state": "Florida",
                            "zipCodeArray": []
                          },
                          "object": "CaseCountAnalyticsByJurisdictionGeo"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 1275,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCM2uFU9ndygbERF",
                          "jurisdictionGeo": {
                            "city": null,
                            "country": "United States of America",
                            "county": "Calhoun",
                            "courtsForJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/masterData/jurisdictionGeo/JUGO6HDBtWjbyLR6dh/courts",
                            "createdDate": "2022-07-08T05:50:22+00:00",
                            "fipsCode": "12013",
                            "jurisdictionGeoId": "JUGO6HDBtWjbyLR6dh",
                            "object": "JurisdictionGeo",
                            "state": "Florida",
                            "zipCodeArray": []
                          },
                          "object": "CaseCountAnalyticsByJurisdictionGeo"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 1275,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCmu63agnSfwvYuJ",
                          "jurisdictionGeo": {
                            "city": null,
                            "country": "United States of America",
                            "county": "Holmes",
                            "courtsForJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/masterData/jurisdictionGeo/JUGOhWxqtLXzuGwdUP/courts",
                            "createdDate": "2022-07-08T05:50:22+00:00",
                            "fipsCode": "12059",
                            "jurisdictionGeoId": "JUGOhWxqtLXzuGwdUP",
                            "object": "JurisdictionGeo",
                            "state": "Florida",
                            "zipCodeArray": []
                          },
                          "object": "CaseCountAnalyticsByJurisdictionGeo"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 1275,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCTZZXV2H4YUhrCf",
                          "jurisdictionGeo": {
                            "city": null,
                            "country": "United States of America",
                            "county": "Washington",
                            "courtsForJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/masterData/jurisdictionGeo/JUGOJHoaoieu4cYs6r/courts",
                            "createdDate": "2022-07-08T05:50:22+00:00",
                            "fipsCode": "12133",
                            "jurisdictionGeoId": "JUGOJHoaoieu4cYs6r",
                            "object": "JurisdictionGeo",
                            "state": "Florida",
                            "zipCodeArray": []
                          },
                          "object": "CaseCountAnalyticsByJurisdictionGeo"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 1275,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCfRq42LHt3Ttcxh",
                          "jurisdictionGeo": {
                            "city": null,
                            "country": "United States of America",
                            "county": "Jackson",
                            "courtsForJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/masterData/jurisdictionGeo/JUGOd9eHnbUKt8HHA2/courts",
                            "createdDate": "2022-07-08T05:50:22+00:00",
                            "fipsCode": "12063",
                            "jurisdictionGeoId": "JUGOd9eHnbUKt8HHA2",
                            "object": "JurisdictionGeo",
                            "state": "Florida",
                            "zipCodeArray": []
                          },
                          "object": "CaseCountAnalyticsByJurisdictionGeo"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 1267,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCgk44GdovovUmF7",
                          "jurisdictionGeo": {
                            "city": null,
                            "country": "United States of America",
                            "county": "Martin",
                            "courtsForJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/masterData/jurisdictionGeo/JUGOgq83LjPBpa3mkP/courts",
                            "createdDate": "2022-07-08T05:50:23+00:00",
                            "fipsCode": "12085",
                            "jurisdictionGeoId": "JUGOgq83LjPBpa3mkP",
                            "object": "JurisdictionGeo",
                            "state": "Florida",
                            "zipCodeArray": []
                          },
                          "object": "CaseCountAnalyticsByJurisdictionGeo"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 1250,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCgZjdnwxhRXPALE",
                          "jurisdictionGeo": {
                            "city": null,
                            "country": "United States of America",
                            "county": "St. Lucie",
                            "courtsForJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/masterData/jurisdictionGeo/JUGO2avaJVNhgMLqhG/courts",
                            "createdDate": "2022-07-08T05:50:23+00:00",
                            "fipsCode": "12111",
                            "jurisdictionGeoId": "JUGO2avaJVNhgMLqhG",
                            "object": "JurisdictionGeo",
                            "state": "Florida",
                            "zipCodeArray": []
                          },
                          "object": "CaseCountAnalyticsByJurisdictionGeo"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 1250,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCFmijXvHAxhaTkJ",
                          "jurisdictionGeo": {
                            "city": null,
                            "country": "United States of America",
                            "county": "Okeechobee",
                            "courtsForJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/masterData/jurisdictionGeo/JUGOKTVtChHGe24Ctr/courts",
                            "createdDate": "2022-07-08T05:50:23+00:00",
                            "fipsCode": "12093",
                            "jurisdictionGeoId": "JUGOKTVtChHGe24Ctr",
                            "object": "JurisdictionGeo",
                            "state": "Florida",
                            "zipCodeArray": []
                          },
                          "object": "CaseCountAnalyticsByJurisdictionGeo"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 1225,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCaTzETYNHTMJn99",
                          "jurisdictionGeo": {
                            "city": null,
                            "country": "United States of America",
                            "county": "Clay",
                            "courtsForJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/masterData/jurisdictionGeo/JUGOaTQDDyndvQFDtb/courts",
                            "createdDate": "2022-07-08T05:50:17+00:00",
                            "fipsCode": "12019",
                            "jurisdictionGeoId": "JUGOaTQDDyndvQFDtb",
                            "object": "JurisdictionGeo",
                            "state": "Florida",
                            "zipCodeArray": []
                          },
                          "object": "CaseCountAnalyticsByJurisdictionGeo"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 855,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCmsCWJLEFYFNHqa",
                          "jurisdictionGeo": {
                            "city": null,
                            "country": "United States of America",
                            "county": "Cayuga",
                            "courtsForJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/masterData/jurisdictionGeo/JUGOmC6Lq3rsgWQKjJ/courts",
                            "createdDate": "2022-07-08T05:50:46+00:00",
                            "fipsCode": "36011",
                            "jurisdictionGeoId": "JUGOmC6Lq3rsgWQKjJ",
                            "object": "JurisdictionGeo",
                            "state": "New York",
                            "zipCodeArray": []
                          },
                          "object": "CaseCountAnalyticsByJurisdictionGeo"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 688,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCBsJ6Xt7GSCe4M7",
                          "jurisdictionGeo": {
                            "city": null,
                            "country": "United States of America",
                            "county": "Lewis",
                            "courtsForJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/masterData/jurisdictionGeo/JUGOQGSeKmXJ6SYiyD/courts",
                            "createdDate": "2022-07-08T05:50:47+00:00",
                            "fipsCode": "36049",
                            "jurisdictionGeoId": "JUGOQGSeKmXJ6SYiyD",
                            "object": "JurisdictionGeo",
                            "state": "New York",
                            "zipCodeArray": []
                          },
                          "object": "CaseCountAnalyticsByJurisdictionGeo"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 647,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCV6KPEYL6nLTdiG",
                          "jurisdictionGeo": {
                            "city": null,
                            "country": "United States of America",
                            "county": "Polk",
                            "courtsForJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/masterData/jurisdictionGeo/JUGOaBfriJfdRvdyJa/courts",
                            "createdDate": "2022-07-08T05:50:20+00:00",
                            "fipsCode": "12105",
                            "jurisdictionGeoId": "JUGOaBfriJfdRvdyJa",
                            "object": "JurisdictionGeo",
                            "state": "Florida",
                            "zipCodeArray": []
                          },
                          "object": "CaseCountAnalyticsByJurisdictionGeo"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 647,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCQrTfHzEBs8nyGD",
                          "jurisdictionGeo": {
                            "city": null,
                            "country": "United States of America",
                            "county": "Highlands",
                            "courtsForJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/masterData/jurisdictionGeo/JUGO2J2BEfCgTkpyH9/courts",
                            "createdDate": "2022-07-08T05:50:20+00:00",
                            "fipsCode": "12055",
                            "jurisdictionGeoId": "JUGO2J2BEfCgTkpyH9",
                            "object": "JurisdictionGeo",
                            "state": "Florida",
                            "zipCodeArray": []
                          },
                          "object": "CaseCountAnalyticsByJurisdictionGeo"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 647,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCGKok4GVL7vBQov",
                          "jurisdictionGeo": {
                            "city": null,
                            "country": "United States of America",
                            "county": "Hardee",
                            "courtsForJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/masterData/jurisdictionGeo/JUGOdqxjpfaCj42xft/courts",
                            "createdDate": "2022-07-08T05:50:20+00:00",
                            "fipsCode": "12049",
                            "jurisdictionGeoId": "JUGOdqxjpfaCj42xft",
                            "object": "JurisdictionGeo",
                            "state": "Florida",
                            "zipCodeArray": []
                          },
                          "object": "CaseCountAnalyticsByJurisdictionGeo"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 639,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCmm4EmvcyJvrT4L",
                          "jurisdictionGeo": {
                            "city": null,
                            "country": "United States of America",
                            "county": "Richmond",
                            "courtsForJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/masterData/jurisdictionGeo/JUGOdMnSauJw9jn4Yb/courts",
                            "createdDate": "2022-07-08T05:50:40+00:00",
                            "fipsCode": "36085",
                            "jurisdictionGeoId": "JUGOdMnSauJw9jn4Yb",
                            "object": "JurisdictionGeo",
                            "state": "New York",
                            "zipCodeArray": []
                          },
                          "object": "CaseCountAnalyticsByJurisdictionGeo"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 603,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCCUfvDqHG9c6V9m",
                          "jurisdictionGeo": {
                            "city": null,
                            "country": "United States of America",
                            "county": "Putnam",
                            "courtsForJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/masterData/jurisdictionGeo/JUGOk5RLyTxDpRRUoU/courts",
                            "createdDate": "2022-07-08T05:50:18+00:00",
                            "fipsCode": "12107",
                            "jurisdictionGeoId": "JUGOk5RLyTxDpRRUoU",
                            "object": "JurisdictionGeo",
                            "state": "Florida",
                            "zipCodeArray": []
                          },
                          "object": "CaseCountAnalyticsByJurisdictionGeo"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 603,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCSMkE39zwY8D3kr",
                          "jurisdictionGeo": {
                            "city": null,
                            "country": "United States of America",
                            "county": "St. Johns",
                            "courtsForJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/masterData/jurisdictionGeo/JUGOFWMcLArTSUfVnw/courts",
                            "createdDate": "2022-07-08T05:50:18+00:00",
                            "fipsCode": "12109",
                            "jurisdictionGeoId": "JUGOFWMcLArTSUfVnw",
                            "object": "JurisdictionGeo",
                            "state": "Florida",
                            "zipCodeArray": []
                          },
                          "object": "CaseCountAnalyticsByJurisdictionGeo"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 425,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCAjB8XkoTp73Tix",
                          "jurisdictionGeo": {
                            "city": null,
                            "country": "United States of America",
                            "county": "Dixie",
                            "courtsForJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/masterData/jurisdictionGeo/JUGOPkXC7JpNsBD5Kv/courts",
                            "createdDate": "2022-07-08T05:50:16+00:00",
                            "fipsCode": "12029",
                            "jurisdictionGeoId": "JUGOPkXC7JpNsBD5Kv",
                            "object": "JurisdictionGeo",
                            "state": "Florida",
                            "zipCodeArray": []
                          },
                          "object": "CaseCountAnalyticsByJurisdictionGeo"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 416,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCcJz9QbYysVAyaZ",
                          "jurisdictionGeo": {
                            "city": null,
                            "country": "United States of America",
                            "county": "Hamilton",
                            "courtsForJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/masterData/jurisdictionGeo/JUGOfpgmebra8yJkai/courts",
                            "createdDate": "2022-07-08T05:50:16+00:00",
                            "fipsCode": "12047",
                            "jurisdictionGeoId": "JUGOfpgmebra8yJkai",
                            "object": "JurisdictionGeo",
                            "state": "Florida",
                            "zipCodeArray": []
                          },
                          "object": "CaseCountAnalyticsByJurisdictionGeo"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 416,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCMM83Rgo5Bi6cNs",
                          "jurisdictionGeo": {
                            "city": null,
                            "country": "United States of America",
                            "county": "Columbia",
                            "courtsForJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/masterData/jurisdictionGeo/JUGO7t7YsNLbqTHym8/courts",
                            "createdDate": "2022-07-08T05:50:16+00:00",
                            "fipsCode": "12023",
                            "jurisdictionGeoId": "JUGO7t7YsNLbqTHym8",
                            "object": "JurisdictionGeo",
                            "state": "Florida",
                            "zipCodeArray": []
                          },
                          "object": "CaseCountAnalyticsByJurisdictionGeo"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 416,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCXko2k2riWCfvYG",
                          "jurisdictionGeo": {
                            "city": null,
                            "country": "United States of America",
                            "county": "Madison",
                            "courtsForJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/masterData/jurisdictionGeo/JUGOgda5vyFamf6Cfm/courts",
                            "createdDate": "2022-07-08T05:50:17+00:00",
                            "fipsCode": "12079",
                            "jurisdictionGeoId": "JUGOgda5vyFamf6Cfm",
                            "object": "JurisdictionGeo",
                            "state": "Florida",
                            "zipCodeArray": []
                          },
                          "object": "CaseCountAnalyticsByJurisdictionGeo"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 416,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCWonbtJSYevWJAi",
                          "jurisdictionGeo": {
                            "city": null,
                            "country": "United States of America",
                            "county": "Lafayette",
                            "courtsForJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/masterData/jurisdictionGeo/JUGOapLgRYjKSgQvaj/courts",
                            "createdDate": "2022-07-08T05:50:17+00:00",
                            "fipsCode": "12067",
                            "jurisdictionGeoId": "JUGOapLgRYjKSgQvaj",
                            "object": "JurisdictionGeo",
                            "state": "Florida",
                            "zipCodeArray": []
                          },
                          "object": "CaseCountAnalyticsByJurisdictionGeo"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 334,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCHpSgbWPXL63R8o",
                          "jurisdictionGeo": {
                            "city": null,
                            "country": "United States of America",
                            "county": "Yates",
                            "courtsForJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/masterData/jurisdictionGeo/JUGOi9FsBEvaa8JKRa/courts",
                            "createdDate": "2022-07-08T05:50:50+00:00",
                            "fipsCode": "36123",
                            "jurisdictionGeoId": "JUGOi9FsBEvaa8JKRa",
                            "object": "JurisdictionGeo",
                            "state": "New York",
                            "zipCodeArray": []
                          },
                          "object": "CaseCountAnalyticsByJurisdictionGeo"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 325,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCPCsabnsReYX4Et",
                          "jurisdictionGeo": {
                            "city": null,
                            "country": "United States of America",
                            "county": "Liberty",
                            "courtsForJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/masterData/jurisdictionGeo/JUGOipZvgbi2CCTpsZ/courts",
                            "createdDate": "2022-07-08T05:50:16+00:00",
                            "fipsCode": "12077",
                            "jurisdictionGeoId": "JUGOipZvgbi2CCTpsZ",
                            "object": "JurisdictionGeo",
                            "state": "Florida",
                            "zipCodeArray": []
                          },
                          "object": "CaseCountAnalyticsByJurisdictionGeo"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 324,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCDGiTqSRrqHdrBr",
                          "jurisdictionGeo": {
                            "city": null,
                            "country": "United States of America",
                            "county": "Wakulla",
                            "courtsForJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/masterData/jurisdictionGeo/JUGOXfdpsmqKwBvyB6/courts",
                            "createdDate": "2022-07-08T05:50:16+00:00",
                            "fipsCode": "12129",
                            "jurisdictionGeoId": "JUGOXfdpsmqKwBvyB6",
                            "object": "JurisdictionGeo",
                            "state": "Florida",
                            "zipCodeArray": []
                          },
                          "object": "CaseCountAnalyticsByJurisdictionGeo"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 324,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCdtpHXPhV7QvtKh",
                          "jurisdictionGeo": {
                            "city": null,
                            "country": "United States of America",
                            "county": "Jefferson",
                            "courtsForJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/masterData/jurisdictionGeo/JUGOnpoGuCVzDQFTDu/courts",
                            "createdDate": "2022-07-08T05:50:16+00:00",
                            "fipsCode": "12065",
                            "jurisdictionGeoId": "JUGOnpoGuCVzDQFTDu",
                            "object": "JurisdictionGeo",
                            "state": "Florida",
                            "zipCodeArray": []
                          },
                          "object": "CaseCountAnalyticsByJurisdictionGeo"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 324,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCcRzqTTpcpv46Fn",
                          "jurisdictionGeo": {
                            "city": null,
                            "country": "United States of America",
                            "county": "Franklin",
                            "courtsForJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/masterData/jurisdictionGeo/JUGOMVZeruxHjrVsTR/courts",
                            "createdDate": "2022-07-08T05:50:16+00:00",
                            "fipsCode": "12037",
                            "jurisdictionGeoId": "JUGOMVZeruxHjrVsTR",
                            "object": "JurisdictionGeo",
                            "state": "Florida",
                            "zipCodeArray": []
                          },
                          "object": "CaseCountAnalyticsByJurisdictionGeo"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 324,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCTvAXkbAHSbdRo3",
                          "jurisdictionGeo": {
                            "city": null,
                            "country": "United States of America",
                            "county": "Leon",
                            "courtsForJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/masterData/jurisdictionGeo/JUGO5cZSE6RkCKp7QM/courts",
                            "createdDate": "2022-07-08T05:50:16+00:00",
                            "fipsCode": "12073",
                            "jurisdictionGeoId": "JUGO5cZSE6RkCKp7QM",
                            "object": "JurisdictionGeo",
                            "state": "Florida",
                            "zipCodeArray": []
                          },
                          "object": "CaseCountAnalyticsByJurisdictionGeo"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 250,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCZ8zkZnkpjzuvZx",
                          "jurisdictionGeo": {
                            "city": null,
                            "country": "United States of America",
                            "county": "Lee",
                            "courtsForJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/masterData/jurisdictionGeo/JUGOGWebLHM96GedjV/courts",
                            "createdDate": "2022-07-08T05:50:24+00:00",
                            "fipsCode": "12071",
                            "jurisdictionGeoId": "JUGOGWebLHM96GedjV",
                            "object": "JurisdictionGeo",
                            "state": "Florida",
                            "zipCodeArray": []
                          },
                          "object": "CaseCountAnalyticsByJurisdictionGeo"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 250,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCckafmaNBdY85tm",
                          "jurisdictionGeo": {
                            "city": null,
                            "country": "United States of America",
                            "county": "Hendry",
                            "courtsForJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/masterData/jurisdictionGeo/JUGOKk6uQ2QjUMANtX/courts",
                            "createdDate": "2022-07-08T05:50:24+00:00",
                            "fipsCode": "12051",
                            "jurisdictionGeoId": "JUGOKk6uQ2QjUMANtX",
                            "object": "JurisdictionGeo",
                            "state": "Florida",
                            "zipCodeArray": []
                          },
                          "object": "CaseCountAnalyticsByJurisdictionGeo"
                        },
                        {
                          "Geo": {
                            "latitude": null,
                            "longitude": null
                          },
                          "caseCount": 250,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCXJcMCKq9XYsGmT",
                          "jurisdictionGeo": {
                            "city": null,
                            "country": "United States of America",
                            "county": "Glades",
                            "courtsForJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/masterData/jurisdictionGeo/JUGOCHCk5tHHwgwhs6/courts",
                            "createdDate": "2022-07-08T05:50:24+00:00",
                            "fipsCode": "12043",
                            "jurisdictionGeoId": "JUGOCHCk5tHHwgwhs6",
                            "object": "JurisdictionGeo",
                            "state": "Florida",
                            "zipCodeArray": []
                          },
                          "object": "CaseCountAnalyticsByJurisdictionGeo"
                        }
                      ],
                      "totalCaseCount": 2805436,
                      "totalJurisdictionGeoCount": 105,
                      "totalPages": 2
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/CaseCountAnalyticsByJurisdictionGeoResponse"
                }
              }
            },
            "description": "OK"
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "sample400AnalyticsQuery": {
                    "value": {
                      "code": "UN400",
                      "details": "caseFiledDate is not in a required format",
                      "message": "INVALID_INPUT",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Bad Request"
          },
          "404": {
            "content": {
              "application/json": {
                "examples": {
                  "sample404AnalyticsQuery": {
                    "value": {
                      "code": "UN404",
                      "details": "caseTypeId not found",
                      "message": "RESOURCE_NOT_FOUND",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Not Found"
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "example-1": {
                    "value": {
                      "code": "UN500",
                      "details": "Has encountered a situation which needs to be handled.",
                      "message": "INTERNAL_SERVER_ERROR",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Internal Server Error"
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Case Count Analytics by Jurisdiction Geo.",
        "tags": [
          "Case Analytics API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [],
      "x-api-name": "CaseCountAnalyticsByJurisdictionGeoAPI",
      "x-unicourt-tag": "CaseAnalyticsAPIs"
    },
    "/caseCountAnalyticsByNormAttorney": {
      "get": {
        "description": "Returns Case Analytics by Attorney.\n## Terms and Connectors\n| Connector | Schema   | Description  | Example |\n| ------| ------| ------|------|\n| **AND** ||Find analytics containing all connected terms. The word AND does not have to be capitalized.|**courtId:\"CORTV4vCEaKrhystBz\" AND courtLocationId:\"COLO6b82CkRqS846hx\"**|\n| **IN()** || Allows you to specify multiple values, for a limit of up to 10.| **courtId IN (\"CORTKQiA4LJuv54tEj\",\"CORTV4vCEaKrhystBz\")**|\n| **courtId** | Multiple Ids Allowed |Find Analytics for a particular Court Object. | **courtId:\"CORTV4vCEaKrhystBz\"** |\n| **courtSystemId** | Multiple Ids Allowed |Find Analytics for a particular Court System Object. | **courtSystemId:\"COSYACHBdMewtaG5DY\"** |\n| **courtTypeId** | Multiple Ids Allowed |Find Analytics for a particular Court Type Object. | **courtTypeId:\"COTPm8jjc2PAydpFhq\"** |\n| **courtLocationId** | Multiple Ids Allowed |Find Analytics for a particular Court Location Object. | **courtLocationId:\"COLO6b82CkRqS846hx\"** |\n| **caseTypeId** | Multiple Ids Allowed |Find Analytics for a particular Case Type Object. | **caseTypeId:\"CTYPATMYyaJekdgj2c\"** |\n| **caseTypeGroupId** | Multiple Ids Allowed |Find Analytics for a particular Case Type Group Object. | **caseTypeGroupId:\"CTYG8gZ6hPRKhhYi4Y\"** |\n| **areaOfLawId** | Multiple Ids Allowed |Find Analytics for a particular Area Of Law Object. | **areaOfLawId:\"AOFL2UxEWfVmTPMyqf\"** |\n| **caseClassId** | Multiple Ids Allowed |Find Analytics for a particular Case Class Category Object. | **caseClassId:\"CSCLNjbKTN7Yfo2wdb\"** |\n| **partyRoleId** | Multiple Ids Allowed |Find Analytics for a particular Party Type Object. | **partyRoleId:\"PTYRiP8nMgPxBsPc5i\"** |\n| **partyRoleGroupId** | Multiple Ids Allowed |Find Analytics for a particular Party Type Group Object. | **partyRoleGroupId:\"PTYGBnjxbx6tKNfVEP\"** |\n| **attorneyPartyRoleId** | Multiple Ids Allowed |Find Analytics for a particular Attorney Party Type Object. | **attorneyPartyRoleId:\"PTYRiP8nMgPxBsPc5i\"** |\n| **attorneyPartyRoleGroupId** | Multiple Ids Allowed |Find Analytics for a particular Attorney Party Type Group Object. | **attorneyPartyRoleGroupId:\"PTYGBnjxbx6tKNfVEP\"** |\n| **normAttorneyId** | Multiple Ids Allowed  |Find Analytics for a particular norm Attorney Object. | **normAttorneyId:\"NATYfwmXwRHS279WPY\"** |\n| **normPartyId** | Multiple Ids Allowed  |Find Analytics for a particular Party Object. | **normPartyId:\"NORGrPmQyLdx9NGHcT\"** |\n| **normLawFirmId** | Multiple Ids Allowed |Find Analytics for a particular Norm LawFirm Object. | **normLawFirmId:\"NORGrPmQyLdx9NGHcT\"** |\n| **normJudgeId** | Multiple Ids Allowed |Find Analytics for a particular Judge Object. | **normJudgeId:\"NJUDT7jCZyFNeLGpRq\"** |\n| **caseFiledDate** | Single Allowed |Find Analytics within a particular date range. | **caseFiledDate:[2018-05-08T00:00:00+00:00TO2019-05-08T00:00:00+00:00]** |\n| **JurisdictionGeo** | Multiple filters Allowed |Find Analytics within a particular Jurisdiction Geo. | **(JurisdictionGeo:(state:\"California\"))** |\n| **confidenceScore** | Single Allowed |Find Analytics for a given ConfidenceScore  | **confidenceScore>=0.5** |\n| **bestMatch** | Single Allowed |True if the normEntity has the highest Confidence Score of all possible normEntities | **bestMatch:true** |\n<br>\n## Example Query\nQuery to get case count grouped by norm attorney of all cases with case type id CTYPATMYyaJekdgj2c and filed between Jan 1st, 2017 to Nov 30th,2021<br>\nq=caseTypeId:\"CTYPATMYyaJekdgj2c\" AND caseFiledDate:[2017-01-01T00:00:00+00:00TO2021-11-30T00:00:00+00:00]\n",
        "operationId": "getCaseCountAnalyticsByNormAttorney",
        "parameters": [
          {
            "description": "The URL encoded query you are searching for. The query can be as simple as a keyword, but supports many additional options and filters. All options are documented above.",
            "examples": {
              "HTTP200-modifiedValue": {
                "summary": "Default value",
                "value": ""
              },
              "HTTP200-sampleAnalyticsQuery": {
                "summary": "sampleAnalyticsQuery",
                "value": "caseTypeId:\"CTYPATMYyaJekdgj2c\" AND caseFiledDate:[2017-01-01T00:00:00+00:00TO2021-11-30T00:00:00+00:00]"
              },
              "HTTP400-sample400AnalyticsQuery": {
                "summary": "sample400AnalyticsQuery",
                "value": "caseTypeId:\"CTYPATMYyaJekdgj2c\" AND caseFiledDate:[2018-01-01T00:00:00+00:00TO2021-11-3000:00:00+00:00]"
              },
              "HTTP404-sample404AnalyticsQuery": {
                "summary": "sample404AnalyticsQuery",
                "value": "caseTypeId:\"CTYPATMYy1Jekdgj2c\" AND caseFiledDate:[2018-01-01T00:00:00+00:00TO2021-11-30T00:00:00+00:00]"
              }
            },
            "in": "query",
            "name": "q",
            "schema": {
              "maxLength": 2048,
              "nullable": false,
              "type": "string"
            }
          },
          {
            "$ref": "#/components/parameters/AnalyticsPageParam"
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleAnalyticsQuery": {
                    "value": {
                      "nextPageAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByNormAttorney?pageNumber=2&q=caseTypeId%3A%22CTYPATMYyaJekdgj2c%22+AND+caseFiledDate%3A%5B2017-01-01T00%3A00%3A00%2B00%3A00TO2021-11-30T00%3A00%3A00%2B00%3A00%5D",
                      "object": "CaseCountAnalyticsByNormAttorneyResponse",
                      "previousPageAPI": null,
                      "results": [
                        {
                          "caseCount": 49974,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCUovmCQL2xCeGW9",
                          "normAttorneyId": "NATYKybGaVf6gD8D3t",
                          "normAttorneyName": "MATTHEW WAYNE COOPER",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 49810,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCfzGQKpQRaFD7xj",
                          "normAttorneyId": "NATYyV7EFzUZkXuTgV",
                          "normAttorneyName": "MATTHEW WALTER COOPER",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 32238,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCZ38Y8Gqj2baMyF",
                          "normAttorneyId": "NATYeuDMqQWYVXZ4JT",
                          "normAttorneyName": "ROBERT SCOTT KENNARD",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 25157,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCGURiKsDYp3ggAL",
                          "normAttorneyId": "NATYTSDd96qySkiWTe",
                          "normAttorneyName": "MITCHELL GARY SLAMOWITZ",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 24257,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC2t3cQRBzZR6dcJ",
                          "normAttorneyId": "NATYdix2bE7vsqUmCc",
                          "normAttorneyName": "MR. MICHAEL ALLEN MOSS",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 24257,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCddKs8fu5kMttnH",
                          "normAttorneyId": "NATYvmpAc9JefToC2i",
                          "normAttorneyName": "MOSS MICHAEL ALLEN",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 23744,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCRGEEQ4LaegeUXT",
                          "normAttorneyId": "NATYAqc5AUa2bin7UW",
                          "normAttorneyName": "KEITH HARVEY ROTHMAN",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 22188,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCVy7qeFWh4en85p",
                          "normAttorneyId": "NATYK4finuJQxnzzRg",
                          "normAttorneyName": "ADAM B SABEN",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 21689,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC56mPfvp6VwyW3d",
                          "normAttorneyId": "NATYEEwmQRn2zfoy96",
                          "normAttorneyName": "KERI L. SALET",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 20200,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCBroxScz9QmobH7",
                          "normAttorneyId": "NATYJHVuwBcN62KD7H",
                          "normAttorneyName": "STEPHEN EINSTEIN",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 19693,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCTGrjoQjwAcXvPe",
                          "normAttorneyId": "NATYMNJEqXAeodxv6w",
                          "normAttorneyName": "MR. MICHAEL ANTHONY MOSS",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 19085,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCJEoB4X2buY32W2",
                          "normAttorneyId": "NATYDbHHeeZVamkdRi",
                          "normAttorneyName": "GREGORY EDWARD GUDIN",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 16731,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCTsjJhZTdTkFQcT",
                          "normAttorneyId": "NATYszbut5by4KFqjn",
                          "normAttorneyName": "FLINT COREY ZIDE",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 16470,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCeL82ekNjf3baCQ",
                          "normAttorneyId": "NATYdNjhDTSNfqokQU",
                          "normAttorneyName": "BRANDI MARIE ADDISON",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 16433,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCbQ6sxJJcHfmi3Q",
                          "normAttorneyId": "NATYxBxhpjtZGGWq4G",
                          "normAttorneyName": "JACK H. POGOSIAN",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 16254,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC2jgXxbZQExpzG5",
                          "normAttorneyId": "NATYfz88zhmPxrSang",
                          "normAttorneyName": "MS. KATHARINE BANKS ALLEN",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 16036,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC3i8Y8t7QeeuWfb",
                          "normAttorneyId": "NATYWva73YWUYvRmWZ",
                          "normAttorneyName": "JASON SCOTT DRAGUTSKY",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 15533,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCJ4qawQQcmpLTDV",
                          "normAttorneyId": "NATYJdmwtgzr2jTkUm",
                          "normAttorneyName": "ZORAN DAVID JOVANOVICH",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 15350,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCSWShJ2QviTCugw",
                          "normAttorneyId": "NATYbexVjZgVxR7kjw",
                          "normAttorneyName": "MARK ALAN GARBUS",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 15115,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCmyWrFSTdhHoPFA",
                          "normAttorneyId": "NATY3AEiYxd2PCV483",
                          "normAttorneyName": "DAVID MICHAEL KAMINSKI",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 15106,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCS47tunrg9nxZe9",
                          "normAttorneyId": "NATYHq3mtwscX7FbZM",
                          "normAttorneyName": "LAVRAR FLYNN",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 14997,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCi4mpBThcKi4tvV",
                          "normAttorneyId": "NATYvaVnCmFSRAuSbL",
                          "normAttorneyName": "JOHN PAUL KENOSIAN",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 14653,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC3KSiuebdTg654h",
                          "normAttorneyId": "NATYs5YeMwuWZcV9LH",
                          "normAttorneyName": "JESSICA KIM OLSEN-ZHANG",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 13267,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC9EbXHUmW3Rur6V",
                          "normAttorneyId": "NATYp7kmEQtt8jQ3eQ",
                          "normAttorneyName": "JORDAN DAVID COOK",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 12427,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCYEU4jUkFMCmH3c",
                          "normAttorneyId": "NATY9Rjy5t75asuFNS",
                          "normAttorneyName": "MOLLY KATHLEEN FITZPATRICK",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 12367,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCBfgY3nMU2KSTxQ",
                          "normAttorneyId": "NATY2r4VdnvZzB3qeD",
                          "normAttorneyName": "ANTHONY J DIPIERO",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 12152,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCQKd4CgtLfbuRLv",
                          "normAttorneyId": "NATYwaE6TJ4G39BUqh",
                          "normAttorneyName": "CHRISTOPHER D MANDARICH",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 11854,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC8AZ8mGjVK7V6jS",
                          "normAttorneyId": "NATYHk4zgDtiJmrCfq",
                          "normAttorneyName": "DEVIN B. JACOBSEN",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 11847,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCZfz4ebkxXHLzLz",
                          "normAttorneyId": "NATYoBRRsvPR84FiSW",
                          "normAttorneyName": "THOMAS J SEBOURN",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 11767,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC5Em9vcHptHNsqu",
                          "normAttorneyId": "NATY7e9KXagEDjRStT",
                          "normAttorneyName": "SARAH CATHERINE DALEY",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 11740,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCkCCG655SFvNCCn",
                          "normAttorneyId": "NATYQDUSyyww7UBfpJ",
                          "normAttorneyName": "MEGAN KATHLEEN HALE",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 11242,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCo7CrTzEcFcMtsE",
                          "normAttorneyId": "NATYJsbtx5UmAsF4QQ",
                          "normAttorneyName": "MICHAEL GEORGE VLACHOS",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 10731,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC4fDZaML7Hv8kZ3",
                          "normAttorneyId": "NATYecUfBdHDg7Gbxa",
                          "normAttorneyName": "ROBERTO JESUS JARAMILLO",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 10683,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCPwvbX5gEsvRDYu",
                          "normAttorneyId": "NATYZjSbHbZuLqVG42",
                          "normAttorneyName": "SCOTT ERIC MODLIN",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 10679,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRChFQbLHLBNj9SbL",
                          "normAttorneyId": "NATY7jaaCypxNDGHPk",
                          "normAttorneyName": "MR. MICHAEL WAYNE WESTON",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 10407,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCm6H73Q2XFTWCDa",
                          "normAttorneyId": "NATYG87cVd75Ucf3NH",
                          "normAttorneyName": "TODD CHRISTOPHER SIMONSON",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 10313,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCZw8WAqb5jmxPUH",
                          "normAttorneyId": "NATYPmgnWrrXjUeCX5",
                          "normAttorneyName": "LINA M MICHAEL",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 10258,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCPiwSZfTfYe7owx",
                          "normAttorneyId": "NATYuh39PSixWDjBrq",
                          "normAttorneyName": "CHRISTINA SHAUNTE WILSON",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 10243,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCnkf8CnCQ9M4nZL",
                          "normAttorneyId": "NATY2DerghwKgpeXXn",
                          "normAttorneyName": "MELINE GRIGORYAN",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 10203,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC3iKJCJQYadoTbP",
                          "normAttorneyId": "NATYkBnPCGCF9BEBey",
                          "normAttorneyName": "CHRISTINA MONTEIRO ARNOLD",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 9974,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCNaiCsbUapZiKtS",
                          "normAttorneyId": "NATYPpKV2ixjYLjhsm",
                          "normAttorneyName": "MR. DAN G. YOUNG",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 9965,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCXkUNnjEMFYr8Y6",
                          "normAttorneyId": "NATYXdFUGyTEUC4Jad",
                          "normAttorneyName": "ROSEN JOSEPH J",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 9962,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCZb9XPr7MemH9fY",
                          "normAttorneyId": "NATYj2NQJkAyRxSCZu",
                          "normAttorneyName": "JOSEPH F ROSEN",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 9825,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCHEJuiKwk5KXZU5",
                          "normAttorneyId": "NATYHvD82kLpEx2vZW",
                          "normAttorneyName": "EMILY ANNE BLAKE",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 9790,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCm7eESzBjzFrQ8P",
                          "normAttorneyId": "NATYH6in6PmbyWM6Mm",
                          "normAttorneyName": "CARINA MARIE JORDAN",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 9581,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC3VNi4ZDdfQS9QD",
                          "normAttorneyId": "NATYgPuhdVUDsAwr8L",
                          "normAttorneyName": "BRITTANY N. ALLEN-BRANTLEY",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 9302,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCJ2cgaJnsDLFJJa",
                          "normAttorneyId": "NATYfwmXwRHS279WPY",
                          "normAttorneyName": "MICHAEL SCOTT HUNT",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 9271,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCEMyvApYuMuDoqo",
                          "normAttorneyId": "NATYhnBQJ2xocfEohA",
                          "normAttorneyName": "TODD CHARLES SIMONSON",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 9252,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC9fSjbb3VnNpUVC",
                          "normAttorneyId": "NATYa3gErWRGpabntk",
                          "normAttorneyName": "KRISTINA BIANCA MOEHLE",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 9239,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCTJnFa6PxCYdh66",
                          "normAttorneyId": "NATYRPufYgXAdnY57K",
                          "normAttorneyName": "PETER S. NEWMAN",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 9109,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCGqKV58AJMvGxHL",
                          "normAttorneyId": "NATYYnEwvL8Woqpmbe",
                          "normAttorneyName": "MICHAEL JOSEPH GARZA",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 9074,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCnLahhvQdtQuVv3",
                          "normAttorneyId": "NATYWerZBvjjdTwmSJ",
                          "normAttorneyName": "MR. MICHAEL JAMES GARZA",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 9041,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCUwxSn56nhuaBQL",
                          "normAttorneyId": "NATYx3ojtSZJ88JdPD",
                          "normAttorneyName": "BRYANT MICHAEL BURNSTAD",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 8975,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCUwbtwGK2UfgdPd",
                          "normAttorneyId": "NATYixJremzZpbsgGQ",
                          "normAttorneyName": "KEVIN JOHN SPINOZZA",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 8739,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCoRBnd6xUWDrXDz",
                          "normAttorneyId": "NATY2GDX7EkpH8aTUX",
                          "normAttorneyName": "NATHAN ELLIOT COLLINS",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 8719,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCbojtsxqLN2itQR",
                          "normAttorneyId": "NATY56Erevi6wbZ2GY",
                          "normAttorneyName": "CHRISTOPHER PAUL LANGLOIS",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 8680,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCCoHiMUcGY9B7yd",
                          "normAttorneyId": "NATYtgivHczcMABeQq",
                          "normAttorneyName": "VALERIE ELIZABETH WATTS",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 8675,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCHQrcUURvSdbJmp",
                          "normAttorneyId": "NATYMZuAhGnp2Q7zhi",
                          "normAttorneyName": "DONALD RAY OWENS III",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 8610,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCNVdXnTCcCnhPSa",
                          "normAttorneyId": "NATY7LhbBYCAnWNkFM",
                          "normAttorneyName": "MR. DONALD D. DEGRASSE",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 8513,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCPbNMPkkNYcJk77",
                          "normAttorneyId": "NATYoy7T73GVhHRNh3",
                          "normAttorneyName": "JASON W. TANG",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 8475,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCh3vAZ9RCddsCgh",
                          "normAttorneyId": "NATY8kZkyRqkpMWLT7",
                          "normAttorneyName": "JOHN JOSEPH SHEERIN",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 8429,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCEHd9pUoE2aKtR5",
                          "normAttorneyId": "NATYqYQ5ASspWUdrZN",
                          "normAttorneyName": "ADAM MICHAEL HUGHES",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 8232,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCaB25dbroHiEt6k",
                          "normAttorneyId": "NATYUnW9nHqi2K3hHU",
                          "normAttorneyName": "ELIZABETH ANN BLEIER",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 8202,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCWVnXPTfZ4GZTju",
                          "normAttorneyId": "NATY4hMbhwDGkHGx5j",
                          "normAttorneyName": "HAROLD EARL SCHERR",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 8121,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCoJsm5ixWSz7osb",
                          "normAttorneyId": "NATYmV4xMQGnE4dVeA",
                          "normAttorneyName": "JACOB MICHAEL FIGELMAN",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 8041,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCmy2BLRr6N4WoU2",
                          "normAttorneyId": "NATYLEtDuXMCRVyJUs",
                          "normAttorneyName": "JORGE LUIS PALMA",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 8001,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCZXmvhYMsKF9yxg",
                          "normAttorneyId": "NATYxHctMR38jPToxt",
                          "normAttorneyName": "CHASE PIERICK HAGUE",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 7995,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCFX5yBJQGgojEg7",
                          "normAttorneyId": "NATYYtiAeBcyg5weYL",
                          "normAttorneyName": "ADAM LEIGH KIDD",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 7778,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCXdJ8NJBEwnYTsc",
                          "normAttorneyId": "NATYf8xb8JRErB3EJn",
                          "normAttorneyName": "SARKIS SERGO KARAYAN",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 7760,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCBKcy7P4YgCy7kr",
                          "normAttorneyId": "NATYhSRux5PuemQNoi",
                          "normAttorneyName": "STEPHANIE JO BOONE",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 7752,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC4LAgxPibk6Gbrc",
                          "normAttorneyId": "NATY2vKajdDwtEWk92",
                          "normAttorneyName": "JOHN EDWARD KETTLER",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 7655,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCaTzcw3UpDnNzuN",
                          "normAttorneyId": "NATYQ2t5CQTm8ohNqu",
                          "normAttorneyName": "RANJEET KAUR BRAR",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 7604,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCCGZsu72wAU3nZy",
                          "normAttorneyId": "NATYtRqoeWfiMruLZ8",
                          "normAttorneyName": "KRISTEN LEIGH BRINKERHOFF",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 7554,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCK9Jd24xQgH7WxD",
                          "normAttorneyId": "NATYfekGEc4PWKEzx8",
                          "normAttorneyName": "MICHAEL DOUGLAS KAHN",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 7402,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCMqnFNed8wyqPNF",
                          "normAttorneyId": "NATYgbdSEphhxdiYCy",
                          "normAttorneyName": "TAYLOR RACHELLE THOMAS",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 7397,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCkitPcwemWTnNAk",
                          "normAttorneyId": "NATYW9FX2KMdvkFfGS",
                          "normAttorneyName": "MR. JESSE DOW LOCKHART",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 7153,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCPMWSRhUd7xsHUy",
                          "normAttorneyId": "NATY2TAXLgjjou8gQA",
                          "normAttorneyName": "MICHAEL THIEL DEBSKI",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 6949,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCMZRCY2pXWm638n",
                          "normAttorneyId": "NATYbpfT97upBenSvg",
                          "normAttorneyName": "SIDUGUEN CHRISTINE S",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 6898,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCJAUpkB3GLTJbFN",
                          "normAttorneyId": "NATYCwLgJF68Z4QzZp",
                          "normAttorneyName": "PAMELA GOLDFADEN SCHWARCZ",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 6807,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCE7Y8XC2LXRrZV9",
                          "normAttorneyId": "NATYnT67EVjqZA6b5U",
                          "normAttorneyName": "COLIN PATRICK BROGAN",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 6603,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCgnjd4NuNrXT9aV",
                          "normAttorneyId": "NATYd63CyvSyTnXKw6",
                          "normAttorneyName": "CAMRYN P. BERK",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 6598,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCbLAM6HNHFh7D7r",
                          "normAttorneyId": "NATYn5eVZcFCCMWuhW",
                          "normAttorneyName": "SHUR JOSEPH M",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 6586,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCUNySymkNL4KrgZ",
                          "normAttorneyId": "NATYySgsw4fFnAnoUX",
                          "normAttorneyName": "TIFFANY ANNE PACK",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 6517,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC4VVkB5P4PdWowz",
                          "normAttorneyId": "NATYb6yincwcsaxaN6",
                          "normAttorneyName": "COLLEEN E. LEHMANN",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 6498,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCH4zEeajS8aVxJi",
                          "normAttorneyId": "NATYtqrGnhcyprYBAY",
                          "normAttorneyName": "MADELEINE HAYES",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 6320,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCJpNborSgVZb3Xr",
                          "normAttorneyId": "NATYkyzLXy5Wehuj3g",
                          "normAttorneyName": "TARAH EVE JORDAN",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 6299,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCGktFW6Qo3MMHzd",
                          "normAttorneyId": "NATYxPSLTmwjGeuAGZ",
                          "normAttorneyName": "BRIAN NEVINS WINN",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 6270,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCDPWcwQpFCssXi5",
                          "normAttorneyId": "NATYtMUk8YnQLQQDDZ",
                          "normAttorneyName": "NICHOLAS JOHN BABILIS",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 6263,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCf74dJ84debeeum",
                          "normAttorneyId": "NATYSzNS3qiRT49iXJ",
                          "normAttorneyName": "KRISTEN PATRICIA DEAN",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 6258,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCG2ftbyp7eP5Qcs",
                          "normAttorneyId": "NATYpP5gnspbT4gEsr",
                          "normAttorneyName": "EMILY DEHAAS PIERCE",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 6229,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCKpWT7QCfgzDHJA",
                          "normAttorneyId": "NATY9CnmH8Etk5M68U",
                          "normAttorneyName": "KYLA NICOLE BAXTER",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 6206,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCKuSymomm9J4d5z",
                          "normAttorneyId": "NATYG3NkRxxBsvhoke",
                          "normAttorneyName": "EMILY CHANDLER COLLINS",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 6088,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCcxh2Z3nCV2utJU",
                          "normAttorneyId": "NATYhMB9vUQXPkNYw7",
                          "normAttorneyName": "MR. MICHAEL B. VOLK",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 6016,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCi4ASJcNZDcMrPZ",
                          "normAttorneyId": "NATYSjTmK43wXrmXyw",
                          "normAttorneyName": "JAMES PAUL SCULLY",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 5900,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCNWAtKiUDXFAm9w",
                          "normAttorneyId": "NATY33SMYarGivccsJ",
                          "normAttorneyName": "SARA JUNE MCKINNEY",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 5895,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCWAzLm7ZxKoxNLL",
                          "normAttorneyId": "NATYq45Xuk5CVpA7oX",
                          "normAttorneyName": "ROBERT WILLIAM WRIGHT",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 5806,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCeV2pBMX6MLCs7u",
                          "normAttorneyId": "NATYoiVL3AMsc5Rd68",
                          "normAttorneyName": "RALPH SAM MARCADIS",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 5756,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCmczvRfMV599fLa",
                          "normAttorneyId": "NATYWrjEe3XSAse6cg",
                          "normAttorneyName": "MR. JASON MICHAEL BURROWS",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 5755,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCfRARKddpYsdiK7",
                          "normAttorneyId": "NATYhWus6xE6VnLW4x",
                          "normAttorneyName": "JASON MCEWING BURROWS",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 5739,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCSUYUDaHoMyvVAC",
                          "normAttorneyId": "NATYd9r2XMLXo8f9RL",
                          "normAttorneyName": "MS. TALISA KARENE LOWERY",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        }
                      ],
                      "totalCaseCount": 2136184,
                      "totalNormAttorneyCount": 54615,
                      "totalPages": 547
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/CaseCountAnalyticsByNormAttorneyResponse"
                }
              }
            },
            "description": "OK"
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "sample400AnalyticsQuery": {
                    "value": {
                      "code": "UN400",
                      "details": "caseFiledDate is not in a required format",
                      "message": "INVALID_INPUT",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Bad Request"
          },
          "404": {
            "content": {
              "application/json": {
                "examples": {
                  "sample404AnalyticsQuery": {
                    "value": {
                      "code": "UN404",
                      "details": "caseTypeId not found",
                      "message": "RESOURCE_NOT_FOUND",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Not Found"
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "example-1": {
                    "value": {
                      "code": "UN500",
                      "details": "Has encountered a situation which needs to be handled.",
                      "message": "INTERNAL_SERVER_ERROR",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Internal Server Error"
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Case Count Analytics by Attorney.",
        "tags": [
          "Case Analytics API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [],
      "x-api-name": "CaseCountAnalyticsByNormAttorneyAPI",
      "x-unicourt-tag": "AttorneyAnalyticsAPIs"
    },
    "/caseCountAnalyticsByNormJudge": {
      "get": {
        "description": "Returns Case Analytics by Judge.\n## Terms and Connectors\n| Connector | Schema   | Description  | Example |\n| ------| ------| ------|------|\n| **AND** ||Find analytics containing all connected terms. The word AND does not have to be capitalized.|**courtId:\"CORTV4vCEaKrhystBz\" AND courtLocationId:\"COLO6b82CkRqS846hx\"**|\n| **IN()** || Allows you to specify multiple values, for a limit of up to 10.| **courtId IN (\"CORTKQiA4LJuv54tEj\",\"CORTV4vCEaKrhystBz\")**|\n| **courtId** | Multiple Ids Allowed |Find Analytics for a particular Court Object. | **courtId:\"CORTV4vCEaKrhystBz\"** |\n| **courtSystemId** | Multiple Ids Allowed |Find Analytics for a particular Court System Object. | **courtSystemId:\"COSYACHBdMewtaG5DY\"** |\n| **courtTypeId** | Multiple Ids Allowed |Find Analytics for a particular Court Type Object. | **courtTypeId:\"COTPm8jjc2PAydpFhq\"** |\n| **courtLocationId** | Multiple Ids Allowed |Find Analytics for a particular Court Location Object. | **courtLocationId:\"COLO6b82CkRqS846hx\"** |\n| **caseTypeId** | Multiple Ids Allowed |Find Analytics for a particular Case Type Object. | **caseTypeId:\"CTYPATMYyaJekdgj2c\"** |\n| **caseTypeGroupId** | Multiple Ids Allowed |Find Analytics for a particular Case Type Group Object. | **caseTypeGroupId:\"CTYG8gZ6hPRKhhYi4Y\"** |\n| **areaOfLawId** | Multiple Ids Allowed |Find Analytics for a particular Area Of Law Object. | **areaOfLawId:\"AOFL2UxEWfVmTPMyqf\"** |\n| **caseClassId** | Multiple Ids Allowed |Find Analytics for a particular Case Class Category Object. | **caseClassId:\"CSCLNjbKTN7Yfo2wdb\"** |\n| **normAttorneyId** | Multiple Ids Allowed |Find Analytics for a particular norm Attorney Object. | **normAttorneyId:\"NATYfwmXwRHS279WPY\"** |\n| **normPartyId** | Multiple Ids Allowed  |Find Analytics for a particular Party Object. | **normPartyId:\"NORGrPmQyLdx9NGHcT\"** |\n| **normLawFirmId** | Multiple Ids Allowed  |Find Analytics for a particular Norm LawFirm Object. | **normLawFirmId:\"NORGrPmQyLdx9NGHcT\"** |\n| **normJudgeId** | Multiple Ids Allowed  |Find Analytics for a particular Judge Object. | **normJudgeId:\"NJUDT7jCZyFNeLGpRq\"** |\n| **caseFiledDate** | Single Allowed  |Find Analytics within a particular date range. | **caseFiledDate:[2018-05-08T00:00:00+00:00TO2019-05-08T00:00:00+00:00]** |\n| **JurisdictionGeo** | Multiple filters Allowed |Find Analytics within a particular Jurisdiction Geo. | **(JurisdictionGeo:(state:\"California\"))** |\n| **confidenceScore** | Single Allowed |Find Analytics for a given ConfidenceScore  | **confidenceScore>=0.5** |\n| **bestMatch** | Single Allowed |True if the normEntity has the highest Confidence Score of all possible normEntities | **bestMatch:true** |\n<br>\n## Example Query\nQuery to get case count grouped by norm judge of all cases with case type id CTYPATMYyaJekdgj2c and filed between Jan 1st, 2017 to Nov 30th,2021<br>\nq=caseTypeId:\"CTYPATMYyaJekdgj2c\" AND caseFiledDate:[2017-01-01T00:00:00+00:00TO2021-11-30T00:00:00+00:00]\n",
        "operationId": "getCaseCountAnalyticsByNormJudge",
        "parameters": [
          {
            "description": "The URL encoded query you are searching for. The query can be as simple as a keyword, but supports many additional options and filters. All options are documented above.",
            "examples": {
              "HTTP200-modifiedValue": {
                "summary": "Default value",
                "value": ""
              },
              "HTTP200-sampleAnalyticsQuery": {
                "summary": "sampleAnalyticsQuery",
                "value": "caseTypeId:\"CTYPATMYyaJekdgj2c\" AND caseFiledDate:[2017-01-01T00:00:00+00:00TO2021-11-30T00:00:00+00:00]"
              },
              "HTTP400-sample400AnalyticsQuery": {
                "summary": "sample400AnalyticsQuery",
                "value": "caseTypeId:\"CTYPATMYyaJekdgj2c\" AND caseFiledDate:[2018-01-01T00:00:00+00:00TO2021-11-3000:00:00+00:00]"
              },
              "HTTP404-sample404AnalyticsQuery": {
                "summary": "sample404AnalyticsQuery",
                "value": "caseTypeId:\"CTYPATMYy1Jekdgj2c\" AND caseFiledDate:[2018-01-01T00:00:00+00:00TO2021-11-30T00:00:00+00:00]"
              }
            },
            "in": "query",
            "name": "q",
            "schema": {
              "maxLength": 2048,
              "nullable": false,
              "type": "string"
            }
          },
          {
            "$ref": "#/components/parameters/AnalyticsPageParam"
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleAnalyticsQuery": {
                    "value": {
                      "nextPageAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByNormJudge?pageNumber=2&q=caseTypeId%3A%22CTYPATMYyaJekdgj2c%22+AND+caseFiledDate%3A%5B2017-01-01T00%3A00%3A00%2B00%3A00TO2021-11-30T00%3A00%3A00%2B00%3A00%5D",
                      "object": "CaseCountAnalyticsByNormJudgeResponse",
                      "previousPageAPI": null,
                      "results": [
                        {
                          "caseCount": 67529,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCMitMZ4iR8gA2fA",
                          "normJudgeId": "NJUDT7jCZyFNeLGpRq",
                          "normJudgeName": "ANN H. PARK",
                          "object": "CaseCountAnalyticsByNormJudge"
                        },
                        {
                          "caseCount": 51347,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCmVLVVkqSAgj8WW",
                          "normJudgeId": "NJUD3SNsKALeLqwE2z",
                          "normJudgeName": "FREIXES GRACIELA L",
                          "object": "CaseCountAnalyticsByNormJudge"
                        },
                        {
                          "caseCount": 51347,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC9YZ23JACGfKUZZ",
                          "normJudgeId": "NJUDsFYNsR9gVcHM2y",
                          "normJudgeName": "FREIXES GRACIELA F",
                          "object": "CaseCountAnalyticsByNormJudge"
                        },
                        {
                          "caseCount": 44967,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCZweWmCsLekPyrU",
                          "normJudgeId": "NJUDk7HwoQsnzsFM6b",
                          "normJudgeName": "RANDY RHODES",
                          "object": "CaseCountAnalyticsByNormJudge"
                        },
                        {
                          "caseCount": 32052,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCBaLYDEi7vvzC3m",
                          "normJudgeId": "NJUDEoqEtC3kQRbCGk",
                          "normJudgeName": "ROBERT J. SCHUIT",
                          "object": "CaseCountAnalyticsByNormJudge"
                        },
                        {
                          "caseCount": 28775,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCWFWdgVPo4QmVXg",
                          "normJudgeId": "NJUDbhvsJtLXNLDKGm",
                          "normJudgeName": "LONG THOMAS B",
                          "object": "CaseCountAnalyticsByNormJudge"
                        },
                        {
                          "caseCount": 28722,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCKpocHYphbCyDy2",
                          "normJudgeId": "NJUDs6tspKwTsH4PEU",
                          "normJudgeName": "LONG THOMAS D",
                          "object": "CaseCountAnalyticsByNormJudge"
                        },
                        {
                          "caseCount": 19600,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCbSuhDAECTggpsD",
                          "normJudgeId": "NJUD7nKAbDpQX3DbST",
                          "normJudgeName": "JAMES J. DEKLEVA",
                          "object": "CaseCountAnalyticsByNormJudge"
                        },
                        {
                          "caseCount": 19600,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCEDAZNGPoHzb8Mr",
                          "normJudgeId": "NJUDnmimLsi5CdKyEM",
                          "normJudgeName": "JAMES DEKLEVA",
                          "object": "CaseCountAnalyticsByNormJudge"
                        },
                        {
                          "caseCount": 17963,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCbC9caKuCovuRvH",
                          "normJudgeId": "NJUDKi8xxZGXJTUrCc",
                          "normJudgeName": "KIM ANDREW K",
                          "object": "CaseCountAnalyticsByNormJudge"
                        },
                        {
                          "caseCount": 17963,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCNSDSLURcfp7B24",
                          "normJudgeId": "NJUDfqA3MfAhi4fpEN",
                          "normJudgeName": "KIM ANDREW C",
                          "object": "CaseCountAnalyticsByNormJudge"
                        },
                        {
                          "caseCount": 17883,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCU3HwwyDEPWrFJh",
                          "normJudgeId": "NJUD2D4vroFzHnNjFA",
                          "normJudgeName": "JAY ROBINSON",
                          "object": "CaseCountAnalyticsByNormJudge"
                        },
                        {
                          "caseCount": 16980,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC9PBF36X8Vc3RPd",
                          "normJudgeId": "NJUDg3KR8ntrzVYrAx",
                          "normJudgeName": "DAVID A. WILLIAMS",
                          "object": "CaseCountAnalyticsByNormJudge"
                        },
                        {
                          "caseCount": 14121,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCZQjRejkd5YNhik",
                          "normJudgeId": "NJUDXHTMddtGr9zmmj",
                          "normJudgeName": "RALPH D. SWEARINGIN JR.",
                          "object": "CaseCountAnalyticsByNormJudge"
                        },
                        {
                          "caseCount": 14121,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCMndrLLVChwPmH2",
                          "normJudgeId": "NJUDyKDK4zxCcdKKnn",
                          "normJudgeName": "RALPH SWEARINGIN",
                          "object": "CaseCountAnalyticsByNormJudge"
                        },
                        {
                          "caseCount": 13448,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCaiGffLcojHBGUC",
                          "normJudgeId": "NJUDHhtwrg7gUaYrza",
                          "normJudgeName": "GEORGE A. BARNSTONE",
                          "object": "CaseCountAnalyticsByNormJudge"
                        },
                        {
                          "caseCount": 10729,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCFbq8mK2mRPKFwQ",
                          "normJudgeId": "NJUD9JuJUQHXvSauwq",
                          "normJudgeName": "ROBERT RAMIREZ",
                          "object": "CaseCountAnalyticsByNormJudge"
                        },
                        {
                          "caseCount": 10729,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCmEdF9wt3DMBFx9",
                          "normJudgeId": "NJUDyUNwTtf93RVAEe",
                          "normJudgeName": "RAMIREZ ROBERT",
                          "object": "CaseCountAnalyticsByNormJudge"
                        },
                        {
                          "caseCount": 10634,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC6CJ6PFV9ufpcKG",
                          "normJudgeId": "NJUD5GSHKxKfkoJqdg",
                          "normJudgeName": "MARK E. CULLERS",
                          "object": "CaseCountAnalyticsByNormJudge"
                        },
                        {
                          "caseCount": 10430,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCQtkBLLdFLV8ipU",
                          "normJudgeId": "NJUDef6dFCuDCRAwWy",
                          "normJudgeName": "SCOTT HERIN",
                          "object": "CaseCountAnalyticsByNormJudge"
                        },
                        {
                          "caseCount": 10430,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC2u9GcHo3uPK9fA",
                          "normJudgeId": "NJUDneq3sFudxKqPfv",
                          "normJudgeName": "HERIN SCOTT R",
                          "object": "CaseCountAnalyticsByNormJudge"
                        },
                        {
                          "caseCount": 10159,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCgK8stLSv6YUuoJ",
                          "normJudgeId": "NJUDXJzeHb6LGcka99",
                          "normJudgeName": "LASHAWN A. WILLIAMS",
                          "object": "CaseCountAnalyticsByNormJudge"
                        },
                        {
                          "caseCount": 10129,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRChwzLoFrtpbGdh3",
                          "normJudgeId": "NJUD3vEnjHy9BzCQXC",
                          "normJudgeName": "HARMON CHRISTOPHER B",
                          "object": "CaseCountAnalyticsByNormJudge"
                        },
                        {
                          "caseCount": 10129,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCNGynPyD7ZTCcRh",
                          "normJudgeId": "NJUDkBFzr3y4N7wCjS",
                          "normJudgeName": "CHRISTOPHER HARMON",
                          "object": "CaseCountAnalyticsByNormJudge"
                        },
                        {
                          "caseCount": 10038,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCGDfMDCtvwXfdEb",
                          "normJudgeId": "NJUDtCo7S7xC5yWqDf",
                          "normJudgeName": "JIM F. KOVACH",
                          "object": "CaseCountAnalyticsByNormJudge"
                        },
                        {
                          "caseCount": 9922,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC6R6rVQqpHh7gS8",
                          "normJudgeId": "NJUDQxKWBDHXso4KrD",
                          "normJudgeName": "LESLEY BRIONES",
                          "object": "CaseCountAnalyticsByNormJudge"
                        },
                        {
                          "caseCount": 9768,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCVPpoBDr5hrBbKU",
                          "normJudgeId": "NJUD2cXnuFz3c7o4bi",
                          "normJudgeName": "VALERIE SALKIN",
                          "object": "CaseCountAnalyticsByNormJudge"
                        },
                        {
                          "caseCount": 8737,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC3XQypCGX3Pf85A",
                          "normJudgeId": "NJUDBc3sFcMP9Wsp9v",
                          "normJudgeName": "CHRISTOPHER GREGORY",
                          "object": "CaseCountAnalyticsByNormJudge"
                        },
                        {
                          "caseCount": 8737,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCed546c9cvjMFqm",
                          "normJudgeId": "NJUDepQ8XpgTKL4ZwL",
                          "normJudgeName": "GREGORY CHRISTOPHER",
                          "object": "CaseCountAnalyticsByNormJudge"
                        },
                        {
                          "caseCount": 8665,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCRoGmQXPcqabJaC",
                          "normJudgeId": "NJUDWLGgUDNhnNHTyF",
                          "normJudgeName": "CHUCK RUCKEL",
                          "object": "CaseCountAnalyticsByNormJudge"
                        },
                        {
                          "caseCount": 8576,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCo3wVwcHbdAeBCH",
                          "normJudgeId": "NJUDGgtcVvLsuCRjJH",
                          "normJudgeName": "PAUL MICHAEL RALEEH",
                          "object": "CaseCountAnalyticsByNormJudge"
                        },
                        {
                          "caseCount": 8576,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCQjy2CPhfX6E2as",
                          "normJudgeId": "NJUDyqT8eZ8hkB2Skp",
                          "normJudgeName": "PAUL RALEEH",
                          "object": "CaseCountAnalyticsByNormJudge"
                        },
                        {
                          "caseCount": 8365,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCD6rfdCvsrqggQk",
                          "normJudgeId": "NJUDeJ2zqc6UidMoDN",
                          "normJudgeName": "JASON M. CHARBONNET",
                          "object": "CaseCountAnalyticsByNormJudge"
                        },
                        {
                          "caseCount": 8365,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC9rDZnYvRTBrDgE",
                          "normJudgeId": "NJUDhzjEV8P6DyHHWg",
                          "normJudgeName": "JASON CHARBONNET",
                          "object": "CaseCountAnalyticsByNormJudge"
                        },
                        {
                          "caseCount": 7960,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCLRimftBM9hMoiu",
                          "normJudgeId": "NJUDCmkYzR2wJ5qJjQ",
                          "normJudgeName": "KENNETH SANDERS",
                          "object": "CaseCountAnalyticsByNormJudge"
                        },
                        {
                          "caseCount": 7960,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC2GSJBdwELnsu9T",
                          "normJudgeId": "NJUDHYqK3CpTJ8CDDP",
                          "normJudgeName": "KENNETH D. SANDERS",
                          "object": "CaseCountAnalyticsByNormJudge"
                        },
                        {
                          "caseCount": 7892,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC6VirTy5qXN9GS7",
                          "normJudgeId": "NJUDbxMLh8FWzKGo86",
                          "normJudgeName": "MARY TOM CURNUTT",
                          "object": "CaseCountAnalyticsByNormJudge"
                        },
                        {
                          "caseCount": 7892,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCCdJ2ufRJjQGiH8",
                          "normJudgeId": "NJUDn2BL9gxhtBJNFF",
                          "normJudgeName": "CURNUTT MARY TOM",
                          "object": "CaseCountAnalyticsByNormJudge"
                        },
                        {
                          "caseCount": 7402,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCLTf5faUVpYhdCP",
                          "normJudgeId": "NJUDc849baaSiZ2hiK",
                          "normJudgeName": "EMMET F. FERGUSON III",
                          "object": "CaseCountAnalyticsByNormJudge"
                        },
                        {
                          "caseCount": 7373,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCTUpmi2FTWnTDwJ",
                          "normJudgeId": "NJUDhDfztue9wqKZLC",
                          "normJudgeName": "JOHN A. MORAN",
                          "object": "CaseCountAnalyticsByNormJudge"
                        },
                        {
                          "caseCount": 7345,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCTqRZTTtoZ7DSih",
                          "normJudgeId": "NJUDtaeofJCNpcL9sQ",
                          "normJudgeName": "JAMES A. RUTH",
                          "object": "CaseCountAnalyticsByNormJudge"
                        },
                        {
                          "caseCount": 7342,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCUrnCiKS3AJkf99",
                          "normJudgeId": "NJUDj7fEGCX7RPxpAJ",
                          "normJudgeName": "MOSE FLOYD",
                          "object": "CaseCountAnalyticsByNormJudge"
                        },
                        {
                          "caseCount": 7334,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCnedHZRw9FsMrh4",
                          "normJudgeId": "NJUDsTRrxVos6HMXzR",
                          "normJudgeName": "DAWN KUHLMEY HUDSON",
                          "object": "CaseCountAnalyticsByNormJudge"
                        },
                        {
                          "caseCount": 7332,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCW2jmJ6g3GDWGBu",
                          "normJudgeId": "NJUD9aV36vaNdUqThX",
                          "normJudgeName": "SCOTT MITCHELL",
                          "object": "CaseCountAnalyticsByNormJudge"
                        },
                        {
                          "caseCount": 7320,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC4wSJ8QW9SCn8rs",
                          "normJudgeId": "NJUDMKqcDxNtxp82zb",
                          "normJudgeName": "KOLAKOWSKI VICTORIA",
                          "object": "CaseCountAnalyticsByNormJudge"
                        },
                        {
                          "caseCount": 7320,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCWiEup98t2xPn2n",
                          "normJudgeId": "NJUDUTxrfv5mtS8LDS",
                          "normJudgeName": "VICTORIA KOLAKOWSKI",
                          "object": "CaseCountAnalyticsByNormJudge"
                        },
                        {
                          "caseCount": 7301,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCZmFxQPyeTZ4Yaa",
                          "normJudgeId": "NJUDhLkR6AVv4RJNbP",
                          "normJudgeName": "MICHELLE KALIL",
                          "object": "CaseCountAnalyticsByNormJudge"
                        },
                        {
                          "caseCount": 7225,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCTKH9FmW4u5HfMi",
                          "normJudgeId": "NJUDykJq5cmDsKg3p8",
                          "normJudgeName": "ROBERTO A. ARIAS",
                          "object": "CaseCountAnalyticsByNormJudge"
                        },
                        {
                          "caseCount": 7197,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCeYByNSCpKeMJmU",
                          "normJudgeId": "NJUDYhs2jPiEShBFSN",
                          "normJudgeName": "RONALD P. HIGBEE",
                          "object": "CaseCountAnalyticsByNormJudge"
                        },
                        {
                          "caseCount": 7004,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC7A7eeNBh4cxoH4",
                          "normJudgeId": "NJUDZrKfb9AjhJyLFn",
                          "normJudgeName": "GARY P. FLOWER",
                          "object": "CaseCountAnalyticsByNormJudge"
                        },
                        {
                          "caseCount": 6841,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCPaZs6j6GTK9iJf",
                          "normJudgeId": "NJUDpXeNdTRZkaf6X6",
                          "normJudgeName": "ELENI DERKE",
                          "object": "CaseCountAnalyticsByNormJudge"
                        },
                        {
                          "caseCount": 6570,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC89uRtgTChudfNP",
                          "normJudgeId": "NJUDGBXamVbBSSgZNy",
                          "normJudgeName": "STEPHEN E. BENSON",
                          "object": "CaseCountAnalyticsByNormJudge"
                        },
                        {
                          "caseCount": 6570,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCjPqwLAttYa5fR7",
                          "normJudgeId": "NJUDpNgoQk8LTBGMfd",
                          "normJudgeName": "STEPHEN E BENSON",
                          "object": "CaseCountAnalyticsByNormJudge"
                        },
                        {
                          "caseCount": 6500,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC5uEYWj4wmCe9xr",
                          "normJudgeId": "NJUDsnUHLUMQVJGotC",
                          "normJudgeName": "MARIE WOOD",
                          "object": "CaseCountAnalyticsByNormJudge"
                        },
                        {
                          "caseCount": 6421,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCmXK9kRDoNF4y7n",
                          "normJudgeId": "NJUDm9vkDMWAVHBMUN",
                          "normJudgeName": "HOLLAND JOE",
                          "object": "CaseCountAnalyticsByNormJudge"
                        },
                        {
                          "caseCount": 6421,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC6aXFFFAk2eGCyW",
                          "normJudgeId": "NJUDr8zVKAP7UTvrzF",
                          "normJudgeName": "JOE HOLLAND",
                          "object": "CaseCountAnalyticsByNormJudge"
                        },
                        {
                          "caseCount": 6210,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCfbeFyPfHsURUEG",
                          "normJudgeId": "NJUDYBaGnPbZnopjXq",
                          "normJudgeName": "FREDERIC M. SCHOTT",
                          "object": "CaseCountAnalyticsByNormJudge"
                        },
                        {
                          "caseCount": 6125,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCEwgMXgxguioMxh",
                          "normJudgeId": "NJUD9iUABvaG8hvAAK",
                          "normJudgeName": "JAMES R. DEPIAZZA",
                          "object": "CaseCountAnalyticsByNormJudge"
                        },
                        {
                          "caseCount": 6125,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCc8S7bpCy6rNfST",
                          "normJudgeId": "NJUDMccvs2nqjL4fur",
                          "normJudgeName": "DEPIAZZA JAMES R",
                          "object": "CaseCountAnalyticsByNormJudge"
                        },
                        {
                          "caseCount": 5827,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCSiKTv3qXmTjh2r",
                          "normJudgeId": "NJUDe6BuEBzbzjnZGi",
                          "normJudgeName": "BARBARA A. KRONLUND",
                          "object": "CaseCountAnalyticsByNormJudge"
                        },
                        {
                          "caseCount": 5827,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCjQBXuvz8cRw2rW",
                          "normJudgeId": "NJUDgiMCiiZupirf8c",
                          "normJudgeName": "BARBARA KRONLUND",
                          "object": "CaseCountAnalyticsByNormJudge"
                        },
                        {
                          "caseCount": 5694,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCc27SgkYoWCkGXS",
                          "normJudgeId": "NJUDBoHbJUhHTKdWPR",
                          "normJudgeName": "SAMUEL DALESANDRO JR.",
                          "object": "CaseCountAnalyticsByNormJudge"
                        },
                        {
                          "caseCount": 5424,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC2DGnvnbdMjvNUL",
                          "normJudgeId": "NJUDnrnNM69g23Wkgk",
                          "normJudgeName": "MICHAEL BATEH",
                          "object": "CaseCountAnalyticsByNormJudge"
                        },
                        {
                          "caseCount": 5418,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCKWdDucRRG4htsQ",
                          "normJudgeId": "NJUD5uajnjJ9ALoAAQ",
                          "normJudgeName": "JERRY G. SHAFFER",
                          "object": "CaseCountAnalyticsByNormJudge"
                        },
                        {
                          "caseCount": 5418,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCmCTWHd2ogNbyQL",
                          "normJudgeId": "NJUDvZ93sVPLKbkjUd",
                          "normJudgeName": "JERRY SHAFFER",
                          "object": "CaseCountAnalyticsByNormJudge"
                        },
                        {
                          "caseCount": 5401,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCn6MtaLT9gXJHFz",
                          "normJudgeId": "NJUDPZFLHr6GF4v3Cs",
                          "normJudgeName": "BRAND JEFFREY",
                          "object": "CaseCountAnalyticsByNormJudge"
                        },
                        {
                          "caseCount": 5401,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCjzoUesY3VxgGNw",
                          "normJudgeId": "NJUDovzyUjhvMQ6wB9",
                          "normJudgeName": "JEFFREY BRAND",
                          "object": "CaseCountAnalyticsByNormJudge"
                        },
                        {
                          "caseCount": 5367,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCJioyR3UvUefvVT",
                          "normJudgeId": "NJUDN82gPABh4X9vSm",
                          "normJudgeName": "KIMBERLY A. SADLER",
                          "object": "CaseCountAnalyticsByNormJudge"
                        },
                        {
                          "caseCount": 5263,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCStKKkUxxgvZp75",
                          "normJudgeId": "NJUDgwTocfc9fHo9JW",
                          "normJudgeName": "ROBERT T. PEARSON",
                          "object": "CaseCountAnalyticsByNormJudge"
                        },
                        {
                          "caseCount": 5263,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCM2mxoKmC3pbwXH",
                          "normJudgeId": "NJUDmTmsdDV5cKMmz6",
                          "normJudgeName": "ROBERT PEARSON",
                          "object": "CaseCountAnalyticsByNormJudge"
                        },
                        {
                          "caseCount": 5144,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRChbLDzmBRL5F2D7",
                          "normJudgeId": "NJUD27h9eiQYLjrcR4",
                          "normJudgeName": "MOSBARGER TAMARA L",
                          "object": "CaseCountAnalyticsByNormJudge"
                        },
                        {
                          "caseCount": 5144,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCg8VKcmUwCx2iwV",
                          "normJudgeId": "NJUDBCUNVtEFPfnVq6",
                          "normJudgeName": "TAMARA L. MOSBARGER",
                          "object": "CaseCountAnalyticsByNormJudge"
                        },
                        {
                          "caseCount": 5134,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCLmGyzo8Mz8HrrS",
                          "normJudgeId": "NJUD26fS5HHwwKk6ps",
                          "normJudgeName": "CARTER P. HOLLY",
                          "object": "CaseCountAnalyticsByNormJudge"
                        },
                        {
                          "caseCount": 5134,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCJgKMkJaV55mxKz",
                          "normJudgeId": "NJUDegBjHBEXzFXfjp",
                          "normJudgeName": "CARTER HOLLY",
                          "object": "CaseCountAnalyticsByNormJudge"
                        },
                        {
                          "caseCount": 5079,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCfak4Wja3hVvEEu",
                          "normJudgeId": "NJUDzVxu7HTcYHRiqh",
                          "normJudgeName": "MIKE OGLESBY",
                          "object": "CaseCountAnalyticsByNormJudge"
                        },
                        {
                          "caseCount": 5075,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC5Jhn8viJejWtsT",
                          "normJudgeId": "NJUDzh3mvYaBK7i3g4",
                          "normJudgeName": "DAVID FOSTER",
                          "object": "CaseCountAnalyticsByNormJudge"
                        },
                        {
                          "caseCount": 5034,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCZXdoHrjKaqBiFt",
                          "normJudgeId": "NJUDDSnrCKKjCPPiCN",
                          "normJudgeName": "JOHN DEVINE",
                          "object": "CaseCountAnalyticsByNormJudge"
                        },
                        {
                          "caseCount": 4973,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCFYg79nqrUEWcrt",
                          "normJudgeId": "NJUDavKPwYZwmfgPJJ",
                          "normJudgeName": "LORRAINE KELLY",
                          "object": "CaseCountAnalyticsByNormJudge"
                        },
                        {
                          "caseCount": 4875,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCeFZD9cULDseHAp",
                          "normJudgeId": "NJUDjwNYKPsxowM69B",
                          "normJudgeName": "DAVID GREGORY",
                          "object": "CaseCountAnalyticsByNormJudge"
                        },
                        {
                          "caseCount": 4848,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCGMzQMc42eaUMez",
                          "normJudgeId": "NJUDmhA6T7XZT5yaiW",
                          "normJudgeName": "ROGER ROSS",
                          "object": "CaseCountAnalyticsByNormJudge"
                        },
                        {
                          "caseCount": 4841,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCKUcbRSzt8UpHUu",
                          "normJudgeId": "NJUDajsC8Bt7TNQeYA",
                          "normJudgeName": "KERBOW JAMES",
                          "object": "CaseCountAnalyticsByNormJudge"
                        },
                        {
                          "caseCount": 4841,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCDRSzua8AbWX4kG",
                          "normJudgeId": "NJUDmufEQkMTzaagMD",
                          "normJudgeName": "JAMES KERBOW",
                          "object": "CaseCountAnalyticsByNormJudge"
                        },
                        {
                          "caseCount": 4745,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCGf7ZkbRwW4hYxq",
                          "normJudgeId": "NJUDoQQHe6mtAbcrAV",
                          "normJudgeName": "EDWIN JAGGER",
                          "object": "CaseCountAnalyticsByNormJudge"
                        },
                        {
                          "caseCount": 4458,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCBXpWELENgygZr2",
                          "normJudgeId": "NJUD5AYUFPBxrp5aFw",
                          "normJudgeName": "SUSANNE M. FENSTERMACHER",
                          "object": "CaseCountAnalyticsByNormJudge"
                        },
                        {
                          "caseCount": 4458,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCFbxd28kz2hmJg3",
                          "normJudgeId": "NJUD8Myw2uTUjRNjDT",
                          "normJudgeName": "SUSANNE FENSTERMACHER",
                          "object": "CaseCountAnalyticsByNormJudge"
                        },
                        {
                          "caseCount": 4398,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCUChcQGT9r9uiyr",
                          "normJudgeId": "NJUDCJzSMxUzDVRKA4",
                          "normJudgeName": "GEORGE ABDALLAH",
                          "object": "CaseCountAnalyticsByNormJudge"
                        },
                        {
                          "caseCount": 4398,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCmoLGPhP7LowBwF",
                          "normJudgeId": "NJUDSg8koqSoH5qUZx",
                          "normJudgeName": "GEORGE J. ABDALLAH JR.",
                          "object": "CaseCountAnalyticsByNormJudge"
                        },
                        {
                          "caseCount": 4366,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCLHjfLiEkFAMJDd",
                          "normJudgeId": "NJUDJ8oSESxiYfhHXk",
                          "normJudgeName": "MIKE MISSILDINE",
                          "object": "CaseCountAnalyticsByNormJudge"
                        },
                        {
                          "caseCount": 4366,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCS5TMd8aVjPsH8i",
                          "normJudgeId": "NJUDJrifvTWaXKY6Fm",
                          "normJudgeName": "MIKE A. MISSILDINE",
                          "object": "CaseCountAnalyticsByNormJudge"
                        },
                        {
                          "caseCount": 4169,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCn5oyzvcJYpLAdJ",
                          "normJudgeId": "NJUDKsYdg5Czj25QsR",
                          "normJudgeName": "DEBRA L. KRAUSE",
                          "object": "CaseCountAnalyticsByNormJudge"
                        },
                        {
                          "caseCount": 4169,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCBGwzjoZe3gFUFc",
                          "normJudgeId": "NJUDMqQZ5ekcNaeEvS",
                          "normJudgeName": "KRAUSE DEBRA",
                          "object": "CaseCountAnalyticsByNormJudge"
                        },
                        {
                          "caseCount": 4061,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCPebJkzjvRRoeso",
                          "normJudgeId": "NJUDU922xbm8QNNzxm",
                          "normJudgeName": "CHARLES BEN BURCH",
                          "object": "CaseCountAnalyticsByNormJudge"
                        },
                        {
                          "caseCount": 4006,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCisa37mYkBGsJ4j",
                          "normJudgeId": "NJUDGd8C5UKMAgZnBP",
                          "normJudgeName": "TODD T. WONG",
                          "object": "CaseCountAnalyticsByNormJudge"
                        },
                        {
                          "caseCount": 4006,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCkfCEGp9TPFtLfc",
                          "normJudgeId": "NJUDmtRfw9Je3KkxPg",
                          "normJudgeName": "TODD WONG",
                          "object": "CaseCountAnalyticsByNormJudge"
                        },
                        {
                          "caseCount": 3995,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCQ4yvzjcYyBx5nt",
                          "normJudgeId": "NJUD6vrsQSUYg7iqi2",
                          "normJudgeName": "ERIC SHEPPERD",
                          "object": "CaseCountAnalyticsByNormJudge"
                        },
                        {
                          "caseCount": 3995,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCF5R7Gr5TKiZopu",
                          "normJudgeId": "NJUDbmfRFMDz8HKM4B",
                          "normJudgeName": "ERIC M. SHEPPERD",
                          "object": "CaseCountAnalyticsByNormJudge"
                        },
                        {
                          "caseCount": 3905,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCZJcfz4Uvh7nN7B",
                          "normJudgeId": "NJUDKvfpVgm3LoW8W2",
                          "normJudgeName": "ERNST A. HALPERIN",
                          "object": "CaseCountAnalyticsByNormJudge"
                        },
                        {
                          "caseCount": 3871,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCAw6wmLxkeaxhkf",
                          "normJudgeId": "NJUDfvv8DFUD32J3tk",
                          "normJudgeName": "SHERYL MCFARLIN",
                          "object": "CaseCountAnalyticsByNormJudge"
                        },
                        {
                          "caseCount": 3773,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCiGKMAbaYXoer5m",
                          "normJudgeId": "NJUDCrQjcceSbaqvC7",
                          "normJudgeName": "MYRA SCOTT MCNARY",
                          "object": "CaseCountAnalyticsByNormJudge"
                        },
                        {
                          "caseCount": 3723,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCiLe9oCSadtjfey",
                          "normJudgeId": "NJUDe9h9wRzq5QoyVH",
                          "normJudgeName": "JOHN CARASSAS",
                          "object": "CaseCountAnalyticsByNormJudge"
                        }
                      ],
                      "totalCaseCount": 1114218,
                      "totalNormJudgeCount": 3133,
                      "totalPages": 32
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/CaseCountAnalyticsByNormJudgeResponse"
                }
              }
            },
            "description": "OK"
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "sample400AnalyticsQuery": {
                    "value": {
                      "code": "UN400",
                      "details": "caseFiledDate is not in a required format",
                      "message": "INVALID_INPUT",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Bad Request"
          },
          "404": {
            "content": {
              "application/json": {
                "examples": {
                  "sample404AnalyticsQuery": {
                    "value": {
                      "code": "UN404",
                      "details": "caseTypeId not found",
                      "message": "RESOURCE_NOT_FOUND",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Not Found"
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "example-1": {
                    "value": {
                      "code": "UN500",
                      "details": "Has encountered a situation which needs to be handled.",
                      "message": "INTERNAL_SERVER_ERROR",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Internal Server Error"
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Case Count Analytics by Judge.",
        "tags": [
          "Case Analytics API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [],
      "x-api-name": "CaseCountAnalyticsByNormJudgeAPI",
      "x-unicourt-tag": "JudgeAnalyticsAPIs"
    },
    "/caseCountAnalyticsByNormLawFirm": {
      "get": {
        "description": "Returns Case Analytics by Norm Law Firm.\n## Terms and Connectors\n| Connector | Schema   | Description  | Example |\n| ------| ------| ------|------|\n| **AND** ||Find analytics containing all connected terms. The word AND does not have to be capitalized.|**courtId:\"CORTV4vCEaKrhystBz\" AND courtLocationId:\"COLO6b82CkRqS846hx\"**|\n| **IN()** || Allows you to specify multiple values, for a limit of up to 10.| **courtId IN (\"CORTKQiA4LJuv54tEj\",\"CORTV4vCEaKrhystBz\")**|\n| **courtId** | Multiple Ids Allowed |Find Analytics for a particular Court Object. | **courtId:\"CORTV4vCEaKrhystBz\"** |\n| **courtSystemId** | Multiple Ids Allowed |Find Analytics for a particular Court System Object. | **courtSystemId:\"COSYACHBdMewtaG5DY\"** |\n| **courtTypeId** | Multiple Ids Allowed |Find Analytics for a particular Court Type Object. | **courtTypeId:\"COTPm8jjc2PAydpFhq\"** |\n| **courtLocationId** | Multiple Ids Allowed |Find Analytics for a particular Court Location Object. | **courtLocationId:\"COLO6b82CkRqS846hx\"** |\n| **caseTypeId** | Multiple Ids Allowed |Find Analytics for a particular Case Type Object. | **caseTypeId:\"CTYPATMYyaJekdgj2c\"** |\n| **caseTypeGroupId** | Multiple Ids Allowed |Find Analytics for a particular Case Type Group Object. | **caseTypeGroupId:\"CTYG8gZ6hPRKhhYi4Y\"** |\n| **areaOfLawId** | Multiple Ids Allowed |Find Analytics for a particular Area Of Law Object. | **areaOfLawId:\"AOFL2UxEWfVmTPMyqf\"** |\n| **caseClassId** | Multiple Ids Allowed |Find Analytics for a particular Case Class Category Object. | **caseClassId:\"CSCLNjbKTN7Yfo2wdb\"** |\n| **partyRoleId** | Multiple Ids Allowed |Find Analytics for a particular Party Type Object. | **partyRoleId:\"PTYRiP8nMgPxBsPc5i\"** |\n| **partyRoleGroupId** | Multiple Ids Allowed |Find Analytics for a particular Party Type Group Object. | **partyRoleGroupId:\"PTYGBnjxbx6tKNfVEP\"** |\n| **attorneyPartyRoleId** | Multiple Ids Allowed |Find Analytics for a particular Attorney Party Type Object. | **attorneyPartyRoleId:\"PTYRiP8nMgPxBsPc5i\"** |\n| **attorneyPartyRoleGroupId** | Multiple Ids Allowed |Find Analytics for a particular Attorney Party Type Group Object. | **attorneyPartyRoleGroupId:\"PTYGBnjxbx6tKNfVEP\"** |\n| **normAttorneyId** | Multiple Ids Allowed  |Find Analytics for a particular norm Attorney Object. | **normAttorneyId:\"NATYfwmXwRHS279WPY\"** |\n| **normLawFirmId** | Multiple Ids Allowed  |Find Analytics for a particular Norm LawFirm Object. | **normLawFirmId:\"NORGrPmQyLdx9NGHcT\"** |\n| **normPartyId** | Multiple Ids Allowed |Find Analytics for a particular Party Object. | **normPartyId:\"NORGrPmQyLdx9NGHcT\"** |\n| **normJudgeId** | Multiple Ids Allowed  |Find Analytics for a particular Judge Object. | **normJudgeId:\"NJUDT7jCZyFNeLGpRq\"** |\n| **caseFiledDate** | Single Allowed  |Find Analytics within a particular date range. | **caseFiledDate:[2018-05-08T00:00:00+00:00TO2019-05-08T00:00:00+00:00]** |\n| **JurisdictionGeo** | Multiple filters Allowed |Find Analytics within a particular Jurisdiction Geo. | **(JurisdictionGeo:(state:\"California\"))** |\n| **confidenceScore** | Single Allowed |Find Analytics for a given ConfidenceScore  | **confidenceScore>=0.5** |\n| **bestMatch** | Single Allowed |True if the normEntity has the highest Confidence Score of all possible normEntities | **bestMatch:true** |\n<br>\n## Example Query\nQuery to get case count grouped by norm lawfirm  of all cases with case type id CTYPATMYyaJekdgj2c and filed between Jan 1st, 2017 to Nov 30th,2021<br>\nq=caseTypeId:\"CTYPATMYyaJekdgj2c\" AND caseFiledDate:[2017-01-01T00:00:00+00:00TO2021-11-30T00:00:00+00:00]\n",
        "operationId": "getCaseCountAnalyticsByNormLawFirm",
        "parameters": [
          {
            "description": "The URL encoded query you are searching for. The query can be as simple as a keyword, but supports many additional options and filters. All options are documented above.",
            "examples": {
              "HTTP200-modifiedValue": {
                "summary": "Default value",
                "value": ""
              },
              "HTTP200-sampleAnalyticsQuery": {
                "summary": "sampleAnalyticsQuery",
                "value": "caseTypeId:\"CTYPATMYyaJekdgj2c\" AND caseFiledDate:[2017-01-01T00:00:00+00:00TO2021-11-30T00:00:00+00:00]"
              },
              "HTTP400-sample400AnalyticsQuery": {
                "summary": "sample400AnalyticsQuery",
                "value": "caseTypeId:\"CTYPATMYyaJekdgj2c\" AND caseFiledDate:[2018-01-01T00:00:00+00:00TO2021-11-3000:00:00+00:00]"
              },
              "HTTP404-sample404AnalyticsQuery": {
                "summary": "sample404AnalyticsQuery",
                "value": "caseTypeId:\"CTYPATMYy1Jekdgj2c\" AND caseFiledDate:[2018-01-01T00:00:00+00:00TO2021-11-30T00:00:00+00:00]"
              }
            },
            "in": "query",
            "name": "q",
            "schema": {
              "maxLength": 2048,
              "nullable": false,
              "type": "string"
            }
          },
          {
            "$ref": "#/components/parameters/AnalyticsPageParam"
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleAnalyticsQuery": {
                    "value": {
                      "nextPageAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByNormLawFirm?pageNumber=2&q=caseTypeId%3A%22CTYPATMYyaJekdgj2c%22+AND+caseFiledDate%3A%5B2017-01-01T00%3A00%3A00%2B00%3A00TO2021-11-30T00%3A00%3A00%2B00%3A00%5D",
                      "object": "CaseCountAnalyticsByNormLawFirmResponse",
                      "previousPageAPI": null,
                      "results": [
                        {
                          "caseCount": 162106,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCe4bWBKbTz5KKxZ",
                          "normLawFirmId": "NORGYevnGAWWENhEQ9",
                          "normLawFirmName": "HUNT & HENRIQUES, INC.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 161097,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC2KsHLV3iwWeCLD",
                          "normLawFirmId": "NORGUp2Fhb2ZzX7Bqj",
                          "normLawFirmName": "SCOTT & ASSOCIATES, P.C.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 160475,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCQeqNHpaJ92wcZW",
                          "normLawFirmId": "NORG5QHzbdYXGTsdJM",
                          "normLawFirmName": "SCOTT ASSOCIATES, INC.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 160475,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCDGt6h3ULmQbzWV",
                          "normLawFirmId": "NORG6zBBcMDDFzNkPS",
                          "normLawFirmName": "SCOTT & ASSOCIATES, INC.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 160475,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRChaMnuZrwcgtWUb",
                          "normLawFirmId": "NORGJ84uQGxAUnCoXg",
                          "normLawFirmName": "SCOTT AND ASSOCIATES OF TEXAS, INC.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 160475,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC2FdANUH667iELN",
                          "normLawFirmId": "NORGSaGR8XvZqudzDZ",
                          "normLawFirmName": "SCOTT ASSOCIATES, LTD.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 160475,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCPBvnou5aj975Lo",
                          "normLawFirmId": "NORGTLa25YQgC6uemS",
                          "normLawFirmName": "PASADENA - SCOTT & ASSOCIATES, INC.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 160475,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCFEHnXWzTGNgrMp",
                          "normLawFirmId": "NORGTXvUmRQWVTxLKB",
                          "normLawFirmName": "SCOTT & ASSOCIATES, L.L.P.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 160475,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCJM5PFCrqggRLsc",
                          "normLawFirmId": "NORGrim9vN4JivwZ2J",
                          "normLawFirmName": "THE LAW OFFICE OF LAUREL SCOTT, P.L.L.C.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 79312,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC37g3yscSYRaKX4",
                          "normLawFirmId": "NORGTDJbwMuJaoP6GB",
                          "normLawFirmName": "MANDARICH LAW GROUP, L.L.P.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 68441,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCepuELv8vk87DKA",
                          "normLawFirmId": "NORGPbFSUh28SDT2ED",
                          "normLawFirmName": "SUTTELL & HAMMER, A.P.C.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 60157,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCPPGwUPeKsDtwes",
                          "normLawFirmId": "NORG2Ktg6cZtAdz4Vw",
                          "normLawFirmName": "RAUSCH, STURM, ISRAEL, ENERSON & HORNIK L.L.P.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 55938,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC27VDBiDj2aMaXL",
                          "normLawFirmId": "NORGDiJQPjeed2mtvx",
                          "normLawFirmName": "MIDLAND FUNDING L.L.C.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 53829,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCK5eVfa5V7rzJms",
                          "normLawFirmId": "NORGQFjdNb32YcU547",
                          "normLawFirmName": "MIDLAND FUNDING L.L.C.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 44821,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCNx3WJhMa9N4Aqt",
                          "normLawFirmId": "NORGUW32HoZaExRkGZ",
                          "normLawFirmName": "POLLACK AND ROSEN, P.A.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 39530,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCoERNDwQbtzqKhF",
                          "normLawFirmId": "NORGVZZJWPJpfCAr6p",
                          "normLawFirmName": "LAW OFFICE OF HARRIS & ZIDE, L.L.P.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 38945,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC5TvYL86gatu2oF",
                          "normLawFirmId": "NORGvg8zvoym28D3D6",
                          "normLawFirmName": "QUALL CARDOT L.L.P.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 38013,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCFvGkQr9MEnpgAj",
                          "normLawFirmId": "NORGcBsSQNBiiLxqsV",
                          "normLawFirmName": "PORTFOLIO REALTY ASSOCIATES, L.P.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 36839,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCFhAiiwyaZHxrZ6",
                          "normLawFirmId": "NORGmyvE5otKmJbj5B",
                          "normLawFirmName": "ANDREU, PALMA, LAVIN & SOLIS, P.L.L.C.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 34408,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCcVz4xRVGz2TVLp",
                          "normLawFirmId": "NORGJZWceBM2famVx9",
                          "normLawFirmName": "SHASTA PORTFOLIO ASSOCIATES L.L.C.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 34408,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC3fbtfu3XmboYYK",
                          "normLawFirmId": "NORGKu9PCVPDXKdXbu",
                          "normLawFirmName": "ENERGY PORTFOLIO ASSOCIATES L.L.C.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 34408,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCKuHZe6SsnzBGNr",
                          "normLawFirmId": "NORGWtwZKxBkfmJ9u4",
                          "normLawFirmName": "PARAMETRIC PORTFOLIO ASSOCIATES L.L.C.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 34408,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCbeLqKRMUf9efGR",
                          "normLawFirmId": "NORGpUnpSZ8AzStNXq",
                          "normLawFirmName": "CARIBFORNIA PORTFOLIO ASSOCIATES L.L.C.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 34408,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCJ9g6KhesvuUFpK",
                          "normLawFirmId": "NORGrPmQyLdx9NGHcT",
                          "normLawFirmName": "PORTFOLIO RECOVERY ASSOCIATES, L.L.C.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 34408,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCSpTmGXqPwviZvu",
                          "normLawFirmId": "NORGvqEg3wWMbvMnzg",
                          "normLawFirmName": "CONSERVATIVE PORTFOLIO ASSOCIATES",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 34408,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCSiCBBniB7vsDhB",
                          "normLawFirmId": "NORGwJXq4yuDfoGFNw",
                          "normLawFirmName": "PARAMETRIC PORTFOLIO ASSOCIATES, INC.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 28980,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCaoHAgD56rtWSLJ",
                          "normLawFirmId": "NORGexLsAWK25JF2Sc",
                          "normLawFirmName": "MIDLAND MANAGEMENT INC.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 28924,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC8gTHdXxpmA32qt",
                          "normLawFirmId": "NORG86wkvsxBS5seGG",
                          "normLawFirmName": "MIDLAND PROPERTY MANAGEMENT, INC.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 28924,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCY5efjzVnvDnLN2",
                          "normLawFirmId": "NORGAtvcGeeRvjQsAd",
                          "normLawFirmName": "MIDLAND PROPERTY MANAGEMENT INC",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 28924,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCDiFU2WSwyHsEtt",
                          "normLawFirmId": "NORGizjEaW7bgjMDed",
                          "normLawFirmName": "MIDLAND PROPERTIES & MANAGEMENT COMPANY, INC.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 28924,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC9xeNTBd4ajeYpD",
                          "normLawFirmId": "NORGxD4eiteT4aTmSw",
                          "normLawFirmName": "MIDLAND MANAGEMENT SOUTH, INC.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 25157,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC9ohQDbattQRYHh",
                          "normLawFirmId": "NORGUiD8DhqxzAUZco",
                          "normLawFirmName": "MITCHELL G. SLAMOWITZ, P.C.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 22585,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCaA2TX9vJHfK78r",
                          "normLawFirmId": "NORGseHUpfde9nyJ3Y",
                          "normLawFirmName": "SHUSTER & SABEN, L.L.C.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 22217,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCibUipjEpGMRjrf",
                          "normLawFirmId": "NORGASag797jMKFjW6",
                          "normLawFirmName": "LANDAU ASSOCIATES L.L.C.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 22217,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCHA4AHKPAADZGcQ",
                          "normLawFirmId": "NORGR6LfqWUeT9qwDB",
                          "normLawFirmName": "LANDAU & ASSOCIATES, P.A.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 20920,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC8BbP3ZaQgcYy4A",
                          "normLawFirmId": "NORGmUu5Q9MVzyUzQx",
                          "normLawFirmName": "HAYT, HAYT & LANDAU, P.L.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 19211,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCMQFXgpgg4C47Np",
                          "normLawFirmId": "NORGNfy5Ca84arywvw",
                          "normLawFirmName": "KENOSIAN & MIELE, L.L.P.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 18073,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCSzXqaaDpVXZqh7",
                          "normLawFirmId": "NORGgc3dQfZmRMXs6w",
                          "normLawFirmName": "MIDLAND CREDIT CORPORATION",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 17420,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC5SCH4JeUfxgHHE",
                          "normLawFirmId": "NORGJaRfXZeQLPnmGz",
                          "normLawFirmName": "GREGORY E. GUDIN P.A.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 16930,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCSRJg7hZcoKf4sk",
                          "normLawFirmId": "NORGZc3dKzKtGzwCXV",
                          "normLawFirmName": "RAS LAVRAR, L.L.C.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 14268,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCkubjh2k5E2uB8N",
                          "normLawFirmId": "NORGpQudX5T2ed223u",
                          "normLawFirmName": "LAW OFFICES OF HARRIS & DORN, L.L.P.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 14265,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCkDTrWHjfCMG5sq",
                          "normLawFirmId": "NORGrKhRqTonmLNkex",
                          "normLawFirmName": "LAW OFFICES OF JOEL A. HARRIS, A CALIFORNIA PROFESSIONAL CORPORATION",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 14263,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC8t4RjXTRGK4wJM",
                          "normLawFirmId": "NORG9nyK4uaxBfN7sA",
                          "normLawFirmName": "LAW OFFICES OF STEPHEN M. HARRIS, A PROFESSIONAL CORPORATION",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 14263,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC2UtnF59osv4gBn",
                          "normLawFirmId": "NORGQxyTsnuM7GVzyu",
                          "normLawFirmName": "LAW OFFICES OF PAT HARRIS A.P.C.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 14263,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCZPZRmf5cdz8eYZ",
                          "normLawFirmId": "NORGbWy2MKmaUCHwDU",
                          "normLawFirmName": "LAW OFFICES OF ANDREW A. HARRIS, A.P.C.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 14263,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCmNfXxQCmkG2bXv",
                          "normLawFirmId": "NORGkyK32n92fMnFE8",
                          "normLawFirmName": "LAW OFFICES OF SCOTT S. HARRIS, A PROFESSIONAL LAW CORPORATION",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 14263,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCJUa2KUmr3RfrX6",
                          "normLawFirmId": "NORGp5Cck7YxmoPftE",
                          "normLawFirmName": "LAW OFFICES OF ADAM P. HARRIS, L.L.C.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 13953,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCEbmNcJA6fzen9o",
                          "normLawFirmId": "NORGpXMyzHLNweBd7h",
                          "normLawFirmName": "ZWICKER & ASSOCIATES, P.C.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 13523,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCLWbTvd7JmpRAUd",
                          "normLawFirmId": "NORGEUHootZBohzPZB",
                          "normLawFirmName": "WINDHAVEN INSURANCE COMPANY",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 12594,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCQQYyDaP3DCAqhp",
                          "normLawFirmId": "NORGgevuMK9QCEBrPK",
                          "normLawFirmName": "COLLECTION AT LAW, INC.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 12531,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCi6fHrRcZdTcH6v",
                          "normLawFirmId": "NORG5F9ZLQqoaMpkiW",
                          "normLawFirmName": "JENKINS, WAGNON & YOUNG, P.C.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 11143,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCMZEUnem2BzTidF",
                          "normLawFirmId": "NORGoiPkeCL2tDaEPq",
                          "normLawFirmName": "GREENBAUM LAW GROUP L.L.P.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 10720,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCEC9FWvPZVXrQPv",
                          "normLawFirmId": "NORG8nNrWRWsvWBY72",
                          "normLawFirmName": "WESTON LEGAL PLLC",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 10630,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCboNFVqAMpcPKTr",
                          "normLawFirmId": "NORGhHNEPncdCcc8wr",
                          "normLawFirmName": "MODLIN SLINSKY, P.A.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 10578,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCPGUCHU3hdbsPA4",
                          "normLawFirmId": "NORGket3jFADuimKvw",
                          "normLawFirmName": "PENA LEGAL, P.L.L.C.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 10577,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCTKbycxMX4mq5re",
                          "normLawFirmId": "NORGqJia3XUotojdmL",
                          "normLawFirmName": "THORSEN LEGAL, P.L.L.C.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 10576,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCC3qbtK97suDUcG",
                          "normLawFirmId": "NORG9rZbriEqHFuB7x",
                          "normLawFirmName": "AUSTIN LEGAL, P.L.L.C.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 10575,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCEoNxYAXWxYTzeV",
                          "normLawFirmId": "NORGHLtudxtAbv4Tt9",
                          "normLawFirmName": "TRUSTEN LEGAL, P.L.L.C.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 10575,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC9egDxZX6daAox5",
                          "normLawFirmId": "NORGeWGbLJKjs4SPxK",
                          "normLawFirmName": "STORM LEGAL, P.L.L.C.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 10574,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCVngkN9NXS3ty55",
                          "normLawFirmId": "NORGMCsx2v6FokMNE9",
                          "normLawFirmName": "HORN LEGAL P.L.L.C.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 10574,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCRKvHMD7EAp3JKT",
                          "normLawFirmId": "NORGMcj4JvZSQfhYTg",
                          "normLawFirmName": "SIMMONS LEGAL P.L.L.C.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 10574,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCD6KwR4CvE2uGQy",
                          "normLawFirmId": "NORGZP3at6Ha4tUFNw",
                          "normLawFirmName": "JEFFERSON LEGAL, P.L.L.C.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 10574,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC35wrCFXnoiKiEy",
                          "normLawFirmId": "NORGZtDffS7rEgbhGt",
                          "normLawFirmName": "NELSON LEGAL, P.L.L.C.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 10574,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCHbas8HiQu6arty",
                          "normLawFirmId": "NORGhNaYcEm7TePaCP",
                          "normLawFirmName": "ARMSTRONG LEGAL P.L.L.C.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 10574,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRChAEp7ZqGq4uruG",
                          "normLawFirmId": "NORGiQRgYr66tmtSnw",
                          "normLawFirmName": "CARLSON LEGAL, P.L.L.C.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 10574,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC55EYATQygzuw5m",
                          "normLawFirmId": "NORGp9RjENQEbdYyu4",
                          "normLawFirmName": "PIERSON LEGAL, P.L.L.C.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 10574,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCHNSYPNBcebVUPJ",
                          "normLawFirmId": "NORGqfxNCdPYz7dZkE",
                          "normLawFirmName": "BRONSTON LEGAL P.L.L.C.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 10466,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCBWnPg6pNNA3yTB",
                          "normLawFirmId": "NORGgKJi7USqJYHN8Y",
                          "normLawFirmName": "COLE, SCOTT & KISSANE, P.A.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 10251,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCN3zmJ4KgtysbiM",
                          "normLawFirmId": "NORGSjQVR8s7iYLdCQ",
                          "normLawFirmName": "KELLEY KRONENBERG, P.A.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 9516,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC8jBZRcMJ3j4Vdi",
                          "normLawFirmId": "NORGzGA2asAv9gdny3",
                          "normLawFirmName": "FARMAR LAW GROUP, P.C.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 9425,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCKH4n9QQVoUvBsV",
                          "normLawFirmId": "NORGX7i5qAiLNeZXtH",
                          "normLawFirmName": "MARCADIS SINGER P.A.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 9184,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCmhZZKhCh2n6Vsx",
                          "normLawFirmId": "NORGVqYzLjNPr9bY2p",
                          "normLawFirmName": "JENKINS & YOUNG INC.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 8818,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCF4tPNHTL77HLb2",
                          "normLawFirmId": "NORGnhivtXdCRkDfcC",
                          "normLawFirmName": "MARIN, ELJAIEK, LOPEZ & MARTINEZ, P.L.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 8755,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCcWvH6K3TSjzo6H",
                          "normLawFirmId": "NORGFbPRfzgncG7nFp",
                          "normLawFirmName": "LOBEL FINANCIAL CORPORATION",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 8675,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCN5Etp4LsBWji8t",
                          "normLawFirmId": "NORGj6b8FmpBPzvvhQ",
                          "normLawFirmName": "PIP GUIDE LEGAL L.L.C.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 8642,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCP2FJSHQufNv68B",
                          "normLawFirmId": "NORGpwPt32HTknfp4w",
                          "normLawFirmName": "LOBEL INVESTMENT CORPORATION",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 8589,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCdrBz9DahZDjKeH",
                          "normLawFirmId": "NORGcvch3mbdQa85Um",
                          "normLawFirmName": "THE DEGRASSE LAW FIRM, P.C.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 8491,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCXc9vQEytwcfTC9",
                          "normLawFirmId": "NORGLEbaeNnHEFqnKJ",
                          "normLawFirmName": "DEBSKI & ASSOCIATES, P.A.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 8402,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCfXmEW38DPxNDMq",
                          "normLawFirmId": "NORG9bMSbam4kYDZWi",
                          "normLawFirmName": "THE REESE GROUP",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 8265,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCe7WoToT2NhexAA",
                          "normLawFirmId": "NORGB7J6ctssnQN87k",
                          "normLawFirmName": "UNIVERSAL PROPERTY AND CASUALTY INSURANCE COMPANY",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 8265,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCFoqnAwidzuoZcq",
                          "normLawFirmId": "NORGUFkU3v5fKGp44J",
                          "normLawFirmName": "UNIVERSAL PROPERTY & CASUALTY INSURANCE COMPANY",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 8252,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCDjiYMruJrNDvJe",
                          "normLawFirmId": "NORGhpud9kM4pCc6sJ",
                          "normLawFirmName": "MALEN & ASSOCIATES, P.C.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 8135,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCNYPP6vAAa8HAGZ",
                          "normLawFirmId": "NORGE3WXkwfpniE7df",
                          "normLawFirmName": "MIDLAND PROPERTY MANAGEMENT, INC.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 8135,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCggkZJjKbTimor6",
                          "normLawFirmId": "NORGFQaPexpP3dzRTR",
                          "normLawFirmName": "MIDLAND I-20 MANAGEMENT, INC.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 8135,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCoT7LJFohKh2Yyy",
                          "normLawFirmId": "NORGKH7HuSNuvyStu8",
                          "normLawFirmName": "MIDLAND PLATINUM MANAGEMENT, INC.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 8135,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCbjwMNj7nk27zKR",
                          "normLawFirmId": "NORGKVnVGbepDGKc79",
                          "normLawFirmName": "MIDLAND TPS MANAGEMENT, INC.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 8135,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCRyVqZYUGu9nkzy",
                          "normLawFirmId": "NORGWKAazzK4BS3SM7",
                          "normLawFirmName": "MIDLAND POOL MANAGEMENT, INC.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 8135,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCXnLbhgo9RBAbCD",
                          "normLawFirmId": "NORGtxhUFsZqW2FSJQ",
                          "normLawFirmName": "MIDLAND HOTEL MANAGEMENT, INC.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 8135,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCUHKSc7EjCBS65Z",
                          "normLawFirmId": "NORGxz7dYvvASfviH7",
                          "normLawFirmName": "MIDLAND INVESTMENT MANAGEMENT INC.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 7924,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC5FRXx9EMuFm7RD",
                          "normLawFirmId": "NORGXRj94BuQRJ9FqP",
                          "normLawFirmName": "LAW OFFICES OF ROBERT S. GITMEID, P.C.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 7804,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCKFRJuDLvYqrdJC",
                          "normLawFirmId": "NORGRZYpSaKkQodJFg",
                          "normLawFirmName": "AT COLLECTION, INC.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 7791,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC5ideDhBr2ETDWY",
                          "normLawFirmId": "NORG5Q9D37Bm9ktvc2",
                          "normLawFirmName": "IF COLLECTION INC.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 7791,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCCB88NNSBACUqbP",
                          "normLawFirmId": "NORGGhj2tnmzff7v7D",
                          "normLawFirmName": "OPTIQUE AT THE RODEO COLLECTION, INC.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 7791,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCLYaxyE6JvAWjcM",
                          "normLawFirmId": "NORGpGGiicNGAvaBBy",
                          "normLawFirmName": "JR COLLECTION, INC.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 7791,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCVXRsp8FQeHJwe2",
                          "normLawFirmId": "NORGxSGAysPZftM85m",
                          "normLawFirmName": "CALIFORNIA COLLECTION AGENCY OF SAN FRANCISCO, INC.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 7655,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCCXCUkD7L9z3nL8",
                          "normLawFirmId": "NORGZfEzC6q48vu2Ae",
                          "normLawFirmName": "BLEIER & COX, L.L.P.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 7331,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCFZA8CPWbah65GG",
                          "normLawFirmId": "NORGHDsq3ERU43rAah",
                          "normLawFirmName": "MCDOWELL ASSOCIATES, L.L.C.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 7331,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCbzFgQ9ehphREDi",
                          "normLawFirmId": "NORGNkaPHYvtN64CW7",
                          "normLawFirmName": "MCDOWELL ASSOCIATES, INC.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 7331,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCSsHnz7opBfSTec",
                          "normLawFirmId": "NORGr6PBN2vKdKubSo",
                          "normLawFirmName": "INDUSTRIAL AND COMMERCIAL MARKETING, INC.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 7300,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCZzChx9aEdGnukE",
                          "normLawFirmId": "NORGUDLPNUy82Mv2fC",
                          "normLawFirmName": "MORGAN & MORGAN DESIGNS, L.C.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        }
                      ],
                      "totalCaseCount": 1608649,
                      "totalNormLawFirmCount": 26815,
                      "totalPages": 269
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/CaseCountAnalyticsByNormLawFirmResponse"
                }
              }
            },
            "description": "OK"
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "sample400AnalyticsQuery": {
                    "value": {
                      "code": "UN400",
                      "details": "caseFiledDate is not in a required format",
                      "message": "INVALID_INPUT",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Bad Request"
          },
          "404": {
            "content": {
              "application/json": {
                "examples": {
                  "sample404AnalyticsQuery": {
                    "value": {
                      "code": "UN404",
                      "details": "caseTypeId not found",
                      "message": "RESOURCE_NOT_FOUND",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Not Found"
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "example-1": {
                    "value": {
                      "code": "UN500",
                      "details": "Has encountered a situation which needs to be handled.",
                      "message": "INTERNAL_SERVER_ERROR",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Internal Server Error"
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Case Count Analytics by Norm Law Firm.",
        "tags": [
          "Case Analytics API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [],
      "x-api-name": "CaseCountAnalyticsByNormLawFirmAPI",
      "x-unicourt-tag": "LawFirmAnalyticsAPIs"
    },
    "/caseCountAnalyticsByNormParty": {
      "get": {
        "description": "Returns Case Analytics by Party.\n## Terms and Connectors\n| Connector | Schema   | Description  | Example |\n| ------| ------| ------|------|\n| **AND** ||Find analytics containing all connected terms. The word AND does not have to be capitalized.|**courtId:\"CORTV4vCEaKrhystBz\" AND courtLocationId:\"COLO6b82CkRqS846hx\"**|\n| **IN()** || Allows you to specify multiple values, for a limit of up to 10.| **courtId IN (\"CORTKQiA4LJuv54tEj\",\"CORTV4vCEaKrhystBz\")**|\n| **courtId** | Multiple Ids Allowed |Find Analytics for a particular Court Object. | **courtId:\"CORTV4vCEaKrhystBz\"** |\n| **courtSystemId** | Multiple Ids Allowed |Find Analytics for a particular Court System Object. | **courtSystemId:\"COSYACHBdMewtaG5DY\"** |\n| **courtTypeId** | Multiple Ids Allowed |Find Analytics for a particular Court Type Object. | **courtTypeId:\"COTPm8jjc2PAydpFhq\"** |\n| **courtLocationId** | Multiple Ids Allowed |Find Analytics for a particular Court Location Object. | **courtLocationId:\"COLO6b82CkRqS846hx\"** |\n| **caseTypeId** | Multiple Ids Allowed |Find Analytics for a particular Case Type Object. | **caseTypeId:\"CTYPATMYyaJekdgj2c\"** |\n| **caseTypeGroupId** | Multiple Ids Allowed |Find Analytics for a particular Case Type Group Object. | **caseTypeGroupId:\"CTYG8gZ6hPRKhhYi4Y\"** |\n| **areaOfLawId** | Multiple Ids Allowed |Find Analytics for a particular Area Of Law Object. | **areaOfLawId:\"AOFL2UxEWfVmTPMyqf\"** |\n| **caseClassId** | Multiple Ids Allowed |Find Analytics for a particular Case Class Category Object. | **caseClassId:\"CSCLNjbKTN7Yfo2wdb\"** |\n| **partyRoleId** | Multiple Ids Allowed |Find Analytics for a particular Party Type Object. | **partyRoleId:\"PTYRiP8nMgPxBsPc5i\"** |\n| **partyRoleGroupId** | Multiple Ids Allowed |Find Analytics for a particular Party Type Group Object. | **partyRoleGroupId:\"PTYGBnjxbx6tKNfVEP\"** |\n| **attorneyPartyRoleId** | Multiple Ids Allowed |Find Analytics for a particular Attorney Party Type Object. | **attorneyPartyRoleId:\"PTYRiP8nMgPxBsPc5i\"** |\n| **attorneyPartyRoleGroupId** | Multiple Ids Allowed |Find Analytics for a particular Attorney Party Type Group Object. | **attorneyPartyRoleGroupId:\"PTYGBnjxbx6tKNfVEP\"** |\n| **normAttorneyId** | Multiple Ids Allowed  |Find Analytics for a particular norm Attorney Object. | **normAttorneyId:\"NATYfwmXwRHS279WPY\"** |\n| **normLawFirmId** | Multiple Ids Allowed  |Find Analytics for a particular Norm LawFirm Object. | **normLawFirmId:\"NORGrPmQyLdx9NGHcT\"** |\n| **normPartyId** | Multiple Ids Allowed |Find Analytics for a particular Party Object. | **normPartyId:\"NORGrPmQyLdx9NGHcT\"** |\n| **normJudgeId** | Multiple Ids Allowed  |Find Analytics for a particular Judge Object. | **normJudgeId:\"NJUDT7jCZyFNeLGpRq\"** |\n| **caseFiledDate** | Single Allowed  |Find Analytics within a particular date range. | **caseFiledDate:[2018-05-08T00:00:00+00:00TO2019-05-08T00:00:00+00:00]** |\n| **JurisdictionGeo** | Multiple filters Allowed |Find Analytics within a particular Jurisdiction Geo. | **(JurisdictionGeo:(state:\"California\"))** |\n| **confidenceScore** | Single Allowed |Find Analytics for a given ConfidenceScore  | **confidenceScore>=0.5** |\n| **bestMatch** | Single Allowed |True if the normEntity has the highest Confidence Score of all possible normEntities | **bestMatch:true** |\n<br>\n## Example Query\nQuery to get case count grouped by norm party of all cases with case type id CTYPATMYyaJekdgj2c and filed between Jan 1st, 2017 to Nov 30th,2021<br>\nq=caseTypeId:\"CTYPATMYyaJekdgj2c\" AND caseFiledDate:[2017-01-01T00:00:00+00:00TO2021-11-30T00:00:00+00:00]\n",
        "operationId": "getCaseCountAnalyticsByNormParty",
        "parameters": [
          {
            "description": "The URL encoded query you are searching for. The query can be as simple as a keyword, but supports many additional options and filters. All options are documented above.",
            "examples": {
              "HTTP200-modifiedValue": {
                "summary": "Default value",
                "value": ""
              },
              "HTTP200-sampleAnalyticsQuery": {
                "summary": "sampleAnalyticsQuery",
                "value": "caseTypeId:\"CTYPATMYyaJekdgj2c\" AND caseFiledDate:[2017-01-01T00:00:00+00:00TO2021-11-30T00:00:00+00:00]"
              },
              "HTTP400-sample400AnalyticsQuery": {
                "summary": "sample400AnalyticsQuery",
                "value": "caseTypeId:\"CTYPATMYyaJekdgj2c\" AND caseFiledDate:[2018-01-01T00:00:00+00:00TO2021-11-3000:00:00+00:00]"
              },
              "HTTP404-sample404AnalyticsQuery": {
                "summary": "sample404AnalyticsQuery",
                "value": "caseTypeId:\"CTYPATMYy1Jekdgj2c\" AND caseFiledDate:[2018-01-01T00:00:00+00:00TO2021-11-30T00:00:00+00:00]"
              }
            },
            "in": "query",
            "name": "q",
            "schema": {
              "maxLength": 2048,
              "nullable": false,
              "type": "string"
            }
          },
          {
            "$ref": "#/components/parameters/AnalyticsPageParam"
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleAnalyticsQuery": {
                    "value": {
                      "nextPageAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByNormParty?pageNumber=2&q=caseTypeId%3A%22CTYPATMYyaJekdgj2c%22+AND+caseFiledDate%3A%5B2017-01-01T00%3A00%3A00%2B00%3A00TO2021-11-30T00%3A00%3A00%2B00%3A00%5D",
                      "object": "CaseCountAnalyticsByNormPartyResponse",
                      "previousPageAPI": null,
                      "results": [
                        {
                          "caseCount": 135513,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCkPwkAFaPPRSFaH",
                          "normPartyId": "NORGjzurFTsVAN82PR",
                          "normPartyName": "PORTFOLIO RECOVERY ASSOCIATES, L.L.C.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 128860,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC6z7fiMJFTiVLuS",
                          "normPartyId": "NORGCJ2HBiSjcTuW3V",
                          "normPartyName": "PORTFOLIO ASSOCIATES, INC.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 128859,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCC4VkaxtX2Lwuzx",
                          "normPartyId": "NORGcBsSQNBiiLxqsV",
                          "normPartyName": "PORTFOLIO REALTY ASSOCIATES, L.P.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 102373,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCM4xKSJYkyDMoND",
                          "normPartyId": "NORGQFjdNb32YcU547",
                          "normPartyName": "MIDLAND FUNDING L.L.C.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 96542,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCXSpUBYGZFi6ekk",
                          "normPartyId": "NORGrPmQyLdx9NGHcT",
                          "normPartyName": "PORTFOLIO RECOVERY ASSOCIATES, L.L.C.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 95660,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC5fck5Rsvkfa7Fm",
                          "normPartyId": "NORGfe2EQTksGAKtwf",
                          "normPartyName": "PORTFOLIO RECOVERY GROUP L.L.C.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 95441,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCMp4hL7yBifW5GH",
                          "normPartyId": "NORGXX6jhQwzhVEuuv",
                          "normPartyName": "PORTFOLIO RECOVERY SERVICES INC.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 95441,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCVX3a8r23xVj8GT",
                          "normPartyId": "NORGybh4QVJRZxa8f6",
                          "normPartyName": "PORTFOLIO RECOVERY MANAGEMENT GROUP INC.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 91756,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCb4WcwRpvy6CkSv",
                          "normPartyId": "NORGdVzfQatfij3Gas",
                          "normPartyName": "PORTFOLIO RECOVERY ASSOCIATES L.L.C.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 91689,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCmQJ2vtf8p4SWyv",
                          "normPartyId": "NORGT9ofbDsKakpgm2",
                          "normPartyName": "PORTFOLIO RECOVERY GROUP, INC.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 91605,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCkpTRUqJNmyro92",
                          "normPartyId": "NORG327cRwWhthxjUA",
                          "normPartyName": "PORTFOLIO ASSOCIATES A/D, L.P.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 91605,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCoFUjQhtwKuSgQL",
                          "normPartyId": "NORGueQmSdRKnnGRxe",
                          "normPartyName": "PORTFOLIO ASSOCIATES, INCORPORATED",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 90108,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC4c9wBMdXazLcRy",
                          "normPartyId": "NORGDiJQPjeed2mtvx",
                          "normPartyName": "MIDLAND FUNDING L.L.C.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 81619,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCZD4JurtQjACjpe",
                          "normPartyId": "NORGtQk3WM49eAsaLA",
                          "normPartyName": "CAVALRY SPV I, L.L.C.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 81522,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCeRH6J39Dfd3h9o",
                          "normPartyId": "NORGZk3xP6aWE7MjYm",
                          "normPartyName": "THE CAVALRY, INC.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 81519,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCmAWq9JxQH5nZzR",
                          "normPartyId": "NORGhaBWjUZD8hGApz",
                          "normPartyName": "CAVALRY SPV II, L.L.C.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 81135,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC26nADCC5PGzLMs",
                          "normPartyId": "NORGwzq2n45B2N4AgH",
                          "normPartyName": "CAVALRY SPVIV, L.L.C.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 54227,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCXUuoT8JWezrVAA",
                          "normPartyId": "NORGtbZVREzjwmD9pR",
                          "normPartyName": "CAVALRY SPV I, L.L.C.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 49970,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCRenNjBe6FVybvH",
                          "normPartyId": "NORGAfXE3XPAhURpgg",
                          "normPartyName": "CAVALRY SPV II, L.L.C.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 41684,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCh9VY8yz8fxdwtq",
                          "normPartyId": "NORGXGSBxkZLZSyds4",
                          "normPartyName": "CONN APPLIANCES, INC.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 41532,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCbRbd7BCohqooUv",
                          "normPartyId": "NORG5vJS3987rhDquK",
                          "normPartyName": "CONN APPLIANCES CHARITABLE FOUNDATION, INC.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 41109,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCYGqHG2D8wVikBt",
                          "normPartyId": "NORGNkWAKfyZoHwFJN",
                          "normPartyName": "MIDLAND FUND MANAGEMENT A NEVADA LIMITED PARTNERSHIP",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 41083,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCiyX42Spiwz5UUR",
                          "normPartyId": "NORG3Kw7YUJXvGxHY4",
                          "normPartyName": "MIDLAND CREDIT CORPORATION",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 41083,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCenDnRkKQocCKPK",
                          "normPartyId": "NORG7VFV7k6KCziQqE",
                          "normPartyName": "MIDLAND CREDIT CORP.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 40978,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCazzDfHjpaVTnLz",
                          "normPartyId": "NORGyUwdPF7FFjfLxH",
                          "normPartyName": "MIDLAND MANAGEMENT, INC.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 40974,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCFB9vvSrvL3QXuJ",
                          "normPartyId": "NORGWTLg6zkwFKPLbu",
                          "normPartyName": "MIDLAND MANAGEMENT L.L.C.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 40973,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC7rPieqaFPpAU4d",
                          "normPartyId": "NORGEXqVKQu7YQgfoG",
                          "normPartyName": "MIDLAND BUSINESS MANAGEMENT, INC.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 40972,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCZCvKw6JvYkomVf",
                          "normPartyId": "NORGbKZ9BxMUAKSRVv",
                          "normPartyName": "MIDLANDS MANAGEMENT GROUP, INC.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 40947,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCnErwh6XWqkJXvK",
                          "normPartyId": "NORGu3ftfVmjf57MWu",
                          "normPartyName": "MIDLAND MANAGEMENT CORPORATION",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 40943,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC52QfricJtDm8Cn",
                          "normPartyId": "NORGAKE65cmTvpMp3s",
                          "normPartyName": "MIDLAND PACIFIC MANAGEMENT CORPORATION",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 39867,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC8hgZJPFp6XupDi",
                          "normPartyId": "NORG5eayRXqm6B3jdK",
                          "normPartyName": "PORTFOLIO RECOVERY, L.L.C.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 39867,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCNEuhJ38UtV6Mv6",
                          "normPartyId": "NORGbQVhtu2aF4ivuc",
                          "normPartyName": "PORTFOLIO RECOVERIES, INC.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 39867,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCkyrwkkhuwCSTE8",
                          "normPartyId": "NORGd6JARUenRxafyZ",
                          "normPartyName": "PORTFOLIO RECOVERY SERVICES, INC.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 39867,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRChVGAJ8kEbPyLAB",
                          "normPartyId": "NORGzoUCttSqhjjMzY",
                          "normPartyName": "PORTFOLIO RECOVERY L.L.C.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 36071,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCgqekBM4yb6E8sx",
                          "normPartyId": "NORGDNSZgTpdDuSxdB",
                          "normPartyName": "PORTFOLIO RECOVERY SOLUTIONS, L.L.C.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 35836,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCSAFaTGEVbnyEGJ",
                          "normPartyId": "NORGMZSznvVjGpUrn7",
                          "normPartyName": "CITIBANK SERVICE CORPORATION",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 35624,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCWdXmomd9wb2MNh",
                          "normPartyId": "NORGdwFfoLF6z2noav",
                          "normPartyName": "USA PROPERTY & CASUALTY INSURANCE COMPANY",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 33420,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCgw7GzZo37SD7Rx",
                          "normPartyId": "NORGKDdsXtktanDmiS",
                          "normPartyName": "PORTFOLIO SERVICE ASSOCIATES, INC.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 33420,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCFcvTmKCfyavMxZ",
                          "normPartyId": "NORGeB33otpypxapbm",
                          "normPartyName": "PORTFOLIO MANAGEMENT ASSOCIATES L.L.C.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 31645,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCb8VRtLGStANqAJ",
                          "normPartyId": "NORGvGCsFQBFWJU4hV",
                          "normPartyName": "UNITED PROPERTY & CASUALTY INSURANCE COMPANY",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 31435,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCLKjsnAKPg2o7Em",
                          "normPartyId": "NORGi4BCoPHA29x2mk",
                          "normPartyName": "PCA PROPERTY & CASUALTY INSURANCE COMPANY",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 31353,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCZxvY8ESgS3ciLb",
                          "normPartyId": "NORGx4N5MzqhEmhuFK",
                          "normPartyName": "OPORTUN, INC.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 31193,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCQBDpcgG67ZLnEZ",
                          "normPartyId": "NORGE3WXkwfpniE7df",
                          "normPartyName": "MIDLAND PROPERTY MANAGEMENT, INC.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 31193,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCjxYP5bYE4FBbZG",
                          "normPartyId": "NORGKH7HuSNuvyStu8",
                          "normPartyName": "MIDLAND PLATINUM MANAGEMENT, INC.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 31193,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRChk7TZPWCoiGBAX",
                          "normPartyId": "NORGKVnVGbepDGKc79",
                          "normPartyName": "MIDLAND TPS MANAGEMENT, INC.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 31193,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC3oYAhGqDPT2eGS",
                          "normPartyId": "NORGWKAazzK4BS3SM7",
                          "normPartyName": "MIDLAND POOL MANAGEMENT, INC.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 31193,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCbknw9xq8Yqioda",
                          "normPartyId": "NORGtxhUFsZqW2FSJQ",
                          "normPartyName": "MIDLAND HOTEL MANAGEMENT, INC.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 31193,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRChT7CJDhkNUVXiB",
                          "normPartyId": "NORGxz7dYvvASfviH7",
                          "normPartyName": "MIDLAND INVESTMENT MANAGEMENT INC.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 31040,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCEThUZ8qUVqVepW",
                          "normPartyId": "NORGCPfbUKcjZ6crR9",
                          "normPartyName": "CENTRAL PROPERTY AND CASUALTY INSURANCE COMPANY",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 29373,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCNG4WHMEUZCspSE",
                          "normPartyId": "NORGB7J6ctssnQN87k",
                          "normPartyName": "UNIVERSAL PROPERTY AND CASUALTY INSURANCE COMPANY",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 29373,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCh5cFCzCg3jerBa",
                          "normPartyId": "NORGUFkU3v5fKGp44J",
                          "normPartyName": "UNIVERSAL PROPERTY CASUALTY INSURANCE COMPANY",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 29354,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCezKoyqu7t7weJQ",
                          "normPartyId": "NORGrvVwM33eGzmESN",
                          "normPartyName": "SYNCHRONY BANK",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 29237,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCEFriFFSaEvrpoG",
                          "normPartyId": "NORGMBhNnENwkw2Ubs",
                          "normPartyName": "HERITAGE PROPERTY & CASUALTY INSURANCE COMPANY",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 28695,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCjGg29dpS56YZZr",
                          "normPartyId": "NORGYNB3AzmbkUGBen",
                          "normPartyName": "WELLS FARGO BANK, NATIONAL ASSOCIATION",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 26737,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCWqqNcva7WjyQou",
                          "normPartyId": "NORG55cGUj65YzVJGK",
                          "normPartyName": "CITIZENS PROPERTY INSURANCE INC.***NOT TO BE CONFUSED WITH WHICH IS THE GOVERNMENT AGENCY THAT PROVIDES PROPERTY INSURANCE.***",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 23697,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCCoMPsBhbznUk4K",
                          "normPartyId": "NORGzSg9ZXixSyfTRL",
                          "normPartyName": "JPMORGAN CHASE & CO.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 20378,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCLtBzCskLtktKay",
                          "normPartyId": "NORGgzFkko9cAAmuX9",
                          "normPartyName": "ONEMAIN FINANCIAL, INC.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 20224,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC2rDGJPyfpKnbEz",
                          "normPartyId": "NORGCVVh3RbErTkH3M",
                          "normPartyName": "PROGRESSIVE AMERICAN INSURANCECOMPANY",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 20196,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCWmtbBDQ5Vrsdmo",
                          "normPartyId": "NORGRjg8GYM396SS3p",
                          "normPartyName": "PROGRESSIVE EXPRESS INSURANCE COMPANY",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 20111,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCcARUTfT4TPT87V",
                          "normPartyId": "NORGVr2RkGP3L6nj6i",
                          "normPartyName": "PROGRESSIVE PROPERTY INSURANCE CORPORATION",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 20057,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC4BZKunj2ikHznJ",
                          "normPartyId": "NORG3PWWVXvi8nQYfE",
                          "normPartyName": "PROGRESSIVE SELECT INSURANCE COMPANY",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 20024,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC3Fzm3vEuoEGeeG",
                          "normPartyId": "NORGW6PzqtTKu5MpoR",
                          "normPartyName": "PROGRESSIVE TITLE INSURANCE CO.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 20024,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRChmywbMqjUoKC6C",
                          "normPartyId": "NORGjsoTLeuWqKqHav",
                          "normPartyName": "PROGRESSIVE CONSUMERS INSURANCE COMPANY",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 20008,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC8bmDB8TNfsKPeU",
                          "normPartyId": "NORGoRmYgaNLAwYDNE",
                          "normPartyName": "PROGRESSIVE BAYSIDE INSURANCE COMPANY",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 19580,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCe5Q3YauYx5fdrX",
                          "normPartyId": "NORGjMFWwq8nRtDeXx",
                          "normPartyName": "UNIFUND CCR, L.L.C.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 18588,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCKhpjgVqVnm7bMe",
                          "normPartyId": "NORG3JkrMoYbJ7EnPC",
                          "normPartyName": "CAVALRY, INC.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 18588,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCdGM7XpCX2hvxZ7",
                          "normPartyId": "NORGbYjeJ8hAAMe7xj",
                          "normPartyName": "CAVALRY SPC 1 LLC",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 18097,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCePgiHZQjXjrmjJ",
                          "normPartyId": "NORGKx3LbSkjyGEMDQ",
                          "normPartyName": "CAVALRY L.L.C.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 18097,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCFqXsNuaZ7yvxAe",
                          "normPartyId": "NORGYkFjU9TcpYRDhn",
                          "normPartyName": "CAVALRY, L.L.C.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 18012,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCN6UFjeYXeutQVu",
                          "normPartyId": "NORGY6WAJdGCjirs7r",
                          "normPartyName": "CAVALRY SPV IV, L.L.C.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 18008,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCoCfLTxvhatFjLS",
                          "normPartyId": "NORGUvmHXJzEg759XQ",
                          "normPartyName": "J.P. MORGAN CHASE NATIONAL CORPORATE SERVICES, INC.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 17695,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCKA2nkrpG2t33GR",
                          "normPartyId": "NORGizjEaW7bgjMDed",
                          "normPartyName": "MIDLAND PROPERTIES & MANAGEMENT COMPANY, INC.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 17690,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCSak3QSa238Apve",
                          "normPartyId": "NORG86wkvsxBS5seGG",
                          "normPartyName": "MIDLAND PROPERTY MANAGEMENT, INC.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 17690,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCRbNEidzwQNg4dJ",
                          "normPartyId": "NORGAtvcGeeRvjQsAd",
                          "normPartyName": "MIDLAND PROPERTY MANAGEMENT INC",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 17690,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCdMqzLySsuNwpgA",
                          "normPartyId": "NORGexLsAWK25JF2Sc",
                          "normPartyName": "MIDLAND MANAGEMENT INC.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 17631,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCTy9ivuCEzEmn2w",
                          "normPartyId": "NORGUrsJEJAnAFiGFJ",
                          "normPartyName": "UNIVERSAL CASUALTY INSURANCE COMPANY",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 17558,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCRJtNarKAaSo5gZ",
                          "normPartyId": "NORGPLJae7pZNQ92VW",
                          "normPartyName": "UNIVERSAL PROPERTY AND CASUALTY INSURANCE LEGAL COUNSEL OF FLORIDA, INC.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 17544,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCkzjxz2EBvoi5Ej",
                          "normPartyId": "NORGCvD6k4bkpKSxe3",
                          "normPartyName": "CAVALRY INC.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 17544,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCWZk2cEDsyLr5T2",
                          "normPartyId": "NORGJWPpNLekV7dKTm",
                          "normPartyName": "CAVALRY, L.L.C.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 17423,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCoSs3QhtwTbY46R",
                          "normPartyId": "NORG9eMY7PouXJJ3FP",
                          "normPartyName": "CAVALRY PROPERTIES I, L.P.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 16578,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCMC6aq4AdWEKaEx",
                          "normPartyId": "NORGkKvkz6TrRWeWW2",
                          "normPartyName": "BARCLAY DELAWARE BANK",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 16564,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCFoZLVoZpKyYV94",
                          "normPartyId": "NORGHMQjKHAbW8WZLc",
                          "normPartyName": "BARCLAYS BANK P.L.C.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 16548,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCikCLJeg55eCdKq",
                          "normPartyId": "NORGgc3dQfZmRMXs6w",
                          "normPartyName": "MIDLAND CREDIT CORPORATION",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 16203,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCQFyjZXH8dhrFCZ",
                          "normPartyId": "NORGqDDnEbVBYGmQYr",
                          "normPartyName": "VELOCITY INVESTMENT GROUP, INC.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 15985,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC9bk39uEUvvkgbE",
                          "normPartyId": "NORGTsZQ8yVC4Cgr83",
                          "normPartyName": "ONEMAIN FINANCIAL SERVICES, INC.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 15920,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCR5tcZ5aUDPRFgB",
                          "normPartyId": "NORGHSfScuKDcncQjU",
                          "normPartyName": "ONEMAIN FINANCIAL GROUP, L.L.C.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 15559,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCHdqRd7eXRPxkoP",
                          "normPartyId": "NORGE2iHVA2v8JhTMD",
                          "normPartyName": "JEFFERSON CAPITAL SYSTEMS",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 14712,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCLf5FNb6rQXoUrZ",
                          "normPartyId": "NORGmvQFK3inz9ZFC4",
                          "normPartyName": "JPMORGAN CHASE BANK, NATIONAL ASSOCIATION",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 14687,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCBeHY7UhQABNRpb",
                          "normPartyId": "NORGERs3rgNvCExTTP",
                          "normPartyName": "JPMORGAN CHASE CALIFORNIA CORPORATION",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 14687,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCAFbMv32C6wFyHi",
                          "normPartyId": "NORGFwuD7zFcKPtsMT",
                          "normPartyName": "JPMORGAN CHASE HOLDINGS L.L.C.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 14426,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC8nVPzbeNrwnhTB",
                          "normPartyId": "NORGoTDwGHCSvucFN7",
                          "normPartyName": "CITIBANK, N.A.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 14383,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCmCUcLKdzeLUAFg",
                          "normPartyId": "NORGqjfvxudNnZxQFk",
                          "normPartyName": "THE CITIBANK CLUB",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 14372,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCNYtTKiQBqdDga7",
                          "normPartyId": "NORGWwQGSp9g8dTN5R",
                          "normPartyName": "CITIBANK TEXAS N.A.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 12415,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCD9dmastSoZ438G",
                          "normPartyId": "NORG5fSGoxcpGhtxt7",
                          "normPartyName": "JEFFERSON CAPITAL CORP.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 11980,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC8yyh4QSUm2gMEa",
                          "normPartyId": "NORGCjagGumRZ35Mox",
                          "normPartyName": "VELOCITY INVESTMENT INC",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 11980,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC5tWHZcCeMg9Cpp",
                          "normPartyId": "NORGEhqxTxWMhPTVmK",
                          "normPartyName": "VELOCITY INVESTMENTS, L.L.C.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 11980,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCFS7LM7oQ5oqmVL",
                          "normPartyId": "NORGQqu4H9rmce4fWd",
                          "normPartyName": "VELOCITY INVESTMENTS, INC.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 11980,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCATBTWoRLVbDyuN",
                          "normPartyId": "NORGcFKXL6BWkBJAjz",
                          "normPartyName": "VELOCITY INVESTMENT, L.L.C.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 11967,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCCWbFEKFLRuhNAg",
                          "normPartyId": "NORG2qf53hjbDAwtn7",
                          "normPartyName": "VELOCITY INVESTMENT PROPERTIES L.L.C.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 11967,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCndZ4fnjBNTRECw",
                          "normPartyId": "NORGGaxKkm9nkcixLV",
                          "normPartyName": "VELOCITY INVESTMENT PARTNERS, L.L.C.",
                          "object": "CaseCountAnalyticsByNormParty"
                        }
                      ],
                      "totalCaseCount": 1604724,
                      "totalNormPartyCount": 465586,
                      "totalPages": 4656
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/CaseCountAnalyticsByNormPartyResponse"
                }
              }
            },
            "description": "OK"
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "sample400AnalyticsQuery": {
                    "value": {
                      "code": "UN400",
                      "details": "caseFiledDate is not in a required format",
                      "message": "INVALID_INPUT",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Bad Request"
          },
          "404": {
            "content": {
              "application/json": {
                "examples": {
                  "sample404AnalyticsQuery": {
                    "value": {
                      "code": "UN404",
                      "details": "caseTypeId not found",
                      "message": "RESOURCE_NOT_FOUND",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Not Found"
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "example-1": {
                    "value": {
                      "code": "UN500",
                      "details": "Has encountered a situation which needs to be handled.",
                      "message": "INTERNAL_SERVER_ERROR",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Internal Server Error"
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Case Count Analytics by Party.",
        "tags": [
          "Case Analytics API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [],
      "x-api-name": "CaseCountAnalyticsByNormPartyAPI",
      "x-unicourt-tag": "PartyAnalyticsAPIs"
    },
    "/caseCountAnalyticsByPartyRole": {
      "get": {
        "description": "Returns Case Analytics by Party Type.\n## Terms and Connectors\n| Connector | Schema   | Description  | Example |\n| ------| ------| ------|------|\n| **AND** ||Find analytics containing all connected terms. The word AND does not have to be capitalized.|**courtId:\"CORTV4vCEaKrhystBz\" AND courtLocationId:\"COLO6b82CkRqS846hx\"**|\n| **IN()** || Allows you to specify multiple values, for a limit of up to 10.| **courtId IN (\"CORTKQiA4LJuv54tEj\",\"CORTV4vCEaKrhystBz\")**|\n| **courtId** | Multiple Ids Allowed |Find Analytics for a particular Court Object. | **courtId:\"CORTV4vCEaKrhystBz\"** |\n| **courtSystemId** | Multiple Ids Allowed |Find Analytics for a particular Court System Object. | **courtSystemId:\"COSYACHBdMewtaG5DY\"** |\n| **courtTypeId** | Multiple Ids Allowed |Find Analytics for a particular Court Type Object. | **courtTypeId:\"COTPm8jjc2PAydpFhq\"** |\n| **courtLocationId** | Multiple Ids Allowed |Find Analytics for a particular Court Location Object. | **courtLocationId:\"COLO6b82CkRqS846hx\"** |\n| **caseTypeId** | Multiple Ids Allowed |Find Analytics for a particular Case Type Object. | **caseTypeId:\"CTYPATMYyaJekdgj2c\"** |\n| **caseTypeGroupId** | Multiple Ids Allowed |Find Analytics for a particular Case Type Group Object. | **caseTypeGroupId:\"CTYG8gZ6hPRKhhYi4Y\"** |\n| **areaOfLawId** | Multiple Ids Allowed |Find Analytics for a particular Area Of Law Object. | **areaOfLawId:\"AOFL2UxEWfVmTPMyqf\"** |\n| **caseClassId** | Multiple Ids Allowed |Find Analytics for a particular Case Class Category Object. | **caseClassId:\"CSCLNjbKTN7Yfo2wdb\"** |\n| **partyRoleId** | Multiple Ids Allowed |Find Analytics for a particular Party Type Object. | **partyRoleId:\"PTYRiP8nMgPxBsPc5i\"** |\n| **partyRoleGroupId** | Multiple Ids Allowed |Find Analytics for a particular Party Type Group Object. | **partyRoleGroupId:\"PTYGBnjxbx6tKNfVEP\"** |\n| **attorneyPartyRoleId** | Multiple Ids Allowed |Find Analytics for a particular Attorney Party Type Object. | **attorneyPartyRoleId:\"PTYRiP8nMgPxBsPc5i\"** |\n| **attorneyPartyRoleGroupId** | Multiple Ids Allowed |Find Analytics for a particular Attorney Party Type Group Object. | **attorneyPartyRoleGroupId:\"PTYGBnjxbx6tKNfVEP\"** |\n| **normPartyId** | Multiple Ids Allowed  |Find Analytics for a particular Party Object. | **normPartyId:\"NORGrPmQyLdx9NGHcT\"** |\n| **caseFiledDate** | Single Allowed  |Find Analytics within a particular date range. | **caseFiledDate:[2018-05-08T00:00:00+00:00TO2019-05-08T00:00:00+00:00]** |\n| **JurisdictionGeo** | Multiple filters Allowed |Find Analytics within a particular Jurisdiction Geo. | **(JurisdictionGeo:(state:\"California\"))** |\n| **confidenceScore** | Single Allowed |Find Analytics for a given ConfidenceScore  | **confidenceScore>=0.5** |\n| **bestMatch** | Single Allowed |True if the normEntity has the highest Confidence Score of all possible normEntities | **bestMatch:true** |\n<br>\n## Example Query\nQuery to get case count grouped by party role of all cases with case type id CTYPATMYyaJekdgj2c and filed between Jan 1st, 2017 to Nov 30th,2021<br>\nq=caseTypeId:\"CTYPATMYyaJekdgj2c\" AND caseFiledDate:[2017-01-01T00:00:00+00:00TO2021-11-30T00:00:00+00:00]\n",
        "operationId": "getCaseCountAnalyticsByPartyRole",
        "parameters": [
          {
            "description": "The URL encoded query you are searching for. The query can be as simple as a keyword, but supports many additional options and filters. All options are documented above.",
            "examples": {
              "HTTP200-modifiedValue": {
                "summary": "Default value",
                "value": ""
              },
              "HTTP200-sampleAnalyticsQuery": {
                "summary": "sampleAnalyticsQuery",
                "value": "caseTypeId:\"CTYPATMYyaJekdgj2c\" AND caseFiledDate:[2017-01-01T00:00:00+00:00TO2021-11-30T00:00:00+00:00]"
              },
              "HTTP400-sample400AnalyticsQuery": {
                "summary": "sample400AnalyticsQuery",
                "value": "caseTypeId:\"CTYPATMYyaJekdgj2c\" AND caseFiledDate:[2018-01-01T00:00:00+00:00TO2021-11-3000:00:00+00:00]"
              },
              "HTTP404-sample404AnalyticsQuery": {
                "summary": "sample404AnalyticsQuery",
                "value": "caseTypeId:\"CTYPATMYy1Jekdgj2c\" AND caseFiledDate:[2018-01-01T00:00:00+00:00TO2021-11-30T00:00:00+00:00]"
              }
            },
            "in": "query",
            "name": "q",
            "schema": {
              "maxLength": 2048,
              "nullable": false,
              "type": "string"
            }
          },
          {
            "$ref": "#/components/parameters/AnalyticsPageParam"
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleAnalyticsQuery": {
                    "value": {
                      "nextPageAPI": null,
                      "object": "CaseCountAnalyticsByPartyRoleResponse",
                      "previousPageAPI": null,
                      "results": [
                        {
                          "caseCount": 1420235,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRChAhzxhRWFzkT7U",
                          "object": "CaseCountAnalyticsByPartyRole",
                          "partyRole": {
                            "createdDate": "2022-05-27T00:50:33+00:00",
                            "description": null,
                            "name": "Plaintiff",
                            "object": "PartyRole",
                            "partyRoleGroup": "Party Offensive",
                            "partyRoleGroupId": "PTYGBnjxbx6tKNfVEP",
                            "partyRoleId": "PTYRiP8nMgPxBsPc5i"
                          }
                        },
                        {
                          "caseCount": 263270,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCfm6wQsfNyfq6Fj",
                          "object": "CaseCountAnalyticsByPartyRole",
                          "partyRole": {
                            "createdDate": "2022-05-27T00:50:33+00:00",
                            "description": null,
                            "name": "Defendant",
                            "object": "PartyRole",
                            "partyRoleGroup": "Party Defensive",
                            "partyRoleGroupId": "PTYG73uQdgJdpA3ebc",
                            "partyRoleId": "PTYRKo8tkTBFvJdCQp"
                          }
                        },
                        {
                          "caseCount": 37211,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCaB22cf7do9TEQM",
                          "object": "CaseCountAnalyticsByPartyRole",
                          "partyRole": {
                            "createdDate": "2022-05-27T00:50:33+00:00",
                            "description": null,
                            "name": "Petitioner",
                            "object": "PartyRole",
                            "partyRoleGroup": "Party Offensive",
                            "partyRoleGroupId": "PTYGBnjxbx6tKNfVEP",
                            "partyRoleId": "PTYR9F4zbteyj7ehmi"
                          }
                        },
                        {
                          "caseCount": 13324,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCTpTyqwiYbmq5wP",
                          "object": "CaseCountAnalyticsByPartyRole",
                          "partyRole": {
                            "createdDate": "2022-05-27T00:50:33+00:00",
                            "description": null,
                            "name": "Respondent",
                            "object": "PartyRole",
                            "partyRoleGroup": "Party Defensive",
                            "partyRoleGroupId": "PTYG73uQdgJdpA3ebc",
                            "partyRoleId": "PTYR7HcEREuPGAf853"
                          }
                        },
                        {
                          "caseCount": 10150,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCAi7jBZN8JbLf4H",
                          "object": "CaseCountAnalyticsByPartyRole",
                          "partyRole": {
                            "createdDate": "2022-05-27T00:50:33+00:00",
                            "description": null,
                            "name": "Garnishee",
                            "object": "PartyRole",
                            "partyRoleGroup": "Participant",
                            "partyRoleGroupId": "PTYGZPUbQam7EQqkoN",
                            "partyRoleId": "PTYRajfhLwjuxpWEq8"
                          }
                        },
                        {
                          "caseCount": 1993,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCKrwJVjkD5RHPYJ",
                          "object": "CaseCountAnalyticsByPartyRole",
                          "partyRole": {
                            "createdDate": "2022-05-27T00:50:33+00:00",
                            "description": null,
                            "name": "Assignee",
                            "object": "PartyRole",
                            "partyRoleGroup": "Participant",
                            "partyRoleGroupId": "PTYGZPUbQam7EQqkoN",
                            "partyRoleId": "PTYRZnYB53sdKYzR9p"
                          }
                        },
                        {
                          "caseCount": 1947,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCPVoLzMobMzNNdd",
                          "object": "CaseCountAnalyticsByPartyRole",
                          "partyRole": {
                            "createdDate": "2022-05-27T00:50:33+00:00",
                            "description": null,
                            "name": "Assignor",
                            "object": "PartyRole",
                            "partyRoleGroup": "Participant",
                            "partyRoleGroupId": "PTYGZPUbQam7EQqkoN",
                            "partyRoleId": "PTYRGrEEpD5Rupw2mH"
                          }
                        },
                        {
                          "caseCount": 1322,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC6Gm2DBfwoXBkaq",
                          "object": "CaseCountAnalyticsByPartyRole",
                          "partyRole": {
                            "createdDate": "2022-05-27T00:50:33+00:00",
                            "description": null,
                            "name": "Garnishor",
                            "object": "PartyRole",
                            "partyRoleGroup": "Participant",
                            "partyRoleGroupId": "PTYGZPUbQam7EQqkoN",
                            "partyRoleId": "PTYRE5RnpcpKEjbPg6"
                          }
                        },
                        {
                          "caseCount": 982,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCZS8eVuD6KPdTAb",
                          "object": "CaseCountAnalyticsByPartyRole",
                          "partyRole": {
                            "createdDate": "2022-05-27T00:50:33+00:00",
                            "description": null,
                            "name": "Counter-Defendant",
                            "object": "PartyRole",
                            "partyRoleGroup": "Party Defensive",
                            "partyRoleGroupId": "PTYG73uQdgJdpA3ebc",
                            "partyRoleId": "PTYR5CTkuQ4ondXv3y"
                          }
                        },
                        {
                          "caseCount": 886,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCay49Qn9sM9fopg",
                          "object": "CaseCountAnalyticsByPartyRole",
                          "partyRole": {
                            "createdDate": "2022-05-27T00:50:33+00:00",
                            "description": null,
                            "name": "Counter-Plaintiff",
                            "object": "PartyRole",
                            "partyRoleGroup": "Party Offensive",
                            "partyRoleGroupId": "PTYGBnjxbx6tKNfVEP",
                            "partyRoleId": "PTYR3CXaUV8rQVPRap"
                          }
                        },
                        {
                          "caseCount": 880,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCkbNRmscGJr4pKk",
                          "object": "CaseCountAnalyticsByPartyRole",
                          "partyRole": {
                            "createdDate": "2022-05-27T00:50:33+00:00",
                            "description": null,
                            "name": "Cross-Defendant",
                            "object": "PartyRole",
                            "partyRoleGroup": "Party Defensive",
                            "partyRoleGroupId": "PTYG73uQdgJdpA3ebc",
                            "partyRoleId": "PTYRKcquhCMhBTc3Eu"
                          }
                        },
                        {
                          "caseCount": 541,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCcUjSq3GLzHjkCa",
                          "object": "CaseCountAnalyticsByPartyRole",
                          "partyRole": {
                            "createdDate": "2022-05-27T00:50:33+00:00",
                            "description": null,
                            "name": "Cross-Plaintiff",
                            "object": "PartyRole",
                            "partyRoleGroup": "Party Offensive",
                            "partyRoleGroupId": "PTYGBnjxbx6tKNfVEP",
                            "partyRoleId": "PTYRBpED2qUNFNfJ3x"
                          }
                        },
                        {
                          "caseCount": 57,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCG4wJZMFK3pTTs6",
                          "object": "CaseCountAnalyticsByPartyRole",
                          "partyRole": {
                            "createdDate": "2022-05-27T00:50:33+00:00",
                            "description": null,
                            "name": "Trustee",
                            "object": "PartyRole",
                            "partyRoleGroup": "Participant",
                            "partyRoleGroupId": "PTYGZPUbQam7EQqkoN",
                            "partyRoleId": "PTYR89HLCa5Ro6Enp5"
                          }
                        },
                        {
                          "caseCount": 41,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCC5J5zwmQyRAiwF",
                          "object": "CaseCountAnalyticsByPartyRole",
                          "partyRole": {
                            "createdDate": "2022-05-27T00:50:33+00:00",
                            "description": null,
                            "name": "Appellant",
                            "object": "PartyRole",
                            "partyRoleGroup": "Party Offensive",
                            "partyRoleGroupId": "PTYGBnjxbx6tKNfVEP",
                            "partyRoleId": "PTYR4EZAKv3KnbrpaU"
                          }
                        },
                        {
                          "caseCount": 26,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCJRC3uf4GteVJfu",
                          "object": "CaseCountAnalyticsByPartyRole",
                          "partyRole": {
                            "createdDate": "2022-05-27T00:50:33+00:00",
                            "description": null,
                            "name": "Appellee",
                            "object": "PartyRole",
                            "partyRoleGroup": "Party Defensive",
                            "partyRoleGroupId": "PTYG73uQdgJdpA3ebc",
                            "partyRoleId": "PTYRQ6arXySCzuoRF3"
                          }
                        },
                        {
                          "caseCount": 19,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCkGkNKJsCc6Uu9G",
                          "object": "CaseCountAnalyticsByPartyRole",
                          "partyRole": {
                            "createdDate": "2022-05-27T00:50:33+00:00",
                            "description": null,
                            "name": "Debtor",
                            "object": "PartyRole",
                            "partyRoleGroup": "Participant",
                            "partyRoleGroupId": "PTYGZPUbQam7EQqkoN",
                            "partyRoleId": "PTYRUmwhfc2gFHhbMu"
                          }
                        },
                        {
                          "caseCount": 13,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRChxvqC2jfAoM5Hp",
                          "object": "CaseCountAnalyticsByPartyRole",
                          "partyRole": {
                            "createdDate": "2022-05-27T00:50:33+00:00",
                            "description": null,
                            "name": "Cross-Complainant",
                            "object": "PartyRole",
                            "partyRoleGroup": "Party Offensive",
                            "partyRoleGroupId": "PTYGBnjxbx6tKNfVEP",
                            "partyRoleId": "PTYR5Y6KutcKMSiHS9"
                          }
                        },
                        {
                          "caseCount": 9,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC9KXsuVQ4Z28ipX",
                          "object": "CaseCountAnalyticsByPartyRole",
                          "partyRole": {
                            "createdDate": "2022-05-27T00:50:33+00:00",
                            "description": null,
                            "name": "Counter-Claimant",
                            "object": "PartyRole",
                            "partyRoleGroup": "Party Offensive",
                            "partyRoleGroupId": "PTYGBnjxbx6tKNfVEP",
                            "partyRoleId": "PTYRg98gwi5QRm34ok"
                          }
                        },
                        {
                          "caseCount": 9,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCAqEmyhT9fTWV7Q",
                          "object": "CaseCountAnalyticsByPartyRole",
                          "partyRole": {
                            "createdDate": "2022-05-27T00:50:33+00:00",
                            "description": null,
                            "name": "Intervenor",
                            "object": "PartyRole",
                            "partyRoleGroup": "Participant",
                            "partyRoleGroupId": "PTYGZPUbQam7EQqkoN",
                            "partyRoleId": "PTYREXqxsFXardDVFz"
                          }
                        },
                        {
                          "caseCount": 7,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC8wqpxGQzKxQpGU",
                          "object": "CaseCountAnalyticsByPartyRole",
                          "partyRole": {
                            "createdDate": "2022-05-27T00:50:33+00:00",
                            "description": null,
                            "name": "Claimant",
                            "object": "PartyRole",
                            "partyRoleGroup": "Party Offensive",
                            "partyRoleGroupId": "PTYGBnjxbx6tKNfVEP",
                            "partyRoleId": "PTYRcxPxkhdTMCX4Cj"
                          }
                        },
                        {
                          "caseCount": 6,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCSpfGHZga6Ri6S2",
                          "object": "CaseCountAnalyticsByPartyRole",
                          "partyRole": {
                            "createdDate": "2022-05-27T00:50:33+00:00",
                            "description": null,
                            "name": "Interpleader",
                            "object": "PartyRole",
                            "partyRoleGroup": "Participant",
                            "partyRoleGroupId": "PTYGZPUbQam7EQqkoN",
                            "partyRoleId": "PTYRCoNqH3eDkPufoQ"
                          }
                        },
                        {
                          "caseCount": 6,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCespMB52us3Jzdg",
                          "object": "CaseCountAnalyticsByPartyRole",
                          "partyRole": {
                            "createdDate": "2022-05-27T00:50:33+00:00",
                            "description": null,
                            "name": "Receiver",
                            "object": "PartyRole",
                            "partyRoleGroup": "Participant",
                            "partyRoleGroupId": "PTYGZPUbQam7EQqkoN",
                            "partyRoleId": "PTYRRYyebgSuxu28MQ"
                          }
                        },
                        {
                          "caseCount": 5,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC2quXnEs6yoDNTJ",
                          "object": "CaseCountAnalyticsByPartyRole",
                          "partyRole": {
                            "createdDate": "2022-05-27T00:50:33+00:00",
                            "description": null,
                            "name": "Decedent",
                            "object": "PartyRole",
                            "partyRoleGroup": "Participant",
                            "partyRoleGroupId": "PTYGZPUbQam7EQqkoN",
                            "partyRoleId": "PTYRDv9dMSiy3XDvA6"
                          }
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC6zTtRx8FamJsYk",
                          "object": "CaseCountAnalyticsByPartyRole",
                          "partyRole": {
                            "createdDate": "2022-05-27T00:50:33+00:00",
                            "description": null,
                            "name": "Minor",
                            "object": "PartyRole",
                            "partyRoleGroup": "Participant",
                            "partyRoleGroupId": "PTYGZPUbQam7EQqkoN",
                            "partyRoleId": "PTYRBRNjAAboHZAHma"
                          }
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCj2DhkVcvDcNvG9",
                          "object": "CaseCountAnalyticsByPartyRole",
                          "partyRole": {
                            "createdDate": "2022-05-27T00:50:33+00:00",
                            "description": null,
                            "name": "Estate",
                            "object": "PartyRole",
                            "partyRoleGroup": "Participant",
                            "partyRoleGroupId": "PTYGZPUbQam7EQqkoN",
                            "partyRoleId": "PTYREFXseZTqqaPGU6"
                          }
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCPCBa77rrStUW4W",
                          "object": "CaseCountAnalyticsByPartyRole",
                          "partyRole": {
                            "createdDate": "2022-05-27T00:50:33+00:00",
                            "description": null,
                            "name": "Guardian Ad Litem",
                            "object": "PartyRole",
                            "partyRoleGroup": "Participant",
                            "partyRoleGroupId": "PTYGZPUbQam7EQqkoN",
                            "partyRoleId": "PTYRjNc9C4dqA3CBba"
                          }
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCGMo6ipJRBThtqL",
                          "object": "CaseCountAnalyticsByPartyRole",
                          "partyRole": {
                            "createdDate": "2022-05-27T00:50:33+00:00",
                            "description": null,
                            "name": "Witness",
                            "object": "PartyRole",
                            "partyRoleGroup": "Participant",
                            "partyRoleGroupId": "PTYGZPUbQam7EQqkoN",
                            "partyRoleId": "PTYRWue7JireKFbgJA"
                          }
                        }
                      ],
                      "totalCaseCount": 1601246,
                      "totalPages": 1,
                      "totalPartyRoleCount": 27
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/CaseCountAnalyticsByPartyRoleResponse"
                }
              }
            },
            "description": "OK"
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "sample400AnalyticsQuery": {
                    "value": {
                      "code": "UN400",
                      "details": "caseFiledDate is not in a required format",
                      "message": "INVALID_INPUT",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Bad Request"
          },
          "404": {
            "content": {
              "application/json": {
                "examples": {
                  "sample404AnalyticsQuery": {
                    "value": {
                      "code": "UN404",
                      "details": "caseTypeId not found",
                      "message": "RESOURCE_NOT_FOUND",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Not Found"
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "example-1": {
                    "value": {
                      "code": "UN500",
                      "details": "Has encountered a situation which needs to be handled.",
                      "message": "INTERNAL_SERVER_ERROR",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Internal Server Error"
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Case Count Analytics by Party Role.",
        "tags": [
          "Case Analytics API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [],
      "x-api-name": "CaseCountAnalyticsByPartyRoleAPI",
      "x-unicourt-tag": "CaseAnalyticsAPIs"
    },
    "/caseCountAnalyticsByPartyRoleGroup": {
      "get": {
        "description": "Returns Case Analytics by Party Type Group.\n## Terms and Connectors\n| Connector | Schema   | Description  | Example |\n| ------| ------| ------|------|\n| **AND** ||Find analytics containing all connected terms. The word AND does not have to be capitalized.|**courtId:\"CORTV4vCEaKrhystBz\" AND courtLocationId:\"COLO6b82CkRqS846hx\"**|\n| **IN()** || Allows you to specify multiple values, for a limit of up to 10.| **courtId IN (\"CORTKQiA4LJuv54tEj\",\"CORTV4vCEaKrhystBz\")**|\n| **courtId** | Multiple Ids Allowed |Find Analytics for a particular Court Object. | **courtId:\"CORTV4vCEaKrhystBz\"** |\n| **courtSystemId** | Multiple Ids Allowed |Find Analytics for a particular Court System Object. | **courtSystemId:\"COSYACHBdMewtaG5DY\"** |\n| **courtTypeId** | Multiple Ids Allowed |Find Analytics for a particular Court Type Object. | **courtTypeId:\"COTPm8jjc2PAydpFhq\"** |\n| **courtLocationId** | Multiple Ids Allowed |Find Analytics for a particular Court Location Object. | **courtLocationId:\"COLO6b82CkRqS846hx\"** |\n| **caseTypeId** | Multiple Ids Allowed |Find Analytics for a particular Case Type Object. | **caseTypeId:\"CTYPATMYyaJekdgj2c\"** |\n| **caseTypeGroupId** | Multiple Ids Allowed |Find Analytics for a particular Case Type Group Object. | **caseTypeGroupId:\"CTYG8gZ6hPRKhhYi4Y\"** |\n| **areaOfLawId** | Multiple Ids Allowed |Find Analytics for a particular Area Of Law Object. | **areaOfLawId:\"AOFL2UxEWfVmTPMyqf\"** |\n| **caseClassId** | Multiple Ids Allowed |Find Analytics for a particular Case Class Category Object. | **caseClassId:\"CSCLNjbKTN7Yfo2wdb\"** |\n| **partyRoleId** | Multiple Ids Allowed |Find Analytics for a particular Party Type Object. | **partyRoleId:\"PTYRiP8nMgPxBsPc5i\"** |\n| **partyRoleGroupId** | Multiple Ids Allowed |Find Analytics for a particular Party Type Group Object. | **partyRoleGroupId:\"PTYGBnjxbx6tKNfVEP\"** |\n| **attorneyPartyRoleId** | Multiple Ids Allowed |Find Analytics for a particular Attorney Party Type Object. | **attorneyPartyRoleId:\"PTYRiP8nMgPxBsPc5i\"** |\n| **attorneyPartyRoleGroupId** | Multiple Ids Allowed |Find Analytics for a particular Attorney Party Type Group Object. | **attorneyPartyRoleGroupId:\"PTYGBnjxbx6tKNfVEP\"** |\n| **normPartyId** | Multiple Ids Allowed  |Find Analytics for a particular Party Object. | **normPartyId:\"NORGrPmQyLdx9NGHcT\"** |\n| **caseFiledDate** | Single Allowed  |Find Analytics within a particular date range. | **caseFiledDate:[2018-05-08T00:00:00+00:00TO2019-05-08T00:00:00+00:00]** |\n| **JurisdictionGeo** | Multiple filters Allowed |Find Analytics within a particular Jurisdiction Geo. | **(JurisdictionGeo:(state:\"California\"))** |\n| **confidenceScore** | Single Allowed |Find Analytics for a given ConfidenceScore  | **confidenceScore>=0.5** |\n| **bestMatch** | Single Allowed |True if the normEntity has the highest Confidence Score of all possible normEntities | **bestMatch:true** |\n<br>\n## Example Query\nQuery to get case count grouped by Party Role Group of all cases with case type id CTYPATMYyaJekdgj2c and filed between Jan 1st, 2017 to Nov 30th,2021<br>\nq=caseTypeId:\"CTYPATMYyaJekdgj2c\" AND caseFiledDate:[2017-01-01T00:00:00+00:00TO2021-11-30T00:00:00+00:00]\n",
        "operationId": "getCaseCountAnalyticsByPartyRoleGroup",
        "parameters": [
          {
            "description": "The URL encoded query you are searching for. The query can be as simple as a keyword, but supports many additional options and filters. All options are documented above.",
            "examples": {
              "HTTP200-modifiedValue": {
                "summary": "Default value",
                "value": ""
              },
              "HTTP200-sampleAnalyticsQuery": {
                "summary": "sampleAnalyticsQuery",
                "value": "caseTypeId:\"CTYPATMYyaJekdgj2c\" AND caseFiledDate:[2017-01-01T00:00:00+00:00TO2021-11-30T00:00:00+00:00]"
              },
              "HTTP400-sample400AnalyticsQuery": {
                "summary": "sample400AnalyticsQuery",
                "value": "caseTypeId:\"CTYPATMYyaJekdgj2c\" AND caseFiledDate:[2018-01-01T00:00:00+00:00TO2021-11-3000:00:00+00:00]"
              },
              "HTTP404-sample404AnalyticsQuery": {
                "summary": "sample404AnalyticsQuery",
                "value": "caseTypeId:\"CTYPATMYy1Jekdgj2c\" AND caseFiledDate:[2018-01-01T00:00:00+00:00TO2021-11-30T00:00:00+00:00]"
              }
            },
            "in": "query",
            "name": "q",
            "schema": {
              "maxLength": 2048,
              "nullable": false,
              "type": "string"
            }
          },
          {
            "$ref": "#/components/parameters/AnalyticsPageParam"
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleAnalyticsQuery": {
                    "value": {
                      "nextPageAPI": null,
                      "object": "CaseCountAnalyticsByPartyRoleGroupResponse",
                      "previousPageAPI": null,
                      "results": [
                        {
                          "caseCount": 1421058,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCkAoGeBwtnYEyL4",
                          "object": "CaseCountAnalyticsByPartyRoleGroup",
                          "partyRoleGroup": {
                            "createdDate": "2022-05-27T00:50:33+00:00",
                            "description": null,
                            "name": "Party Offensive",
                            "object": "PartyRoleGroup",
                            "partyRoleGroupId": "PTYGBnjxbx6tKNfVEP"
                          }
                        },
                        {
                          "caseCount": 264276,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCjeTCYvCeZEvuPs",
                          "object": "CaseCountAnalyticsByPartyRoleGroup",
                          "partyRoleGroup": {
                            "createdDate": "2022-05-27T00:50:33+00:00",
                            "description": null,
                            "name": "Party Defensive",
                            "object": "PartyRoleGroup",
                            "partyRoleGroupId": "PTYG73uQdgJdpA3ebc"
                          }
                        },
                        {
                          "caseCount": 14652,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCBh99NzZ7M6Z6RR",
                          "object": "CaseCountAnalyticsByPartyRoleGroup",
                          "partyRoleGroup": {
                            "createdDate": "2022-05-27T00:50:33+00:00",
                            "description": null,
                            "name": "Participant",
                            "object": "PartyRoleGroup",
                            "partyRoleGroupId": "PTYGZPUbQam7EQqkoN"
                          }
                        }
                      ],
                      "totalCaseCount": 1601246,
                      "totalPages": 1,
                      "totalPartyRoleGroupCount": 3
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/CaseCountAnalyticsByPartyRoleGroupResponse"
                }
              }
            },
            "description": "OK"
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "sample400AnalyticsQuery": {
                    "value": {
                      "code": "UN400",
                      "details": "caseFiledDate is not in a required format",
                      "message": "INVALID_INPUT",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Bad Request"
          },
          "404": {
            "content": {
              "application/json": {
                "examples": {
                  "sample404AnalyticsQuery": {
                    "value": {
                      "code": "UN404",
                      "details": "caseTypeId not found",
                      "message": "RESOURCE_NOT_FOUND",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Not Found"
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "example-1": {
                    "value": {
                      "code": "UN500",
                      "details": "Has encountered a situation which needs to be handled.",
                      "message": "INTERNAL_SERVER_ERROR",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Internal Server Error"
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Case Count Analytics by Party Role Group.",
        "tags": [
          "Case Analytics API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [],
      "x-api-name": "CaseCountAnalyticsByPartyRoleGroupAPI",
      "x-unicourt-tag": "CaseAnalyticsAPIs"
    },
    "/caseDocument/{caseDocumentId}": {
      "get": {
        "description": "Gets details for a requested Document ID.",
        "operationId": "getDocumentById",
        "parameters": [],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "CaseDocument": {
                    "$ref": "#/components/examples/CaseApiCaseDocumentResponse"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/CaseDocument"
                }
              }
            },
            "description": "The request is recieved."
          },
          "404": {
            "content": {
              "application/json": {
                "examples": {
                  "RequestedCaseDocumentIdIsInvalid": {
                    "$ref": "#/components/examples/FailureInvalidCaseDocumentId"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Resource Not Found"
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "ServerError": {
                    "$ref": "#/components/examples/FailureServerError"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Server Error"
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Gets details for a requested Document ID.",
        "tags": [
          "Case Documents API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "POST",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [
        {
          "description": "Specific Case Dcoument ID for which you want the data for.",
          "examples": {
            "HTTP200-CaseDocument": {
              "summary": "CaseDocument",
              "value": "CDOCag3e5eba43b870"
            },
            "HTTP404-RequestedCaseDocumentIdIsInvalid": {
              "summary": "RequestedCaseDocumentIdIsInvalid",
              "value": "CDOC55gn47Yuteq3R"
            }
          },
          "in": "path",
          "name": "caseDocumentId",
          "required": true,
          "schema": {
            "example": "CDOCag3e5eba43b870",
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          }
        }
      ],
      "x-api-name": "CaseDocumentAPI",
      "x-unicourt-tag": "CaseDocumentsAPIs"
    },
    "/caseDocumentDownload/{caseDocumentId}": {
      "get": {
        "description": "Gets downloadable URL for a requested Document ID.",
        "operationId": "getCaseDocumentDownloadById",
        "parameters": [
          {
            "description": "If the document you want to download is a preview of a document.",
            "examples": {
              "HTTP200-sampleResponse": {
                "summary": "sampleResponse",
                "value": ""
              },
              "HTTP200-sampleResponse1": {
                "summary": "sampleResponse1",
                "value": ""
              },
              "HTTP400-sample400Response": {
                "summary": "sample400Response",
                "value": 123
              },
              "HTTP404-sample404Response": {
                "summary": "sample404Response",
                "value": true
              },
              "HTTP451-sample451Response": {
                "summary": "sample451Response",
                "value": ""
              }
            },
            "in": "query",
            "name": "isPreviewDocument",
            "schema": {
              "default": false,
              "type": "boolean"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleResponse": {
                    "value": {
                      "caseDocumentDownloadAPI": "https://enterpriseapi.unicourt.com/caseDocumentDownload/CDOCaqe42a86394f63",
                      "caseDocumentId": "CDOCaqe42a86394f63",
                      "expiryDate": "2023-02-28T16:57:54+00:00",
                      "fileUrl": "https://casedocs.unicourt.com/ca/sm/CDOCaqe42a86394f63_1648691795.pdf?Expires=1677603474&Key-Pair-Id=K1K4HTY1FAWDYU&Signature=TtwJcIUIwc~Sr-egZEnDjO8HbBU3EKDQ~0AZoesSRucPSTf-IkxFtKXxK-~iwdzIFVkeppleK-VA75p89bWDZvuYLxjXJkXFhdIlh9PfaRzCklU7nggIGyRTSzX7jaka2Xndl2s01P3~irtjpDdIJyF8DZZU1kwovgc3306N1AX~k29xFDh-YG2GHXY8uwU6kIo7GmeDRsnkcmjhhDBTT0EshwqFsRVbO~B8LHvseTznRaVa7a5JXmCamKqRQJAfghMCYrryaUw5hky3oHNDQFik9pDJMbgGf22Wg90sjaBgpP3eWvX~bn8qkWdsu2Uxub7j7yrQhJ8ntXNaH6Ugxg__",
                      "object": "DocumentDownload"
                    }
                  },
                  "sampleResponse1": {
                    "value": {
                      "code": "UN101",
                      "details": "The Document is no longer available in the Court.",
                      "message": "NO_LONGER_AVAILABLE_IN_COURT",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "oneOf": [
                    {
                      "$ref": "#/components/schemas/DocumentDownload"
                    },
                    {
                      "$ref": "#/components/schemas/Exception"
                    }
                  ]
                }
              }
            },
            "description": "The request is recieved."
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "sample400Response": {
                    "$ref": "#/components/examples/FailureDocumentNotAvailableInCrowdSourceLibrary"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Invalid Input Parameter"
          },
          "403": {
            "content": {
              "application/json": {
                "examples": {
                  "sample403Callbacks": {
                    "value": {
                      "code": "UN203",
                      "details": "You have reached 300 Document Download per day. Please contact support to increase this limit.",
                      "message": "LIMIT_REACHED",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Forbidden"
          },
          "404": {
            "content": {
              "application/json": {
                "examples": {
                  "sample404Response": {
                    "value": {
                      "code": "UN404",
                      "details": "Invalid request. Please check the `caseDocumentId`.",
                      "message": "RESOURCE_NOT_FOUND",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Not Found"
          },
          "451": {
            "content": {
              "application/json": {
                "examples": {
                  "sample451Response": {
                    "value": {
                      "code": "UN100",
                      "details": "This Document is no longer available as it is Sealed from the Court.",
                      "message": "SEALED",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Sealed Case"
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "Internal_Server_Error": {
                    "value": {
                      "code": "UN500",
                      "details": "Something went wrong. Please retry again later.",
                      "message": "INTERNAL_SERVER_ERROR",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Internal Server Error"
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Gets downloadable URL for a requested Document ID.",
        "tags": [
          "Case Documents API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "POST",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [
        {
          "description": "Document ID which you want to download.",
          "examples": {
            "HTTP200-sampleResponse": {
              "summary": "sampleResponse",
              "value": "CDOCaqe42a86394f63"
            },
            "HTTP200-sampleResponse1": {
              "summary": "sampleResponse1",
              "value": "CDOCdlb2291cdcb434"
            },
            "HTTP400-sample400Response": {
              "summary": "sample400Response",
              "value": "CDOCcro1e1365f86ec"
            },
            "HTTP404-sample404Response": {
              "summary": "sample404Response",
              "value": "CDOC123"
            },
            "HTTP451-sample451Response": {
              "summary": "sample451Response",
              "value": "CDOCag4af1cd9ed21f"
            }
          },
          "in": "path",
          "name": "caseDocumentId",
          "required": true,
          "schema": {
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          }
        }
      ],
      "x-api-name": "CaseDocumentDownloadAPI",
      "x-unicourt-tag": "CaseDocumentsAPIs"
    },
    "/caseDocumentOrder": {
      "put": {
        "callbacks": {
          "CaseDocumentOrderCompletionWSS": {
            "<WSS liveCallbacks>": {
              "post": {
                "requestBody": {
                  "content": {
                    "application/json": {
                      "examples": {
                        "Request_Completed": {
                          "$ref": "#/components/examples/CaseDocumentOrderCallbackSuccess"
                        },
                        "Request_Failure_Document_Already_Downloaded": {
                          "$ref": "#/components/examples/CaseDocumentOrderCallbackFailureDownloadedDocument"
                        },
                        "Request_Failure_Document_Unavailable": {
                          "$ref": "#/components/examples/CaseDocumentOrderCallbackFailureDocumentUnavailable"
                        },
                        "Request_Failure_Preview_Already_Downloaded": {
                          "$ref": "#/components/examples/CaseDocumentOrderCallbackFailurePreviewDownloaded"
                        },
                        "Request_Failure_Preview_Not_Supported": {
                          "$ref": "#/components/examples/CaseDocumentOrderCallbackFailurePreviewNotSupported"
                        },
                        "Request_InProgress": {
                          "$ref": "#/components/examples/CaseDocumentOrderCallbackInProgress"
                        }
                      },
                      "schema": {
                        "$ref": "#/components/schemas/CaseDocumentOrderCallback"
                      }
                    }
                  },
                  "description": "Case Document Order Callback completion notification. This will be for type=liveCallbacks and type=historicalCallbacks endpoints in WSS. Case Document Order Callback Completion will come via liveCallbacks and historicalCallbacks with the object as CaseDocumentOrderCallback. Refer <a href=\"https://docs.unicourt.com/knowledge-base/endpoints-supporting-websocket-protocol#case-documents-order-api\">  Websocket Documentation </a>"
                },
                "responses": {
                  "200": {
                    "content": {
                      "application/json": {
                        "example": {
                          "message": "success"
                        },
                        "schema": {
                          "$ref": "#/components/schemas/Success"
                        }
                      }
                    },
                    "description": "OK"
                  }
                }
              }
            }
          }
        },
        "description": "Add Case Document Order for requested Document Ids.",
        "operationId": "orderCaseDocument",
        "requestBody": {
          "content": {
            "application/json": {
              "examples": {
                "Request_For_Document": {
                  "$ref": "#/components/examples/CaseDocumentOrderRequest"
                },
                "Request_For_Pacer_Documents": {
                  "$ref": "#/components/examples/CasePacerDocumentOrderRequest"
                },
                "Request_For_Preview_Document": {
                  "$ref": "#/components/examples/CaseDocumentOrderPreviewRequest"
                }
              },
              "schema": {
                "$ref": "#/components/schemas/CaseDocumentOrderRequest"
              }
            }
          },
          "description": "If the Case Document Order is for Preview, then the value for ``isPreviewOnly`` should be ``true`` else ``false``.\n"
        },
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleCallbacks": {
                    "value": {
                      "callbackGeneratedDate": null,
                      "caseDocument": null,
                      "caseDocumentId": "CDOCdl27f64f1df850",
                      "caseDocumentOrderCallbackAPI": "https://enterpriseapi.unicourt.com/caseDocumentOrder/callbacks/CBDOim76295e4280R3",
                      "caseDocumentOrderCallbackId": "CBDOim76295e4280R3",
                      "exception": null,
                      "file": null,
                      "object": "CaseDocumentOrderCallback",
                      "status": "IN_PROGRESS"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/CaseDocumentOrderCallback"
                }
              }
            },
            "description": "OK"
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "sample400Callbacks": {
                    "value": {
                      "code": "UN400",
                      "details": "Invalid request. Please check the `caseDocumentId`.",
                      "message": "INVALID_INPUT",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Bad Request"
          },
          "402": {
            "content": {
              "application/json": {
                "examples": {
                  "sample402Response": {
                    "value": {
                      "code": "UN402",
                      "details": "You have reached your limit of 2$ for Document Orders. Please contact support.",
                      "message": "PAYMENT_REQUIRED",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Payment Required"
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "Internal_Server_Error": {
                    "value": {
                      "code": "UN500",
                      "details": "Something went wrong. Please retry again later.",
                      "message": "INTERNAL_SERVER_ERROR",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Internal Server Error"
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Add Case Document Order for requested Document Ids.",
        "tags": [
          "Case Documents API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "PUT",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "x-api-name": "CaseDocumentOrderAPI",
      "x-unicourt-tag": "CaseDocumentsAPIs"
    },
    "/caseDocumentOrder/callbacks": {
      "get": {
        "description": "Get Case Document Order Callback list for a requested Date.",
        "operationId": "getCaseDocumentOrderCallbacks",
        "parameters": [
          {
            "description": "Date for which fetch the Case Document Order Callback list. By default, the date will be set to current date.",
            "examples": {
              "HTTP200-sampleCallbacks": {
                "summary": "sampleCallbacks",
                "value": "2022-03-08T10:17:56+00:00"
              },
              "HTTP400-sample400Callbacks": {
                "summary": "sample400Callbacks",
                "value": "2022-03-08"
              }
            },
            "in": "query",
            "name": "date",
            "schema": {
              "format": "date-time",
              "maxLength": 25,
              "minLength": 25,
              "nullable": false,
              "type": "string"
            }
          },
          {
            "description": "Status of Document Order callbacks. Default status will fetch all callbacks.",
            "examples": {
              "HTTP200-sampleCallbacks": {
                "summary": "sampleCallbacks",
                "value": ""
              },
              "HTTP400-sample400Callbacks": {
                "summary": "sample400Callbacks",
                "value": "COMPLETED"
              }
            },
            "in": "query",
            "name": "status",
            "schema": {
              "enum": [
                "IN_PROGRESS",
                "COMPLETE",
                "FAILURE"
              ],
              "maxLength": 11,
              "minLength": 7,
              "nullable": false,
              "type": "string"
            }
          },
          {
            "description": "Page to fetch the Case Document Order Callback list.<br>\n  - Minimum: 1\n",
            "examples": {
              "HTTP200-sampleCallbacks": {
                "summary": "sampleCallbacks",
                "value": 1
              },
              "HTTP400-sample400Callbacks": {
                "summary": "sample400Callbacks",
                "value": "A1"
              }
            },
            "in": "query",
            "name": "pageNumber",
            "schema": {
              "default": 1,
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleCallbacks": {
                    "value": {
                      "callbackArray": [
                        {
                          "callbackGeneratedDate": "2022-05-31T09:49:10+00:00",
                          "caseDocument": null,
                          "caseDocumentId": "CDOCdldea56768c2e2",
                          "caseDocumentOrderCallbackAPI": "https://enterpriseapi.unicourt.com/caseDocumentOrder/callbacks/CBDOpOX6295e496mG3",
                          "caseDocumentOrderCallbackId": "CBDOpOX6295e496mG3",
                          "exception": {
                            "code": "UN400",
                            "details": "Cannot accept caseDocumentOrder request as the requested document is already available in UniCourt Crowd Source Library.",
                            "message": "INVALID_INPUT",
                            "object": "Exception"
                          },
                          "file": null,
                          "object": "CaseDocumentOrderCallback",
                          "status": "FAILURE"
                        },
                        {
                          "callbackGeneratedDate": "2022-05-31T09:47:34+00:00",
                          "caseDocument": {
                            "addedToLibraryDate": "2022-05-31T09:47:34+00:00",
                            "caseDocumentId": "CDOCdl92245f38969c",
                            "childDocumentIdArray": [],
                            "description": "JURY TRIAL; Judicial Officer: BELLAN, MELISSA; Hearing Time: 9:00 AM; Cancel Reason: BY COURT ADMINISTRATOR",
                            "documentFiledDate": "2022-07-12T00:00:00+00:00",
                            "downloadAPI": "https://enterpriseapi.unicourt.com/caseDocumentDownload/CDOCdl92245f38969c",
                            "estimatedOrderDuration": "withinMinutes",
                            "firstFetchDate": "2022-05-27T06:23:17+00:00",
                            "inLibrary": true,
                            "isPreviewAvailable": false,
                            "name": "CCL#2 JURY TRIAL LTR",
                            "object": "CaseDocument",
                            "pages": null,
                            "parentDocumentId": null,
                            "previewDocument": null,
                            "price": 0,
                            "sortOrder": null,
                            "sourceDataStatus": null
                          },
                          "caseDocumentId": "CDOCdl92245f38969c",
                          "caseDocumentOrderCallbackAPI": "https://enterpriseapi.unicourt.com/caseDocumentOrder/callbacks/CBDOjxl6295e428mz3",
                          "caseDocumentOrderCallbackId": "CBDOjxl6295e428mz3",
                          "exception": null,
                          "file": {
                            "expiryDate": "2022-07-08T09:41:39+00:00",
                            "fileUrl": "https://casedocs.unicourt.com/fl/mac/CDOCcrcfa6f5382361_1676967145.pdf?Expires=1677571948&Key-Pair-Id=K1K4HTY1FAWDYU&Signature=VOYB8~Ox1MBwHQQM~R1WJhVh92aubgoMU48ObN4YPqGrhKFxfIg1yquS4BEqTkr5eQ2VepbUoAefwGBJxUYNGpblSvX7FfSV-VI6P~B6ZcIqPt1ZmeQBD6IDGTJN646mzAE~xDPmHvJgCUWtcfx4zOgWnKeDMpifnM7RqK3rhWPTtxbi-ue6C8o57TaJB~hXjfWTBcl2JIGDD8dg8fidGdoT2rlnhuP~nJbGQstetZ~rHI-w7sbOMU5PX8NyJYnCRE8LywWPRsfGjgyZ1U2imT1t~QzA1wWSTQFmupr65RB-o26XASDhlYWt2As8Dm7mFeKK1uwL1v5HAUkDzlS34A__",
                            "name": "CCL#2 JURY TRIAL LTR",
                            "object": "ExportFile"
                          },
                          "object": "CaseDocumentOrderCallback",
                          "status": "COMPLETE"
                        },
                        {
                          "callbackGeneratedDate": "2022-05-31T09:47:30+00:00",
                          "caseDocument": {
                            "addedToLibraryDate": "2022-05-31T09:47:28+00:00",
                            "caseDocumentId": "CDOCdl27f64f1df850",
                            "childDocumentIdArray": [],
                            "description": "JURY TRIAL; Judicial Officer: BELLAN, MELISSA; Hearing Time: 9:00 AM; Cancel Reason: BY COURT ADMINISTRATOR",
                            "documentFiledDate": "2022-07-12T00:00:00+00:00",
                            "downloadAPI": "https://enterpriseapi.unicourt.com/caseDocumentDownload/CDOCdl27f64f1df850",
                            "estimatedOrderDuration": "withinMinutes",
                            "firstFetchDate": "2022-05-27T06:23:17+00:00",
                            "inLibrary": true,
                            "isPreviewAvailable": false,
                            "name": "CCL#2 JURY TRIAL LTR",
                            "object": "CaseDocument",
                            "pages": null,
                            "parentDocumentId": null,
                            "previewDocument": null,
                            "price": 0,
                            "sortOrder": null,
                            "sourceDataStatus": null
                          },
                          "caseDocumentId": "CDOCdl27f64f1df850",
                          "caseDocumentOrderCallbackAPI": "https://enterpriseapi.unicourt.com/caseDocumentOrder/callbacks/CBDOim76295e4280R3",
                          "caseDocumentOrderCallbackId": "CBDOim76295e4280R3",
                          "exception": null,
                          "file": {
                            "expiryDate": "2022-07-08T09:41:39+00:00",
                            "fileUrl": "https://casedocs.unicourt.com/fl/mac/CDOCcrcfa6f5382361_1676967145.pdf?Expires=1677571948&Key-Pair-Id=K1K4HTY1FAWDYU&Signature=VOYB8~Ox1MBwHQQM~R1WJhVh92aubgoMU48ObN4YPqGrhKFxfIg1yquS4BEqTkr5eQ2VepbUoAefwGBJxUYNGpblSvX7FfSV-VI6P~B6ZcIqPt1ZmeQBD6IDGTJN646mzAE~xDPmHvJgCUWtcfx4zOgWnKeDMpifnM7RqK3rhWPTtxbi-ue6C8o57TaJB~hXjfWTBcl2JIGDD8dg8fidGdoT2rlnhuP~nJbGQstetZ~rHI-w7sbOMU5PX8NyJYnCRE8LywWPRsfGjgyZ1U2imT1t~QzA1wWSTQFmupr65RB-o26XASDhlYWt2As8Dm7mFeKK1uwL1v5HAUkDzlS34A__",
                            "name": "CCL#2 JURY TRIAL LTR",
                            "object": "ExportFile"
                          },
                          "object": "CaseDocumentOrderCallback",
                          "status": "COMPLETE"
                        }
                      ],
                      "nextPageAPI": null,
                      "object": "CaseDocumentOrderCallbackListResponse",
                      "pageNumber": 1,
                      "previousPageAPI": null,
                      "totalCount": 3,
                      "totalPages": 1
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/CaseDocumentOrderCallbackListResponse"
                }
              }
            },
            "description": "OK"
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "sample400Callbacks": {
                    "$ref": "#/components/examples/Invalid_Date"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Bad Request"
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "Internal_Server_Error": {
                    "value": {
                      "code": "UN500",
                      "details": "Something went wrong. Please retry again later.",
                      "message": "INTERNAL_SERVER_ERROR",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Internal Server Error"
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Get Case Document Order Callback list for a requested Date.",
        "tags": [
          "Case Documents API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [],
      "x-api-name": "CaseDocumentOrderCallbackAPI",
      "x-unicourt-tag": "CaseDocumentsAPIs"
    },
    "/caseDocumentOrder/callbacks/{caseDocumentOrderCallbackId}": {
      "get": {
        "description": "Get Case Document Order Callback for a requested Case Document Order Callback Id.",
        "operationId": "getCaseDocumentOrderCallbackById",
        "parameters": [],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleCallbacks10_pacerOptions": {
                    "value": {
                      "callbackGeneratedDate": "2023-02-21T08:27:55+00:00",
                      "caseDocument": null,
                      "caseDocumentId": "CDOCdg19b12d5b4858",
                      "caseDocumentOrderCallbackAPI": "https://enterpriseapi.unicourt.com/caseDocumentOrder/callbacks/CBDOnrb63f4808bjO3",
                      "caseDocumentOrderCallbackId": "CBDOnrb63f4808bjO3",
                      "exception": {
                        "code": "UN400",
                        "details": "Please send the pacerOptions field with pacerUserId.",
                        "message": "INVALID_INPUT",
                        "object": "Exception"
                      },
                      "file": null,
                      "object": "CaseDocumentOrderCallback",
                      "status": "FAILURE"
                    }
                  },
                  "sampleCallbacks11_limitReachedPerDay": {
                    "value": {
                      "callbackGeneratedDate": "2023-02-21T14:47:05+00:00",
                      "caseDocument": null,
                      "caseDocumentId": "CDOCcr01adcbc19558",
                      "caseDocumentOrderCallbackAPI": "https://enterpriseapi.unicourt.com/caseDocumentOrder/callbacks/CBDObHApQ63f4d9695",
                      "caseDocumentOrderCallbackId": "CBDObHApQ63f4d9695",
                      "exception": {
                        "code": "UN203",
                        "details": "You have reached 100 caseDocument Order per day. Please contact support to increase this limit.",
                        "message": "LIMIT_REACHED",
                        "object": "Exception"
                      },
                      "file": null,
                      "object": "CaseDocumentOrderCallback",
                      "status": "FAILURE"
                    }
                  },
                  "sampleCallbacks12_setPacerCredential": {
                    "value": {
                      "callbackGeneratedDate": "2023-02-21T08:31:04+00:00",
                      "caseDocument": null,
                      "caseDocumentId": "CDOCdg19b12d5b4858",
                      "caseDocumentOrderCallbackAPI": "https://enterpriseapi.unicourt.com/caseDocumentOrder/callbacks/CBDO63f481489xjSE0",
                      "caseDocumentOrderCallbackId": "CBDO63f481489xjSE0",
                      "exception": {
                        "code": "UN400",
                        "details": "Please set your pacerCredential.",
                        "message": "INVALID_INPUT",
                        "object": "Exception"
                      },
                      "file": null,
                      "object": "CaseDocumentOrderCallback",
                      "status": "FAILURE"
                    }
                  },
                  "sampleCallbacks1_alreadyDownloaded": {
                    "value": {
                      "callbackGeneratedDate": "2023-02-21T08:21:04+00:00",
                      "caseDocument": null,
                      "caseDocumentId": "CDOCcrcfa6f5382361",
                      "caseDocumentOrderCallbackAPI": "https://enterpriseapi.unicourt.com/caseDocumentOrder/callbacks/CBDOZ63f47eeeAu3z1",
                      "caseDocumentOrderCallbackId": "CBDOZ63f47eeeAu3z1",
                      "exception": {
                        "code": "UN400",
                        "details": "Cannot accept caseDocumentOrder request as the requested document is already available in UniCourt Crowd Source Library.",
                        "message": "INVALID_INPUT",
                        "object": "Exception"
                      },
                      "file": null,
                      "object": "CaseDocumentOrderCallback",
                      "status": "FAILURE"
                    }
                  },
                  "sampleCallbacks2_previewNotSupported": {
                    "value": {
                      "callbackGeneratedDate": "2023-02-21T08:21:53+00:00",
                      "caseDocument": null,
                      "caseDocumentId": "CDOCcrcfa6f5382361",
                      "caseDocumentOrderCallbackAPI": "https://enterpriseapi.unicourt.com/caseDocumentOrder/callbacks/CBDO63f47f21h1HqY0",
                      "caseDocumentOrderCallbackId": "CBDO63f47f21h1HqY0",
                      "exception": {
                        "code": "UN501",
                        "details": "Preview caseDocumentOrder feature is not supported by the FL CTSS9b959bf25d7567 court.",
                        "message": "FEATURE_NOT_SUPPORTED",
                        "object": "Exception"
                      },
                      "file": null,
                      "object": "CaseDocumentOrderCallback",
                      "status": "FAILURE"
                    }
                  },
                  "sampleCallbacks3_courtsiteDown": {
                    "value": {
                      "callbackGeneratedDate": "2023-02-21T08:14:52+00:00",
                      "caseDocument": null,
                      "caseDocumentId": "CDOCcca48451a0a47b",
                      "caseDocumentOrderCallbackAPI": "https://enterpriseapi.unicourt.com/caseDocumentOrder/callbacks/CBDOR63f47d7cylJG1",
                      "caseDocumentOrderCallbackId": "CBDOR63f47d7cylJG1",
                      "exception": {
                        "code": "UN503",
                        "details": "caseDocumentOrder integration with FL CTSS7ed2ca42764519 court website is broken. Cannot accepts requests now.",
                        "message": "NOT_ACCEPTING_REQUESTS",
                        "object": "Exception"
                      },
                      "file": null,
                      "object": "CaseDocumentOrderCallback",
                      "status": "FAILURE"
                    }
                  },
                  "sampleCallbacks4_previewAlreadyDownloaded": {
                    "value": {
                      "callbackGeneratedDate": "2023-02-21T08:23:20+00:00",
                      "caseDocument": null,
                      "caseDocumentId": "CDOCaga4553550156a",
                      "caseDocumentOrderCallbackAPI": "https://enterpriseapi.unicourt.com/caseDocumentOrder/callbacks/CBDOsn063f47f77Bc3",
                      "caseDocumentOrderCallbackId": "CBDOsn063f47f77Bc3",
                      "exception": {
                        "code": "UN400",
                        "details": "Cannot accept preview caseDocumentOrder request as the requested preview document is already available in UniCourt Crowd Source Library.",
                        "message": "INVALID_INPUT",
                        "object": "Exception"
                      },
                      "file": null,
                      "object": "CaseDocumentOrderCallback",
                      "status": "FAILURE"
                    }
                  },
                  "sampleCallbacks5_maxCaseDocumentOrderAmount": {
                    "value": {
                      "callbackGeneratedDate": "2023-02-21T08:24:26+00:00",
                      "caseDocument": null,
                      "caseDocumentId": "CDOCaga4553550156a",
                      "caseDocumentOrderCallbackAPI": "https://enterpriseapi.unicourt.com/caseDocumentOrder/callbacks/CBDOk1wD63f47fbaa4",
                      "caseDocumentOrderCallbackId": "CBDOk1wD63f47fbaa4",
                      "exception": {
                        "code": "UN400",
                        "details": "Cannot place this order because the total price 7.25 is more than the maxOrderCost 0 allowed",
                        "message": "INVALID_INPUT",
                        "object": "Exception"
                      },
                      "file": null,
                      "object": "CaseDocumentOrderCallback",
                      "status": "FAILURE"
                    }
                  },
                  "sampleCallbacks6_unavailableDocument": {
                    "value": {
                      "callbackGeneratedDate": "2023-02-21T08:25:28+00:00",
                      "caseDocument": null,
                      "caseDocumentId": "CDOCaq7429e304c427",
                      "caseDocumentOrderCallbackAPI": "https://enterpriseapi.unicourt.com/caseDocumentOrder/callbacks/CBDO63f47ff8ZtaIh0",
                      "caseDocumentOrderCallbackId": "CBDO63f47ff8ZtaIh0",
                      "exception": {
                        "code": "UN101",
                        "details": "The Document is no longer available in the Court.",
                        "message": "NO_LONGER_AVAILABLE_IN_COURT",
                        "object": "Exception"
                      },
                      "file": null,
                      "object": "CaseDocumentOrderCallback",
                      "status": "FAILURE"
                    }
                  },
                  "sampleCallbacks7_previewComplete": {
                    "value": {
                      "callbackGeneratedDate": "2023-02-20T18:28:22+00:00",
                      "caseDocument": {
                        "addedToLibraryDate": null,
                        "caseDocumentId": "CDOCdr1ded0e5b311d",
                        "childDocumentIdArray": [],
                        "description": "02/03/2023: Citation by Certified & First Class Mail Expedited Order Proceeding (TRC 106, 736)",
                        "documentFiledDate": "2023-02-03T00:00:00+00:00",
                        "downloadAPI": null,
                        "estimatedOrderDuration": "withinMinutes",
                        "firstFetchDate": "2023-02-20T08:30:08+00:00",
                        "inLibrary": false,
                        "isPreviewAvailable": true,
                        "name": "Citation by Certified & First Class Mail Expedited Order Proceeding (TRC 106, 736)",
                        "object": "CaseDocument",
                        "pages": 1,
                        "parentDocumentId": null,
                        "previewDocument": {
                          "addedToLibraryDate": "2023-02-20T18:28:19+00:00",
                          "downloadAPI": "https://enterpriseapi.unicourt.com/caseDocumentDownload/CDOCdr1ded0e5b311d?isPreviewDocument=true",
                          "inLibrary": true,
                          "object": "PreviewDocument"
                        },
                        "price": 1.25,
                        "sortOrder": 7,
                        "sourceDataStatus": null
                      },
                      "caseDocumentId": "CDOCdr1ded0e5b311d",
                      "caseDocumentOrderCallbackAPI": "https://enterpriseapi.unicourt.com/caseDocumentOrder/callbacks/CBDOgpo63f3a626TE3",
                      "caseDocumentOrderCallbackId": "CBDOgpo63f3a626TE3",
                      "exception": null,
                      "file": {
                        "expiryDate": "2023-02-27T18:28:22+00:00",
                        "fileUrl": "https://casedocs.unicourt.com/tx/hrd/CDOCdr1ded0e5b311d_1676917699_PREVIEW.pdf?Expires=1677522502&Key-Pair-Id=K1K4HTY1FAWDYU&Signature=X-w6sX7TF39MJXP22tM4rJszV9m4-U-wcFJfdU5ZR~nJh4aYmEAYko6WM3oYSHOMWuZEp3MacwsrySKwjp0IlIcxnpFba3zteZ~K-hqy1GPeYbwU02un20cMiDjEpGxTBEwUqOKbRxv4wIDdWi7G9NVXM8l808qNc28iEcFLafTrQCGncAn39HQwdM8LcT2PTYHLd~WnI3Tbxaf5TSWOBryeQeh3rnIazKacPALn1HclMJM6jCibaTKTvbYtz43p6lAc~Hkv~uZbbrZW9SmBYgejFjM5Vh1ZUgzFSKNqMQBkxFEw7dFTlNK6qpKxOXC6e5X-cwFAOZh0QmXRtlRejw__",
                        "name": "Citation by Certified & First Class Mail Expedited Order Proceeding (TRC 106, 736)",
                        "object": "ExportFile"
                      },
                      "object": "CaseDocumentOrderCallback",
                      "status": "COMPLETE"
                    }
                  },
                  "sampleCallbacks8_invalidDocument": {
                    "value": {
                      "callbackGeneratedDate": "2023-02-21T08:27:04+00:00",
                      "caseDocument": null,
                      "caseDocumentId": "CDOCaga4553550156p",
                      "caseDocumentOrderCallbackAPI": "https://enterpriseapi.unicourt.com/caseDocumentOrder/callbacks/CBDOxN63f48058xts2",
                      "caseDocumentOrderCallbackId": "CBDOxN63f48058xts2",
                      "exception": {
                        "code": "UN404",
                        "details": "Invalid caseDocumentId",
                        "message": "RESOURCE_NOT_FOUND",
                        "object": "Exception"
                      },
                      "file": null,
                      "object": "CaseDocumentOrderCallback",
                      "status": "FAILURE"
                    }
                  },
                  "sampleCallbacks9_invalidPacerLogin": {
                    "value": {
                      "callbackGeneratedDate": "2023-02-21T08:40:13+00:00",
                      "caseDocument": null,
                      "caseDocumentId": "CDOCdg10312177f029",
                      "caseDocumentOrderCallbackAPI": "https://enterpriseapi.unicourt.com/caseDocumentOrder/callbacks/CBDOeQ863f48365Iv3",
                      "caseDocumentOrderCallbackId": "CBDOeQ863f48365Iv3",
                      "exception": {
                        "code": "UN400",
                        "details": "PACER Login failed. Please try again.",
                        "message": "INVALID_INPUT",
                        "object": "Exception"
                      },
                      "file": null,
                      "object": "CaseDocumentOrderCallback",
                      "status": "FAILURE"
                    }
                  },
                  "sampleCallbacks_complete": {
                    "value": {
                      "callbackGeneratedDate": "2023-02-21T08:12:28+00:00",
                      "caseDocument": {
                        "addedToLibraryDate": "2023-02-21T08:12:26+00:00",
                        "caseDocumentId": "CDOCcrcfa6f5382361",
                        "childDocumentIdArray": [],
                        "description": "02/16/2023 - COURT APPEARANCE RECORD",
                        "documentFiledDate": "2023-02-16T00:00:00+00:00",
                        "downloadAPI": "https://enterpriseapi.unicourt.com/caseDocumentDownload/CDOCcrcfa6f5382361",
                        "estimatedOrderDuration": "withinMinutes",
                        "firstFetchDate": "2023-02-21T08:08:29+00:00",
                        "inLibrary": true,
                        "isPreviewAvailable": false,
                        "name": "COURT APPEARANCE RECORD",
                        "object": "CaseDocument",
                        "pages": 1,
                        "parentDocumentId": null,
                        "previewDocument": null,
                        "price": 0,
                        "sortOrder": 47,
                        "sourceDataStatus": null
                      },
                      "caseDocumentId": "CDOCcrcfa6f5382361",
                      "caseDocumentOrderCallbackAPI": "https://enterpriseapi.unicourt.com/caseDocumentOrder/callbacks/CBDOp2o7L63f47ce15",
                      "caseDocumentOrderCallbackId": "CBDOp2o7L63f47ce15",
                      "exception": null,
                      "file": {
                        "expiryDate": "2023-02-28T08:12:28+00:00",
                        "fileUrl": "https://casedocs.unicourt.com/fl/mac/CDOCcrcfa6f5382361_1676967145.pdf?Expires=1677571948&Key-Pair-Id=K1K4HTY1FAWDYU&Signature=VOYB8~Ox1MBwHQQM~R1WJhVh92aubgoMU48ObN4YPqGrhKFxfIg1yquS4BEqTkr5eQ2VepbUoAefwGBJxUYNGpblSvX7FfSV-VI6P~B6ZcIqPt1ZmeQBD6IDGTJN646mzAE~xDPmHvJgCUWtcfx4zOgWnKeDMpifnM7RqK3rhWPTtxbi-ue6C8o57TaJB~hXjfWTBcl2JIGDD8dg8fidGdoT2rlnhuP~nJbGQstetZ~rHI-w7sbOMU5PX8NyJYnCRE8LywWPRsfGjgyZ1U2imT1t~QzA1wWSTQFmupr65RB-o26XASDhlYWt2As8Dm7mFeKK1uwL1v5HAUkDzlS34A__",
                        "name": "COURT APPEARANCE RECORD",
                        "object": "ExportFile"
                      },
                      "object": "CaseDocumentOrderCallback",
                      "status": "COMPLETE"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/CaseDocumentOrderCallback"
                }
              }
            },
            "description": "OK"
          },
          "404": {
            "content": {
              "application/json": {
                "examples": {
                  "sample404Callbacks": {
                    "value": {
                      "code": "UN404",
                      "details": "Invalid request. Please check the `caseDocumentOrderCallbackId`.",
                      "message": "RESOURCE_NOT_FOUND",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Not Found"
          },
          "451": {
            "content": {
              "application/json": {
                "examples": {
                  "sample451Callbacks": {
                    "value": {
                      "callbackGeneratedDate": "2023-02-21T08:46:58+00:00",
                      "caseDocument": null,
                      "caseDocumentId": "CDOCbe7888d4a978d2",
                      "caseDocumentOrderCallbackAPI": "https://enterpriseapi.unicourt.com/caseDocumentOrder/callbacks/CBDO5J63f485005po2",
                      "caseDocumentOrderCallbackId": "CBDO5J63f485005po2",
                      "exception": {
                        "code": "UN100",
                        "details": "Requested document is restricted in the court site.",
                        "message": "SEALED",
                        "object": "Exception"
                      },
                      "file": null,
                      "object": "CaseDocumentOrderCallback",
                      "status": "FAILURE"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/CaseDocumentOrderCallback"
                }
              }
            },
            "description": "Sealed Case"
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "Internal_Server_Error": {
                    "value": {
                      "code": "UN500",
                      "details": "Something went wrong. Please retry again later.",
                      "message": "INTERNAL_SERVER_ERROR",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Internal Server Error"
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Get Case Document Order Callback for a requested Case Document Order Callback Id.",
        "tags": [
          "Case Documents API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [
        {
          "description": "Unique Id for the Case Document Order Callback.",
          "examples": {
            "HTTP200-sampleCallbacks10_pacerOptions": {
              "summary": "sampleCallbacks10_pacerOptions",
              "value": "CBDOnrb63f4808bjO3"
            },
            "HTTP200-sampleCallbacks11_limitReachedPerDay": {
              "summary": "sampleCallbacks11_limitReachedPerDay",
              "value": "CBDObHApQ63f4d9695"
            },
            "HTTP200-sampleCallbacks12_setPacerCredential": {
              "summary": "sampleCallbacks12_setPacerCredential",
              "value": "CBDO63f481489xjSE0"
            },
            "HTTP200-sampleCallbacks1_alreadyDownloaded": {
              "summary": "sampleCallbacks1_alreadyDownloaded",
              "value": "CBDOZ63f47eeeAu3z1"
            },
            "HTTP200-sampleCallbacks2_previewNotSupported": {
              "summary": "sampleCallbacks2_previewNotSupported",
              "value": "CBDO63f47f21h1HqY0"
            },
            "HTTP200-sampleCallbacks3_courtsiteDown": {
              "summary": "sampleCallbacks3_courtsiteDown",
              "value": "CBDOR63f47d7cylJG1"
            },
            "HTTP200-sampleCallbacks4_previewAlreadyDownloaded": {
              "summary": "sampleCallbacks4_previewAlreadyDownloaded",
              "value": "CBDOsn063f47f77Bc3"
            },
            "HTTP200-sampleCallbacks5_maxCaseDocumentOrderAmount": {
              "summary": "sampleCallbacks5_maxCaseDocumentOrderAmount",
              "value": "CBDOk1wD63f47fbaa4"
            },
            "HTTP200-sampleCallbacks6_unavailableDocument": {
              "summary": "sampleCallbacks6_unavailableDocument",
              "value": "CBDO63f47ff8ZtaIh0"
            },
            "HTTP200-sampleCallbacks7_previewComplete": {
              "summary": "sampleCallbacks7_previewComplete",
              "value": "CBDOgpo63f3a626TE3"
            },
            "HTTP200-sampleCallbacks8_invalidDocument": {
              "summary": "sampleCallbacks8_invalidDocument",
              "value": "CBDOxN63f48058xts2"
            },
            "HTTP200-sampleCallbacks9_invalidPacerLogin": {
              "summary": "sampleCallbacks9_invalidPacerLogin",
              "value": "CBDOeQ863f48365Iv3"
            },
            "HTTP200-sampleCallbacks_complete": {
              "summary": "sampleCallbacks_complete",
              "value": "CBDOp2o7L63f47ce15"
            },
            "HTTP404-sample404Callbacks": {
              "summary": "sample404Callbacks",
              "value": "CBDOsJA62b2ae42T0q"
            },
            "HTTP451-sample451Callbacks": {
              "summary": "sample451Callbacks",
              "value": "CBDO5J63f485005po2"
            }
          },
          "in": "path",
          "name": "caseDocumentOrderCallbackId",
          "required": true,
          "schema": {
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          }
        }
      ],
      "x-api-name": "CaseDocumentOrderCallbackByIdAPI",
      "x-unicourt-tag": "CaseDocumentsAPIs"
    },
    "/caseExport/callbacks": {
      "get": {
        "description": "Retrieve callbacks according to the specified criteria.",
        "operationId": "getCaseExportCallbacks",
        "parameters": [
          {
            "description": "The date for which callbacks are to be retrieved.",
            "examples": {
              "HTTP200-sampleCallbacks": {
                "summary": "sampleCallbacks",
                "value": "2022-03-08T10:17:56+00:00"
              },
              "HTTP400-sample400Callbacks": {
                "summary": "sample400Callbacks",
                "value": "2022-03-08"
              }
            },
            "in": "query",
            "name": "date",
            "schema": {
              "example": "2022-03-08T10:17:56+00:00",
              "format": "date-time",
              "maxLength": 25,
              "minLength": 25,
              "nullable": false,
              "type": "string"
            }
          },
          {
            "description": "The status code of the callbacks to be retrieved.",
            "examples": {
              "HTTP200-sampleCallbacks": {
                "summary": "sampleCallbacks",
                "value": ""
              },
              "HTTP400-sample400Callbacks": {
                "summary": "sample400Callbacks",
                "value": "COMPLETED"
              }
            },
            "in": "query",
            "name": "status",
            "schema": {
              "enum": [
                "IN_PROGRESS",
                "COMPLETE",
                "FAILURE"
              ],
              "maxLength": 11,
              "minLength": 7,
              "nullable": false,
              "type": "string"
            }
          },
          {
            "description": "The page number of the callbacks to be retrieved.<br>\n  - Minimum: 1\n",
            "examples": {
              "HTTP200-sampleCallbacks": {
                "summary": "sampleCallbacks",
                "value": 1
              },
              "HTTP400-sample400Callbacks": {
                "summary": "sample400Callbacks",
                "value": "A1"
              }
            },
            "in": "query",
            "name": "pageNumber",
            "schema": {
              "default": 1,
              "example": 1,
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleCallbacks": {
                    "value": {
                      "callbackArray": [
                        {
                          "callbackGeneratedDate": "2022-06-20T17:07:28+00:00",
                          "caseExportCallbackAPI": "https://enterpriseapi.unicourt.com/caseExport/callbacks/CBCEbOH62b0a94fc93",
                          "caseExportCallbackId": "CBCEbOH62b0a94fc93",
                          "caseId": "CASEhq2c32o4900a48",
                          "exception": {
                            "code": "UN404",
                            "details": "Requested caseId is invalid.",
                            "message": "RESOURCE_NOT_FOUND",
                            "object": "Exception"
                          },
                          "file": null,
                          "object": "CaseExportCallback",
                          "status": "FAILURE"
                        },
                        {
                          "callbackGeneratedDate": "2022-06-20T17:07:29+00:00",
                          "caseExportCallbackAPI": "https://enterpriseapi.unicourt.com/caseExport/callbacks/CBCEZryz62b0a948o4",
                          "caseExportCallbackId": "CBCEZryz62b0a948o4",
                          "caseId": "CASEhq2c3224900a48",
                          "exception": null,
                          "file": {
                            "expiryDate": "2022-06-27T17:07:29+00:00",
                            "fileUrl": "https://ctf.unicourt.com/p1653419993/CASEhq2c3224900a48.zip?Expires=1677597883&Key-Pair-Id=K1K4HTY1FAWDYU&Signature=IPLU9PP24AR0y6SZ46nlv8JQzwgEBh~i9QCYvoXl7PLwgiWiw959YBBmAscVEZdplb63gelMlbOjnUmh~nC8Jp7HrUu0ILo0Cjeu99YdHuHg-aYwcEXCnN5UUn66DS3X5qfyP9RJ8AbWVD9kVZar3DWPCDBiaectnbYNRWXqvjnwbKXgLv7vAqual27OcaL09pmyMwXbf5gZWnzDmlaHUAJLZIOhJd8mwEVL~StSS5-UOvnTQUMO5~by0GoCqNch4y5jo--OgNy61PheGw1oCIjBK7lLLO7La66GKoVBv~vvp1RM~-x3zLuPbxFo9OnMM6Fzu0ioOC25OT~58JlLiQ__",
                            "name": "case/production/p1653419993/CASEhq2c3224900a48.zip",
                            "object": "ExportFile"
                          },
                          "object": "CaseExportCallback",
                          "status": "COMPLETE"
                        }
                      ],
                      "nextPageAPI": null,
                      "object": "CaseExportCallbackListResponse",
                      "pageNumber": 1,
                      "previousPageAPI": null,
                      "totalCount": 2,
                      "totalPages": 1
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/CaseExportCallbackListResponse"
                }
              }
            },
            "description": "OK"
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "sample400Callbacks": {
                    "$ref": "#/components/examples/Invalid_Date"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Bad Request"
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "Internal_Server_Error": {
                    "value": {
                      "code": "UN500",
                      "details": "Something went wrong. Please retry again later.",
                      "message": "INTERNAL_SERVER_ERROR",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Internal Server Error"
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Get Case Export Callback list for a requested Date.",
        "tags": [
          "Case Export API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [],
      "x-api-name": "CaseExportCallbackAPI",
      "x-unicourt-tag": "CaseExportAPIs"
    },
    "/caseExport/callbacks/{caseExportCallbackId}": {
      "get": {
        "description": "Retrieve the specified case export callback object.",
        "operationId": "getCaseExportCallbackById",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleCallbacks": {
                    "value": {
                      "callbackGeneratedDate": "2023-02-21T15:24:43+00:00",
                      "caseExportCallbackAPI": "https://enterpriseapi.unicourt.com/caseExport/callbacks/CBCEG63f4e233eXqD1",
                      "caseExportCallbackId": "CBCEG63f4e233eXqD1",
                      "caseId": "CASEhq2c3224900a48",
                      "exception": null,
                      "file": {
                        "expiryDate": "2023-02-28T15:24:43+00:00",
                        "fileUrl": "https://ctf.unicourt.com/p1653419993/CASEhq2c3224900a48.zip?Expires=1677597883&Key-Pair-Id=K1K4HTY1FAWDYU&Signature=IPLU9PP24AR0y6SZ46nlv8JQzwgEBh~i9QCYvoXl7PLwgiWiw959YBBmAscVEZdplb63gelMlbOjnUmh~nC8Jp7HrUu0ILo0Cjeu99YdHuHg-aYwcEXCnN5UUn66DS3X5qfyP9RJ8AbWVD9kVZar3DWPCDBiaectnbYNRWXqvjnwbKXgLv7vAqual27OcaL09pmyMwXbf5gZWnzDmlaHUAJLZIOhJd8mwEVL~StSS5-UOvnTQUMO5~by0GoCqNch4y5jo--OgNy61PheGw1oCIjBK7lLLO7La66GKoVBv~vvp1RM~-x3zLuPbxFo9OnMM6Fzu0ioOC25OT~58JlLiQ__",
                        "name": "case/production/p1653419993/CASEhq2c3224900a48.zip",
                        "object": "ExportFile"
                      },
                      "object": "CaseExportCallback",
                      "status": "COMPLETE"
                    }
                  },
                  "sampleCallbacks1": {
                    "value": {
                      "callbackGeneratedDate": "2023-02-21T15:25:42+00:00",
                      "caseExportCallbackAPI": "https://enterpriseapi.unicourt.com/caseExport/callbacks/CBCEYo63f4e276CDr2",
                      "caseExportCallbackId": "CBCEYo63f4e276CDr2",
                      "caseId": "CASEhq2c32o4900a48",
                      "exception": {
                        "code": "UN404",
                        "details": "Requested caseId is invalid.",
                        "message": "RESOURCE_NOT_FOUND",
                        "object": "Exception"
                      },
                      "file": null,
                      "object": "CaseExportCallback",
                      "status": "FAILURE"
                    }
                  },
                  "sampleCallbacks2": {
                    "value": {
                      "callbackGeneratedDate": "2023-02-21T15:28:37+00:00",
                      "caseExportCallbackAPI": "https://enterpriseapi.unicourt.com/caseExport/callbacks/CBCELmF63f4e325zd3",
                      "caseExportCallbackId": "CBCELmF63f4e325zd3",
                      "caseId": "CASEhq2c3224900a48",
                      "exception": {
                        "code": "UN203",
                        "details": "You have reached 100 caseExports per day. Please contact support to increase this limit.",
                        "message": "LIMIT_REACHED",
                        "object": "Exception"
                      },
                      "file": null,
                      "object": "CaseExportCallback",
                      "status": "FAILURE"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/CaseExportCallback"
                }
              }
            },
            "description": "OK"
          },
          "404": {
            "content": {
              "application/json": {
                "examples": {
                  "sample404Callbacks": {
                    "value": {
                      "code": "UN404",
                      "details": "Invalid request. Please check the `caseExportCallbackId`.",
                      "message": "RESOURCE_NOT_FOUND",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Not Found"
          },
          "451": {
            "content": {
              "application/json": {
                "examples": {
                  "sample451Callbacks": {
                    "value": {
                      "callbackGeneratedDate": "2023-02-21T15:26:48+00:00",
                      "caseExportCallbackAPI": "https://enterpriseapi.unicourt.com/caseExport/callbacks/CBCEX5KDm63f4e2b85",
                      "caseExportCallbackId": "CBCEX5KDm63f4e2b85",
                      "caseId": "CASEhzcde7525188dd",
                      "exception": {
                        "code": "UN100",
                        "details": "This Case is no longer available as it is Sealed from the Court.",
                        "message": "SEALED",
                        "object": "Exception"
                      },
                      "file": null,
                      "object": "CaseExportCallback",
                      "status": "FAILURE"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/CaseExportCallback"
                }
              }
            },
            "description": "Sealed Case"
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "Internal_Server_Error": {
                    "value": {
                      "code": "UN500",
                      "details": "Something went wrong. Please retry again later.",
                      "message": "INTERNAL_SERVER_ERROR",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Internal Server Error"
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Get Case Export Callback for a requested Case Export Callback Id.",
        "tags": [
          "Case Export API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [
        {
          "description": "The caseExportCallbackId value of the case export callback object to be retrieved.",
          "examples": {
            "HTTP200-sampleCallbacks": {
              "summary": "sampleCallbacks",
              "value": "CBCEG63f4e233eXqD1"
            },
            "HTTP200-sampleCallbacks1": {
              "summary": "sampleCallbacks1",
              "value": "CBCEYo63f4e276CDr2"
            },
            "HTTP200-sampleCallbacks2": {
              "summary": "sampleCallbacks2",
              "value": "CBCELmF63f4e325zd3"
            },
            "HTTP404-sample404Callbacks": {
              "summary": "sample404Callbacks",
              "value": "CBCEOQ62cc441bPLBq"
            },
            "HTTP451-sample451Callbacks": {
              "summary": "sample451Callbacks",
              "value": "CBCEX5KDm63f4e2b85"
            }
          },
          "in": "path",
          "name": "caseExportCallbackId",
          "required": true,
          "schema": {
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          }
        }
      ],
      "x-api-name": "CaseExportCallbackByIdAPI",
      "x-unicourt-tag": "CaseExportAPIs"
    },
    "/caseExport/{caseId}": {
      "get": {
        "callbacks": {
          "CaseExportCompletionWSS": {
            "<WSS liveCallbacks>": {
              "post": {
                "requestBody": {
                  "content": {
                    "application/json": {
                      "examples": {
                        "Callback_Complete": {
                          "$ref": "#/components/examples/CaseExportCallbackSuccess"
                        },
                        "Callback_Failure": {
                          "$ref": "#/components/examples/CaseExportCallbackFailure"
                        },
                        "Callback_In_Progress": {
                          "$ref": "#/components/examples/CaseExportCallbackInProgress"
                        }
                      },
                      "schema": {
                        "$ref": "#/components/schemas/CaseExportCallback"
                      }
                    }
                  },
                  "description": "The response of Case Export API will be posted to your callback url which was provided in the application settings. Case Export Callback completion notification. This will be for type=liveCallbacks and type=historicalCallbacks endpoints in WSS. Case Export  Callback Completion will come via liveCallbacks and historicalCallbacks with the object as CaseExportCallback. Refer <a href=\"https://docs.staging.unicourt.com/knowledge-base/endpoints-supporting-websocket-protocol\">  Websocket Documentation </a>"
                },
                "responses": {
                  "200": {
                    "content": {
                      "application/json": {
                        "example": {
                          "message": "success"
                        },
                        "schema": {
                          "$ref": "#/components/schemas/Success"
                        }
                      }
                    },
                    "description": "OK"
                  }
                }
              }
            }
          }
        },
        "description": "Retrieve information about the specified case export.",
        "operationId": "exportCase",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleCallbacks": {
                    "value": {
                      "callbackGeneratedDate": null,
                      "caseExportCallbackAPI": "https://enterpriseapi.unicourt.com/caseExport/callbacks/CBCEM628f754dAMNH1",
                      "caseExportCallbackId": "CBCEM628f754dAMNH1",
                      "caseId": "CASEhq2c3224900a48",
                      "exception": null,
                      "file": null,
                      "object": "CaseExportCallback",
                      "status": "IN_PROGRESS"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/CaseExportCallback"
                }
              }
            },
            "description": "The request is recieved."
          },
          "404": {
            "content": {
              "application/json": {
                "examples": {
                  "sample404Callbacks": {
                    "value": {
                      "code": "UN404",
                      "details": "Invalid request. Please check the `caseId`.",
                      "message": "RESOURCE_NOT_FOUND",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Not Found"
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "Internal_Server_Error": {
                    "value": {
                      "code": "UN500",
                      "details": "Something went wrong. Please retry again later.",
                      "message": "INTERNAL_SERVER_ERROR",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Internal Server Error"
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Gets case exported for a requested Case ID.",
        "tags": [
          "Case Export API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [
        {
          "description": "The caseId value of the case for which case export information is to be retrieved.",
          "examples": {
            "HTTP200-sampleCallbacks": {
              "summary": "sampleCallbacks",
              "value": "CASEhq2c3224900a48"
            },
            "HTTP404-sample404Callbacks": {
              "summary": "sample404Callbacks",
              "value": "CASE123"
            }
          },
          "in": "path",
          "name": "caseId",
          "required": true,
          "schema": {
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          }
        }
      ],
      "x-api-name": "CaseExportAPI",
      "x-unicourt-tag": "CaseExportAPIs"
    },
    "/caseSearch": {
      "get": {
        "description": "This endpoint retrieves cases according to keyword expressions you provide.\n<br>\nKeyword expressions are constructed according to the rules described below.\n<br><br>\nThis API supports multiple use cases:\n  - Search for multiple keywords  `Google OR Facebook`.\n  - Search within particular attributes.\n  - Relational search using terms and connectors.\n  - And much more.\n----\n\n## Allowed Connectors in Keyword Expressions\n| Connector | Description  | Example |\n| ------| ------|------|\n| **AND** |Find cases containing each of the terms joined by AND connectors.|**personal AND injury**|\n| **OR**  |Find cases containing any of the terms joined by OR connectors.|**order OR decision**|\n| **NOT** |Find cases that do not contain the specified term.|**personal AND NOT injury**.  Find cases with the word “personal” and not “injury”.|\n| **“[phrase]”** |Find the exact phrase placed between the quotation marks.|**\"personal injury”**|\n| **~**  |Find cases in which the specified words appear near each other. For example, \"personal injury\" ~ 5 targets cases in which the word \"personal\" appears within 5 words of the word \"injury\".|**“personal injury” ~ 5** - Find cases with “personal” within five words of “injury”. |\n| **( … )** |Specifies the order in which connectors are to be appliied in a keyword expression.| **personal AND (injury OR fall)** - Find cases with the word personal injury or personal fall.|\n\n<br><br>\n## Fields and Connectors Searching\n| Filed | Description  | Example |\n| ------| ------|------|\n|**caseNumber** |Find cases with the specified case number (i.e., docket number).| **caseNumber:\"2020-L-007212\"** - Find cases whose case number matches given case number number.|\n|**caseName** |Find cases with the specified case title.| **caseName:\"THOMAS P. CARNEY, INC. VS BEHLER JAMES Et Al\"** - Find cases whose case name matches given terms.|\n|**Court**|Find cases in the specified court.|**(Court:(name:(New York)))** - Find cases in New York state.<br>|\n|**CaseStatus**|Find cases witih the specified case status.|**(CaseStatus:(name:Disposed))** - All disposed cases.<br>|\n|**CaseType**|Find cases of the specified case type. | **(CaseType:(name:Property))** - Cases with case type “property”.|\n|**Party** | Find cases involving the specified party.| **(Party:(name:Apple))** - Find cases involving Apple. |\n|**partyId**|Find cases involving a party with the specified partyId value.|**(Party:(partyId:\"PRTYgu1ffe866484c2\"))**|\n|**PartyRole** | Find cases in which at least one party has the specified party role. | **(Party:((PartyRole:(name:\"plaintiff\"))))** - Find cases with party role “plaintiff”.<br><br> **(Party:((PartyRole:(name:defendant)) AND (AttorneyRepresentationType:(name:(Attorney represented)))))** - Find cases where a party is acting as defendant and represented by an attorney.|\n|**AttorneyRepresentationType**| Find cases in which at least one party has the specified attorney representation type.|**(Party:(AttorneyRepresentationType:(name:\"attorney represented\")))** - Find cases where a party is represented by an attorney. |\n|**Attorney** | Find cases involving the specified attorney. | **(Attorney:(name:\"David Boies\"))** - Find cases involving the attorney David Boies. |\n|**AttorneyType**|Find cases involving at least one attorney of the specified attorney type.|**(Attorney:((AttorneyType:(name:\"Lead Attorney\"))))**|\n|**Judge** |Find cases involving the specified judge. | **(Judge:(name:\"Posner\"))** - Find cases involving Judge Posner.|\n|**JudgeType**|Find cases involving at least one judge of the specified judge type.|**(Judge:((JudgeType:(name:\"Magistrate\"))))**|\n|**CaseStats**|Find cases with the specified case statistics.|**(CaseStats:(partyCount:[10 TO 100]))** - Find cases involving 10 to 100 parties.<br>**(CaseStats:(attorneyCount:[2 TO 40]))** - Find cases involving 2 to 40 attorneys.<br>**(CaseStats:(judgeCount:[\\* TO 2]))** - Find cases involving up to 2 judges. <br>**(CaseStats:(docketEntryCount:[10 TO 100]))** - Find cases having 10 to 100 docket_entries. <br>**(CaseStats:(allCaseDocumentCount:[10 TO 100]))** - Find cases having 10 to 100 documents. |\n|**filedDate** | Find cases that were filed on the specified date or within the specified date range. | **filedDate:[2020-03-15 TO 2021-12-01]** - Find the most recently filed cases between March 15, 2020 and December 1, 2021 (inclusive). |\n|**lastFetchDate**| Find cases in which UniCourt last checked for updates on the specified date or within the specified date range. |**(lastFetchDate:[now-60d TO \\*\\])** - Find cases that were updated by UniCourt in the last 60 days. |\n|**lastFetchDateWithUpdates**|Find cases in which UniCourt last detected an update on the specified date or within the specified date range.|**(lastFetchDateWithUpdates:[now-6d TO \\*\\])** - Find cases for the changes found on court site in last 6 days.|\n|**participantsLastFetchDate**|Find cases in which information cocnerning participants was last updated on the specified date or within the specified date range.|**(participantsLastFetchDate:[now-6d TO \\*\\])** - Find cases where the participant's information was updated in last 6 days.|\n|**DocketEntry**|Find cases in which at least one docket entry contains the specified text.|**(DocketEntry:(text:(Motion to Compel Responses) AND docketEntryDate:[2020-01-01T00:00:00 TO 2020-05-01T00:00:00]))** - Find cases with docket text “Motion to Compel Responses” and action date between 2020-01-01 and 2020-05-01.|\n|**docketEntryDate**|Find cases in which at least one docket entry was made on the specified date or within the specified date range.|**(DocketEntry:(docketEntryDate:[2020-01-01T00:00:00 TO 2020-05-01T00:00:00])) AND (CaseStats:(allCaseDocumentCount:[0 TO 10]))** - Find cases with docket action date between 2020-01-01 and 2020-05-01 having up to 10 documents associated with it.|\n|**HearingDate**| Find cases with at least one hearing scheduled for the specified date or within the specified date range.|**(Hearing:(hearingDate:[now TO now+10d]))** - Find cases where hearing is scheduled in next 10 days.|\n|**HearingDate**| Search for cases where hearing is going to happen in 10 to 20days.|**(Hearing:(hearingDate:[now+10d TO now+20d]))** - Find cases where hearing is scheduled in next 10 to 20 days.|\n|**JurisdictionGeo**|Find cases in which the law of the specified state governs.|**(JurisdictionGeo:(state:\"New York\"))**- Find cases where Jurisdiction is New York state.|\n|**Party Address Exists**|Find cases with Party addresses.|**(Party:(Contact:(Address:(stateName:\\*))))**- Returns only those cases that have addresses for parties.|\n|**Document**|Find cases with specific document name and preview is available for the document.|**(CaseDocument:(name:\"civil case cover sheet\" AND isPreviewAvailable:true))**- Returns cases with document civil case cover sheet and preview is available.|\n\n<br><br>\n---\n## Party Sub Filter Examples\n|Example |Explanation |\n|---|---|\n|**(Party:(name:google AND (PartyRole:(name:\"plaintiff\"))))**|Find cases involving at least one plaintiff whose name contains the term \"Google\".|\n|**(Party:(name:\"OTELIA PEREIDA\" AND (AttorneyRepresentationType:(name:\"Attorney represented\")))) AND (Attorney:(name:\"Law Offices of Todd M Friedman\"))**|Find cases where the Party is *OTELIA PEREIDA* and is represented by the attorney *Law Offices of Todd M Friedman*.|\n\n---\n### All query parameters supported for this API can be found in below schema section. Schema -->  CaseSearchQueryObject\n",
        "operationId": "searchCases",
        "parameters": [
          {
            "description": "Query parameter for keyword expressions.</a>\n",
            "examples": {
              "HTTP200-sampleSearchQuery": {
                "summary": "sampleSearchQuery",
                "value": "caseNumber:\"JP07-22-DC00026818\""
              },
              "HTTP400-sampleSearchInvalidInputQuery": {
                "summary": "sampleSearchInvalidInputQuery",
                "value": "caseddId:\"CASEic46ed4faeb9b8\""
              }
            },
            "in": "query",
            "name": "q",
            "required": true,
            "schema": {
              "maxLength": 2000,
              "minLength": 3,
              "nullable": false,
              "type": "string"
            }
          },
          {
            "$ref": "#/components/parameters/sortParam"
          },
          {
            "$ref": "#/components/parameters/orderParam"
          },
          {
            "$ref": "#/components/parameters/pageParam"
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleSearchQuery": {
                    "summary": "sampleSearchQuery",
                    "value": {
                      "caseSearchId": "CSRCU3qFUH8BjLnba5",
                      "caseSearchResultArray": [
                        {
                          "caseAPI": "https://enterpriseapi.unicourt.com/case/CASEic46ed4faeb9b8",
                          "caseId": "CASEic46ed4faeb9b8",
                          "caseName": "MIDLAND CREDIT MANAGEMENT INC. vs. THOMAS HUYNH",
                          "caseNumber": "JP07-22-DC00026818",
                          "caseStatus": {
                            "caseClassArray": [
                              "Civil",
                              "Criminal"
                            ],
                            "caseStatusGroup": "Open",
                            "caseStatusGroupId": "CSSGCYoBCJ3A8j4MX4",
                            "caseStatusId": "CSSTVnE3shD3CGtkcZ",
                            "createdDate": "2022-03-28T04:58:47+00:00",
                            "name": "Open",
                            "object": "caseStatus"
                          },
                          "caseType": {
                            "areaOfLaw": "Commercial and Trade",
                            "areaOfLawId": "AOFL2UxEWfVmTPMyqf",
                            "caseClass": "Civil",
                            "caseClassId": "CSCLNjbKTN7Yfo2wdb",
                            "caseTypeGroup": "Small Claims",
                            "caseTypeGroupId": "CTYG8gZ6hPRKhhYi4Y",
                            "caseTypeId": "CTYPATMYyaJekdgj2c",
                            "caseTypeTag": null,
                            "createdDate": "2022-03-28T04:58:28+00:00",
                            "name": "Debt Collection",
                            "object": "CaseType",
                            "saliCode": "COTL-TRNS"
                          },
                          "court": {
                            "additionalLevels": {
                              "level1": "Precinct 7",
                              "level2": null,
                              "level3": null,
                              "level4": null,
                              "object": "AdditionalLevels"
                            },
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTSZU6FW3DDbikGj/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTSZU6FW3DDbikGj",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTSZU6FW3DDbikGj/courtLocations",
                            "courtServiceStatusAPI": null,
                            "courtSystemId": "COSY53DJ9jCL9U4iUt",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-03-28T04:57:37+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTSZU6FW3DDbikGj/jurisdictionGeo",
                            "name": "Tarrant County Justice of the Peace Court",
                            "nameAka": "Tarrant County Justice of the Peace Court of Texas",
                            "object": "Court",
                            "system": "Texas Justice of the Peace Courts",
                            "type": "State"
                          },
                          "courtLocation": {
                            "city": "Mansfield",
                            "courtLocationId": "COLOLxvkKLzMxkMHeM",
                            "courtServiceStatusAPI": null,
                            "courtsForCourtLocationAPI": "https://enterpriseapi.unicourt.com/masterData/courtLocation/COLOLxvkKLzMxkMHeM/courts",
                            "createdDate": "2022-03-28T04:57:37+00:00",
                            "name": "Mansfield Subcourthouse",
                            "object": "CourtLocation",
                            "stateName": "Texas",
                            "streetAddress1": "1100 E. Broad Street",
                            "streetAddress2": null
                          },
                          "filedDate": "2022-05-10T00:00:00+00:00",
                          "firstFetchDate": "2022-05-11T04:10:33+00:00",
                          "lastFetchDate": "2022-05-11T04:10:33+00:00",
                          "lastFetchDateWithUpdates": "2022-05-11T04:10:33+00:00",
                          "matchedObjectArray": [
                            {
                              "highlightSnippet": "<b>CASEic46ed4faeb9b8</b>",
                              "matchedObjectAPI": "https://enterpriseapi.unicourt.com/case/CASEic46ed4faeb9b8",
                              "matchedObjectAttribute": "caseId",
                              "matchedObjectId": "CASEic46ed4faeb9b8",
                              "matchedObjectName": "Case",
                              "object": "MatchedObject"
                            }
                          ],
                          "object": "CaseSearchResult",
                          "participantsLastFetchDate": "2022-05-11T04:10:33+00:00"
                        }
                      ],
                      "nextPageAPI": null,
                      "object": "CaseSearchResponse",
                      "pageNumber": 1,
                      "previousPageAPI": null,
                      "q": "caseNumber%3A%22JP07-22-DC00026818%22",
                      "totalCount": 1,
                      "totalPages": 1
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/CaseSearchResponse"
                }
              }
            },
            "description": "Success"
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleSearchInvalidInputQuery": {
                    "$ref": "#/components/examples/SAMPLE_SEARCH_INVALID_INPUT_QUERY"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Error"
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "INTERNAL_SERVER_ERROR": {
                    "$ref": "#/components/examples/INTERNAL_SERVER_ERROR"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Error"
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Case search.",
        "tags": [
          "Case Search API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [],
      "x-api-name": "CaseSearchAPI",
      "x-unicourt-tag": "CaseSearchAPIs"
    },
    "/caseSearch/{caseSearchId}": {
      "get": {
        "description": "Retrieve the search results corresponding to the specified caseSearchId value.\n",
        "operationId": "searchCasesById",
        "parameters": [
          {
            "$ref": "#/components/parameters/pageParam"
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleSearchQuery": {
                    "summary": "sampleSearchQuery",
                    "value": {
                      "caseSearchId": "CSRCU3qFUH8BjLnba5",
                      "caseSearchResultArray": [
                        {
                          "caseAPI": "https://enterpriseapi.unicourt.com/case/CASEic46ed4faeb9b8",
                          "caseId": "CASEic46ed4faeb9b8",
                          "caseName": "MIDLAND CREDIT MANAGEMENT INC. vs. THOMAS HUYNH",
                          "caseNumber": "JP07-22-DC00026818",
                          "caseStatus": {
                            "caseClassArray": [
                              "Civil",
                              "Criminal"
                            ],
                            "caseStatusGroup": "Open",
                            "caseStatusGroupId": "CSSGCYoBCJ3A8j4MX4",
                            "caseStatusId": "CSSTVnE3shD3CGtkcZ",
                            "createdDate": "2022-03-28T04:58:47+00:00",
                            "name": "Open",
                            "object": "caseStatus"
                          },
                          "caseType": {
                            "areaOfLaw": "Commercial and Trade",
                            "areaOfLawId": "AOFL2UxEWfVmTPMyqf",
                            "caseClass": "Civil",
                            "caseClassId": "CSCLNjbKTN7Yfo2wdb",
                            "caseTypeGroup": "Small Claims",
                            "caseTypeGroupId": "CTYG8gZ6hPRKhhYi4Y",
                            "caseTypeId": "CTYPATMYyaJekdgj2c",
                            "caseTypeTag": null,
                            "createdDate": "2022-03-28T04:58:28+00:00",
                            "name": "Debt Collection",
                            "object": "CaseType",
                            "saliCode": "COTL-TRNS"
                          },
                          "court": {
                            "additionalLevels": {
                              "level1": "Precinct 7",
                              "level2": null,
                              "level3": null,
                              "level4": null,
                              "object": "AdditionalLevels"
                            },
                            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTSZU6FW3DDbikGj/appealCourts",
                            "container": null,
                            "containerType": null,
                            "courtId": "CORTSZU6FW3DDbikGj",
                            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTSZU6FW3DDbikGj/courtLocations",
                            "courtServiceStatusAPI": null,
                            "courtSystemId": "COSY53DJ9jCL9U4iUt",
                            "courtTypeId": "COTPm8jjc2PAydpFhq",
                            "createdDate": "2022-03-28T04:57:37+00:00",
                            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTSZU6FW3DDbikGj/jurisdictionGeo",
                            "name": "Tarrant County Justice of the Peace Court",
                            "nameAka": "Tarrant County Justice of the Peace Court of Texas",
                            "object": "Court",
                            "system": "Texas Justice of the Peace Courts",
                            "type": "State"
                          },
                          "courtLocation": {
                            "city": "Mansfield",
                            "courtLocationId": "COLOLxvkKLzMxkMHeM",
                            "courtServiceStatusAPI": null,
                            "courtsForCourtLocationAPI": "https://enterpriseapi.unicourt.com/masterData/courtLocation/COLOLxvkKLzMxkMHeM/courts",
                            "createdDate": "2022-03-28T04:57:37+00:00",
                            "name": "Mansfield Subcourthouse",
                            "object": "CourtLocation",
                            "stateName": "Texas",
                            "streetAddress1": "1100 E. Broad Street",
                            "streetAddress2": null
                          },
                          "filedDate": "2022-05-10T00:00:00+00:00",
                          "firstFetchDate": "2022-05-11T04:10:33+00:00",
                          "lastFetchDate": "2022-05-11T04:10:33+00:00",
                          "lastFetchDateWithUpdates": "2022-05-11T04:10:33+00:00",
                          "matchedObjectArray": [
                            {
                              "highlightSnippet": "<b>CASEic46ed4faeb9b8</b>",
                              "matchedObjectAPI": "https://enterpriseapi.unicourt.com/case/CASEic46ed4faeb9b8",
                              "matchedObjectAttribute": "caseId",
                              "matchedObjectId": "CASEic46ed4faeb9b8",
                              "matchedObjectName": "Case",
                              "object": "MatchedObject"
                            }
                          ],
                          "object": "CaseSearchResult",
                          "participantsLastFetchDate": "2022-05-11T04:10:33+00:00"
                        }
                      ],
                      "nextPageAPI": null,
                      "object": "CaseSearchResponse",
                      "pageNumber": 1,
                      "previousPageAPI": null,
                      "q": "caseNumber%3A%22JP07-22-DC00026818%22",
                      "totalCount": 1,
                      "totalPages": 1
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/CaseSearchResponse"
                }
              }
            },
            "description": "Success"
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleInvalidPageNumberParam": {
                    "$ref": "#/components/examples/SAMPLE_SEARCH_INVALID_PAGE_NUMBER_PARAM"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Error"
          },
          "404": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleNotFoundResource": {
                    "value": {
                      "code": "UN404",
                      "details": "caseSearchId resource you were looking for doesn't exist.",
                      "message": "RESOURCE_NOT_FOUND",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if the resource is not found."
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "INTERNAL_SERVER_ERROR": {
                    "$ref": "#/components/examples/INTERNAL_SERVER_ERROR"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Error"
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Case search results for a given caseSearchId.",
        "tags": [
          "Case Search API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [
        {
          "description": "Case Search information for the given caseSearchId.",
          "examples": {
            "HTTP200-sampleSearchQuery": {
              "summary": "sampleSearchQuery",
              "value": "CSRCU3qFUH8BjLnba5"
            },
            "HTTP400-sampleInvalidPageNumberParam": {
              "summary": "sampleInvalidPageNumberParam",
              "value": "CSRCU3qFUH8BjLnba5"
            },
            "HTTP404-sampleNotFoundResource": {
              "summary": "sampleNotFoundResource",
              "value": "CORThSxcef8eGUSkqw"
            }
          },
          "in": "path",
          "name": "caseSearchId",
          "required": true,
          "schema": {
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          }
        }
      ],
      "x-api-name": "CaseSearchByIdAPI",
      "x-unicourt-tag": "CaseSearchAPIs"
    },
    "/caseTrack": {
      "put": {
        "callbacks": {
          "CaseTrackCompletionWSS": {
            "<WSS liveCallbacks>": {
              "post": {
                "requestBody": {
                  "content": {
                    "application/json": {
                      "examples": {
                        "CaseTrackComplete": {
                          "$ref": "#/components/examples/CaseTrackComplete"
                        },
                        "CaseTrackFailure": {
                          "$ref": "#/components/examples/CaseTrackFailure"
                        }
                      },
                      "schema": {
                        "$ref": "#/components/schemas/CaseTrack"
                      }
                    }
                  },
                  "description": "Case Track completion notification. This will be only for liveCallbacks. You will get case object when case object size is less than 127KB. Refer <a href=\"https://docs.staging.unicourt.com/knowledge-base/endpoints-supporting-websocket-protocol\">  Websocket Documentation </a>"
                },
                "responses": {
                  "200": {
                    "content": {
                      "application/json": {
                        "examples": {
                          "sampleCallbacks": {
                            "value": {
                              "message": "success"
                            }
                          }
                        },
                        "schema": {
                          "$ref": "#/components/schemas/Success"
                        }
                      }
                    },
                    "description": "OK"
                  }
                }
              }
            }
          }
        },
        "description": "Track the specified case.",
        "operationId": "trackCase",
        "requestBody": {
          "content": {
            "application/json": {
              "examples": {
                "Request_For_Daily_Case_Track": {
                  "$ref": "#/components/examples/RequestForDailyCaseTrack"
                },
                "Request_For_Monthly_Case_Track": {
                  "$ref": "#/components/examples/RequestForMonthlyCaseTrack"
                },
                "Request_For_Pacer_Case_Track": {
                  "$ref": "#/components/examples/RequestForPacerCaseTrack"
                },
                "Request_For_Weekly_Case_Track": {
                  "$ref": "#/components/examples/RequestForWeeklyCaseTrack"
                }
              },
              "schema": {
                "$ref": "#/components/schemas/CaseTrackRequest"
              }
            }
          }
        },
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "CaseTrackAdded": {
                    "value": {
                      "message": "Added Successfully.",
                      "object": "Success"
                    }
                  },
                  "CaseTrackUpdated": {
                    "value": {
                      "message": "Updated Successfully.",
                      "object": "Success"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Success"
                }
              }
            },
            "description": "OK"
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "sample400Callbacks": {
                    "value": {
                      "code": "UN400",
                      "details": "Invalid request. Please check the `caseId`.",
                      "message": "INVALID_INPUT",
                      "object": "Exception"
                    }
                  },
                  "sample400Callbacks1": {
                    "value": {
                      "code": "UN400",
                      "details": "Please set your pacerCredential.",
                      "message": "INVALID_INPUT",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Bad Request"
          },
          "403": {
            "content": {
              "application/json": {
                "examples": {
                  "sample403Callbacks": {
                    "value": {
                      "code": "UN203",
                      "details": "You already have 20 Cases for tracking. Please contact support to increase this limit.",
                      "message": "LIMIT_REACHED",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Forbidden"
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "Internal_Server_Error": {
                    "value": {
                      "code": "UN500",
                      "details": "Something went wrong. Please retry again later.",
                      "message": "INTERNAL_SERVER_ERROR",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Internal Server Error"
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Add Case Track for the requested Case Id.",
        "tags": [
          "Case Tracking API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "PUT",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "x-api-name": "CaseTrackAPI",
      "x-unicourt-tag": "CaseTrackingAPIs"
    },
    "/caseTrack/{caseId}": {
      "delete": {
        "description": "Remove Case Track for a specific Case Id.",
        "operationId": "removeCaseTrackById",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleCallbacks": {
                    "value": {
                      "message": "The tracker for your case has been deactivated. You'll receive no more updates to this case from here onwards.",
                      "object": "Success"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Success"
                }
              }
            },
            "description": "OK"
          },
          "404": {
            "content": {
              "application/json": {
                "examples": {
                  "sample404Callbacks": {
                    "value": {
                      "code": "UN404",
                      "details": "Invalid request. Please check the `caseId`.",
                      "message": "RESOURCE_NOT_FOUND",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Not Found"
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "Internal_Server_Error": {
                    "value": {
                      "code": "UN500",
                      "details": "Something went wrong. Please retry again later.",
                      "message": "INTERNAL_SERVER_ERROR",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Internal Server Error"
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Remove Case Track for a specific Case Id.",
        "tags": [
          "Case Tracking API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "DELETE",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "get": {
        "description": "Retrieve case tracking information for the specified caseId value.",
        "operationId": "getCaseTrackById",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleResponse1": {
                    "value": {
                      "case": {
                        "attorneys": {
                          "attorneyArray": [
                            {
                              "attorneyId": "ATTYak359025082a6a",
                              "attorneyLawFirmArray": [],
                              "attorneyType": {
                                "attorneyTypeId": "ATYPRPk3LNobYmtqwF",
                                "createdDate": "2022-03-28T04:59:12+00:00",
                                "name": "Attorney",
                                "object": "AttorneyType"
                              },
                              "barNumber": null,
                              "contact": {
                                "addressArray": [],
                                "emailArray": [],
                                "object": "Contact",
                                "phoneNumberArray": []
                              },
                              "firstFetchDate": "2013-07-21T09:48:26+00:00",
                              "firstName": "CITY OF LOS ANGELES",
                              "isVisible": false,
                              "lastFetchDate": "2016-06-06T09:03:47+00:00",
                              "lastName": null,
                              "middleName": null,
                              "name": "CITY OF LOS ANGELES",
                              "namePrefix": null,
                              "nameSuffix": null,
                              "object": "Attorney",
                              "partyAttorneyAssociations": {
                                "nextPageAPI": null,
                                "object": "PartyAttorneyAssociations",
                                "pageNumber": 1,
                                "partyAttorneyAssociationArray": [
                                  {
                                    "attorneyId": "ATTYak359025082a6a",
                                    "isVisible": false,
                                    "object": "PartyAttorneyAssociation",
                                    "partyAttorneyAssociationId": "PATMak9c6b602c3c0a",
                                    "partyId": "PRTYakb997f5e0e0d7"
                                  }
                                ],
                                "totalCount": 1,
                                "totalPages": 1
                              },
                              "partyRoleGroupIdArray": [],
                              "partyRoleIdArray": [],
                              "possibleNormAttorneyArray": [],
                              "possibleNormLawFirmArray": [],
                              "sourceAttorneyType": "ATTORNEY"
                            },
                            {
                              "attorneyId": "ATTYak779eef5398c8",
                              "attorneyLawFirmArray": [],
                              "attorneyType": {
                                "attorneyTypeId": "ATYPRPk3LNobYmtqwF",
                                "createdDate": "2022-03-28T04:59:12+00:00",
                                "name": "Attorney",
                                "object": "AttorneyType"
                              },
                              "barNumber": null,
                              "contact": {
                                "addressArray": [],
                                "emailArray": [],
                                "object": "Contact",
                                "phoneNumberArray": []
                              },
                              "firstFetchDate": "2013-07-21T09:48:26+00:00",
                              "firstName": "RUTH",
                              "isVisible": false,
                              "lastFetchDate": "2016-06-06T09:03:47+00:00",
                              "lastName": "BIRD",
                              "middleName": null,
                              "name": "BIRD, RUTH",
                              "namePrefix": null,
                              "nameSuffix": null,
                              "object": "Attorney",
                              "partyAttorneyAssociations": {
                                "nextPageAPI": null,
                                "object": "PartyAttorneyAssociations",
                                "pageNumber": 1,
                                "partyAttorneyAssociationArray": [
                                  {
                                    "attorneyId": "ATTYak779eef5398c8",
                                    "isVisible": false,
                                    "object": "PartyAttorneyAssociation",
                                    "partyAttorneyAssociationId": "PATMakffc0128c19f4",
                                    "partyId": "PRTYak21a2d603404e"
                                  }
                                ],
                                "totalCount": 1,
                                "totalPages": 1
                              },
                              "partyRoleGroupIdArray": [],
                              "partyRoleIdArray": [],
                              "possibleNormAttorneyArray": [],
                              "possibleNormLawFirmArray": [],
                              "sourceAttorneyType": "ATTORNEY"
                            }
                          ],
                          "nextPageAPI": null,
                          "object": "Attorneys",
                          "pageNumber": 1,
                          "totalCount": 2,
                          "totalPages": 1
                        },
                        "caseDocuments": {
                          "caseDocumentArray": [],
                          "nextPageAPI": null,
                          "object": "CaseDocuments",
                          "pageNumber": 0,
                          "totalCount": 0,
                          "totalPages": 0
                        },
                        "caseId": "CASEak99a698ea5413",
                        "caseName": "CITY OF LOS ANGELES VS BIRD, RUTH",
                        "caseNumber": "13K09504",
                        "caseStats": {
                          "allCaseDocumentCount": 0,
                          "attorneyCount": 2,
                          "caseDocumentInLibraryCount": 0,
                          "docketEntryCount": 10,
                          "freeCaseDocumentCount": 0,
                          "hearingCount": 0,
                          "judgeCount": 0,
                          "object": "CaseStats",
                          "paidCaseDocumentCount": 0,
                          "partyCount": 2,
                          "relatedCaseCount": 0
                        },
                        "caseStatus": {
                          "caseClassArray": [
                            "Civil",
                            "Criminal"
                          ],
                          "caseStatusGroup": "Closed",
                          "caseStatusGroupId": "CSSG6ERqyFdydo52WK",
                          "caseStatusId": "CSSTbacAYUd7MM5xUM",
                          "createdDate": "2022-03-28T04:58:47+00:00",
                          "name": "Closed",
                          "object": "CaseStatus"
                        },
                        "caseType": {
                          "areaOfLaw": null,
                          "areaOfLawId": null,
                          "caseClass": "Civil",
                          "caseClassId": "CSCLNjbKTN7Yfo2wdb",
                          "caseTypeGroup": null,
                          "caseTypeGroupId": null,
                          "caseTypeId": "CTYPNjbKTN7Yfo2wdb",
                          "caseTypeTag": null,
                          "createdDate": "2022-03-28T04:58:35+00:00",
                          "name": null,
                          "object": "CaseType",
                          "saliCode": null
                        },
                        "causeOfActionArray": [],
                        "chargeArray": [],
                        "court": {
                          "additionalLevels": null,
                          "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/appealCourts",
                          "container": null,
                          "containerType": null,
                          "courtId": "CORTV4vCEaKrhystBz",
                          "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/courtLocations",
                          "courtServiceStatusAPI": null,
                          "courtSystemId": "COSYACHBdMewtaG5DY",
                          "courtTypeId": "COTPm8jjc2PAydpFhq",
                          "createdDate": "2022-07-08T05:50:06+00:00",
                          "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/jurisdictionGeo",
                          "name": "Los Angeles County Superior Court",
                          "nameAka": "Los Angeles County Superior Court of California",
                          "object": "Court",
                          "system": "California Superior Courts",
                          "type": "State"
                        },
                        "courtLocation": {
                          "city": "Los Angeles",
                          "courtLocationId": "COLO6b82CkRqS846hx",
                          "courtServiceStatusAPI": null,
                          "courtsForCourtLocationAPI": "https://enterpriseapi.unicourt.com/masterData/courtLocation/COLO6b82CkRqS846hx/courts",
                          "createdDate": "2022-07-08T05:50:08+00:00",
                          "name": "Stanley Mosk Courthouse",
                          "object": "CourtLocation",
                          "stateName": "California",
                          "streetAddress1": "111 North Hill Street",
                          "streetAddress2": null
                        },
                        "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus/CTSSb545c31e623bad",
                        "courtServiceStatusId": "CTSSb545c31e623bad",
                        "docketEntries": {
                          "docketEntryArray": [
                            {
                              "boundary": "first",
                              "docketBadge": "DOCKET",
                              "docketEntryDate": "2031-07-02T00:00:00-07:00",
                              "docketEntryPrimaryDocuments": {
                                "caseDocumentArray": [],
                                "nextPageAPI": null,
                                "object": "DocketEntryPrimaryDocuments",
                                "pageNumber": 0,
                                "totalCount": 0,
                                "totalPages": 0
                              },
                              "docketEntrySecondaryDocuments": {
                                "caseDocumentArray": [],
                                "nextPageAPI": null,
                                "object": "DocketEntrySecondaryDocuments",
                                "pageNumber": 0,
                                "totalCount": 0,
                                "totalPages": 0
                              },
                              "docketNumber": null,
                              "lastFetchDate": "2023-02-21T14:51:16+00:00",
                              "object": "DocketEntry",
                              "referencedDocketNumberArray": [],
                              "sortOrder": 9,
                              "text": "PARKING APPEAL FILED",
                              "textStructured": {
                                "extractedFields": null,
                                "rawOrderedDataArray": [
                                  {
                                    "childArray": [],
                                    "lbl": null,
                                    "ord": 0,
                                    "val": "PARKING APPEAL FILED"
                                  }
                                ]
                              }
                            },
                            {
                              "boundary": null,
                              "docketBadge": "DOCKET",
                              "docketEntryDate": "2031-07-02T00:00:00-07:00",
                              "docketEntryPrimaryDocuments": {
                                "caseDocumentArray": [],
                                "nextPageAPI": null,
                                "object": "DocketEntryPrimaryDocuments",
                                "pageNumber": 0,
                                "totalCount": 0,
                                "totalPages": 0
                              },
                              "docketEntrySecondaryDocuments": {
                                "caseDocumentArray": [],
                                "nextPageAPI": null,
                                "object": "DocketEntrySecondaryDocuments",
                                "pageNumber": 0,
                                "totalCount": 0,
                                "totalPages": 0
                              },
                              "docketNumber": null,
                              "lastFetchDate": "2023-02-21T14:51:16+00:00",
                              "object": "DocketEntry",
                              "referencedDocketNumberArray": [],
                              "sortOrder": 8,
                              "text": "APPEAL FROM ADMINISTRATIVE DECISION",
                              "textStructured": {
                                "extractedFields": null,
                                "rawOrderedDataArray": [
                                  {
                                    "childArray": [],
                                    "lbl": null,
                                    "ord": 0,
                                    "val": "APPEAL FROM ADMINISTRATIVE DECISION"
                                  }
                                ]
                              }
                            },
                            {
                              "boundary": null,
                              "docketBadge": "DOCKET",
                              "docketEntryDate": "2013-08-29T00:00:00-07:00",
                              "docketEntryPrimaryDocuments": {
                                "caseDocumentArray": [],
                                "nextPageAPI": null,
                                "object": "DocketEntryPrimaryDocuments",
                                "pageNumber": 0,
                                "totalCount": 0,
                                "totalPages": 0
                              },
                              "docketEntrySecondaryDocuments": {
                                "caseDocumentArray": [],
                                "nextPageAPI": null,
                                "object": "DocketEntrySecondaryDocuments",
                                "pageNumber": 0,
                                "totalCount": 0,
                                "totalPages": 0
                              },
                              "docketNumber": null,
                              "lastFetchDate": "2023-02-21T14:51:16+00:00",
                              "object": "DocketEntry",
                              "referencedDocketNumberArray": [],
                              "sortOrder": 7,
                              "text": "NOTICE OF DECISION-ADMINISTRATIVE APPEAL NOTICE OF DECISION-ADMINISTRATIVE APPEAL AFFIRMED.",
                              "textStructured": {
                                "extractedFields": null,
                                "rawOrderedDataArray": [
                                  {
                                    "childArray": [],
                                    "lbl": null,
                                    "ord": 0,
                                    "val": "NOTICE OF DECISION-ADMINISTRATIVE APPEAL NOTICE OF DECISION-ADMINISTRATIVE APPEAL AFFIRMED."
                                  }
                                ]
                              }
                            },
                            {
                              "boundary": null,
                              "docketBadge": "DOCKET",
                              "docketEntryDate": "2013-08-12T00:00:00-07:00",
                              "docketEntryPrimaryDocuments": {
                                "caseDocumentArray": [],
                                "nextPageAPI": null,
                                "object": "DocketEntryPrimaryDocuments",
                                "pageNumber": 0,
                                "totalCount": 0,
                                "totalPages": 0
                              },
                              "docketEntrySecondaryDocuments": {
                                "caseDocumentArray": [],
                                "nextPageAPI": null,
                                "object": "DocketEntrySecondaryDocuments",
                                "pageNumber": 0,
                                "totalCount": 0,
                                "totalPages": 0
                              },
                              "docketNumber": null,
                              "lastFetchDate": "2023-02-21T14:51:16+00:00",
                              "object": "DocketEntry",
                              "referencedDocketNumberArray": [],
                              "sortOrder": 6,
                              "text": "NOTICE OF RESCHEDULED TRIAL TIME TO 8:30 A.M. FILED AND MAILED",
                              "textStructured": {
                                "extractedFields": null,
                                "rawOrderedDataArray": [
                                  {
                                    "childArray": [],
                                    "lbl": null,
                                    "ord": 0,
                                    "val": "NOTICE OF RESCHEDULED TRIAL TIME TO 8:30 A.M. FILED AND MAILED"
                                  }
                                ]
                              }
                            },
                            {
                              "boundary": null,
                              "docketBadge": "DOCKET",
                              "docketEntryDate": "2013-07-17T00:00:00-07:00",
                              "docketEntryPrimaryDocuments": {
                                "caseDocumentArray": [],
                                "nextPageAPI": null,
                                "object": "DocketEntryPrimaryDocuments",
                                "pageNumber": 0,
                                "totalCount": 0,
                                "totalPages": 0
                              },
                              "docketEntrySecondaryDocuments": {
                                "caseDocumentArray": [],
                                "nextPageAPI": null,
                                "object": "DocketEntrySecondaryDocuments",
                                "pageNumber": 0,
                                "totalCount": 0,
                                "totalPages": 0
                              },
                              "docketNumber": null,
                              "lastFetchDate": "2023-02-21T14:51:16+00:00",
                              "object": "DocketEntry",
                              "referencedDocketNumberArray": [],
                              "sortOrder": 5,
                              "text": "HEARING DATE SET FOR 08/29/13, 01:30 PM, DEPT 77",
                              "textStructured": {
                                "extractedFields": null,
                                "rawOrderedDataArray": [
                                  {
                                    "childArray": [],
                                    "lbl": null,
                                    "ord": 0,
                                    "val": "HEARING DATE SET FOR 08/29/13, 01:30 PM, DEPT 77"
                                  }
                                ]
                              }
                            },
                            {
                              "boundary": null,
                              "docketBadge": "DOCKET",
                              "docketEntryDate": "2013-07-17T00:00:00-07:00",
                              "docketEntryPrimaryDocuments": {
                                "caseDocumentArray": [],
                                "nextPageAPI": null,
                                "object": "DocketEntryPrimaryDocuments",
                                "pageNumber": 0,
                                "totalCount": 0,
                                "totalPages": 0
                              },
                              "docketEntrySecondaryDocuments": {
                                "caseDocumentArray": [],
                                "nextPageAPI": null,
                                "object": "DocketEntrySecondaryDocuments",
                                "pageNumber": 0,
                                "totalCount": 0,
                                "totalPages": 0
                              },
                              "docketNumber": null,
                              "lastFetchDate": "2023-02-21T14:51:16+00:00",
                              "object": "DocketEntry",
                              "referencedDocketNumberArray": [],
                              "sortOrder": 4,
                              "text": "CLERK'S CERTIFICATE OF SERVICE MAILED-REQUEST FOR ADMINISTRATIVE FILE",
                              "textStructured": {
                                "extractedFields": null,
                                "rawOrderedDataArray": [
                                  {
                                    "childArray": [],
                                    "lbl": null,
                                    "ord": 0,
                                    "val": "CLERK'S CERTIFICATE OF SERVICE MAILED-REQUEST FOR ADMINISTRATIVE FILE"
                                  }
                                ]
                              }
                            },
                            {
                              "boundary": null,
                              "docketBadge": "DOCKET",
                              "docketEntryDate": "2013-07-02T00:00:00-07:00",
                              "docketEntryPrimaryDocuments": {
                                "caseDocumentArray": [],
                                "nextPageAPI": null,
                                "object": "DocketEntryPrimaryDocuments",
                                "pageNumber": 0,
                                "totalCount": 0,
                                "totalPages": 0
                              },
                              "docketEntrySecondaryDocuments": {
                                "caseDocumentArray": [],
                                "nextPageAPI": null,
                                "object": "DocketEntrySecondaryDocuments",
                                "pageNumber": 0,
                                "totalCount": 0,
                                "totalPages": 0
                              },
                              "docketNumber": null,
                              "lastFetchDate": "2023-02-21T14:51:16+00:00",
                              "object": "DocketEntry",
                              "referencedDocketNumberArray": [],
                              "sortOrder": 3,
                              "text": "PROOF OF SERVICE /NOTICE OF APPEAL-PARKING FILED",
                              "textStructured": {
                                "extractedFields": null,
                                "rawOrderedDataArray": [
                                  {
                                    "childArray": [],
                                    "lbl": null,
                                    "ord": 0,
                                    "val": "PROOF OF SERVICE /NOTICE OF APPEAL-PARKING FILED"
                                  }
                                ]
                              }
                            },
                            {
                              "boundary": null,
                              "docketBadge": "DOCKET",
                              "docketEntryDate": "2013-07-02T00:00:00-07:00",
                              "docketEntryPrimaryDocuments": {
                                "caseDocumentArray": [],
                                "nextPageAPI": null,
                                "object": "DocketEntryPrimaryDocuments",
                                "pageNumber": 0,
                                "totalCount": 0,
                                "totalPages": 0
                              },
                              "docketEntrySecondaryDocuments": {
                                "caseDocumentArray": [],
                                "nextPageAPI": null,
                                "object": "DocketEntrySecondaryDocuments",
                                "pageNumber": 0,
                                "totalCount": 0,
                                "totalPages": 0
                              },
                              "docketNumber": null,
                              "lastFetchDate": "2023-02-21T14:51:16+00:00",
                              "object": "DocketEntry",
                              "referencedDocketNumberArray": [],
                              "sortOrder": 2,
                              "text": "FEE WAIVER FILED -CASE FILING FEE.",
                              "textStructured": {
                                "extractedFields": null,
                                "rawOrderedDataArray": [
                                  {
                                    "childArray": [],
                                    "lbl": null,
                                    "ord": 0,
                                    "val": "FEE WAIVER FILED -CASE FILING FEE."
                                  }
                                ]
                              }
                            },
                            {
                              "boundary": null,
                              "docketBadge": "DOCKET",
                              "docketEntryDate": "2013-07-02T00:00:00-07:00",
                              "docketEntryPrimaryDocuments": {
                                "caseDocumentArray": [],
                                "nextPageAPI": null,
                                "object": "DocketEntryPrimaryDocuments",
                                "pageNumber": 0,
                                "totalCount": 0,
                                "totalPages": 0
                              },
                              "docketEntrySecondaryDocuments": {
                                "caseDocumentArray": [],
                                "nextPageAPI": null,
                                "object": "DocketEntrySecondaryDocuments",
                                "pageNumber": 0,
                                "totalCount": 0,
                                "totalPages": 0
                              },
                              "docketNumber": null,
                              "lastFetchDate": "2023-02-21T14:51:16+00:00",
                              "object": "DocketEntry",
                              "referencedDocketNumberArray": [],
                              "sortOrder": 1,
                              "text": "APPELLANT/RESPONDENT ADDRESS",
                              "textStructured": {
                                "extractedFields": null,
                                "rawOrderedDataArray": [
                                  {
                                    "childArray": [],
                                    "lbl": null,
                                    "ord": 0,
                                    "val": "APPELLANT/RESPONDENT ADDRESS"
                                  }
                                ]
                              }
                            },
                            {
                              "boundary": "last",
                              "docketBadge": "DOCKET",
                              "docketEntryDate": "2013-07-02T00:00:00-07:00",
                              "docketEntryPrimaryDocuments": {
                                "caseDocumentArray": [],
                                "nextPageAPI": null,
                                "object": "DocketEntryPrimaryDocuments",
                                "pageNumber": 0,
                                "totalCount": 0,
                                "totalPages": 0
                              },
                              "docketEntrySecondaryDocuments": {
                                "caseDocumentArray": [],
                                "nextPageAPI": null,
                                "object": "DocketEntrySecondaryDocuments",
                                "pageNumber": 0,
                                "totalCount": 0,
                                "totalPages": 0
                              },
                              "docketNumber": null,
                              "lastFetchDate": "2023-02-21T14:51:16+00:00",
                              "object": "DocketEntry",
                              "referencedDocketNumberArray": [],
                              "sortOrder": 0,
                              "text": "PARKING CITATION NO 4206272685 PARKING CITATION NO 4206272685",
                              "textStructured": {
                                "extractedFields": null,
                                "rawOrderedDataArray": [
                                  {
                                    "childArray": [],
                                    "lbl": null,
                                    "ord": 0,
                                    "val": "PARKING CITATION NO 4206272685 PARKING CITATION NO 4206272685"
                                  }
                                ]
                              }
                            }
                          ],
                          "nextPageAPI": null,
                          "object": "DocketEntries",
                          "pageNumber": 1,
                          "totalCount": 10,
                          "totalPages": 1
                        },
                        "exportAPI": "https://enterpriseapi.unicourt.com/caseExport/CASEak99a698ea5413",
                        "filedDate": "2031-07-02T00:00:00+00:00",
                        "firstFetchDate": "2013-07-21T09:48:26+00:00",
                        "hasDocumentsWithPreview": false,
                        "hasOnlyMetaInfo": false,
                        "hearings": {
                          "hearingArray": [],
                          "nextPageAPI": null,
                          "object": "Hearings",
                          "pageNumber": 0,
                          "totalCount": 0,
                          "totalPages": 0
                        },
                        "judges": {
                          "judgeArray": [],
                          "nextPageAPI": null,
                          "object": "Judges",
                          "pageNumber": 0,
                          "totalCount": 0,
                          "totalPages": 0
                        },
                        "lastFetchDate": "2023-02-21T14:51:13+00:00",
                        "lastFetchDateWithUpdates": "2020-01-13T17:56:37+00:00",
                        "object": "Case",
                        "participantsLastFetchDate": "2023-02-21T14:51:13+00:00",
                        "parties": {
                          "nextPageAPI": null,
                          "object": "Parties",
                          "pageNumber": 1,
                          "partyArray": [
                            {
                              "attorneyRepresentationType": {
                                "attorneyRepresentationTypeId": "ATRP2jCCwDRNaP97DX",
                                "createdDate": "2022-03-28T04:59:20+00:00",
                                "name": "Unrepresented",
                                "object": "AttorneyRepresentationType"
                              },
                              "contact": {
                                "addressArray": [],
                                "emailArray": [],
                                "object": "Contact",
                                "phoneNumberArray": []
                              },
                              "firstFetchDate": "2013-07-21T09:48:26+00:00",
                              "firstName": "RUTH",
                              "isVisible": true,
                              "lastFetchDate": "2023-02-21T14:51:13+00:00",
                              "lastName": "BIRD",
                              "middleName": null,
                              "name": "BIRD RUTH",
                              "namePrefix": null,
                              "nameSuffix": null,
                              "object": "Party",
                              "partyAttorneyAssociations": {
                                "nextPageAPI": null,
                                "object": "PartyAttorneyAssociations",
                                "pageNumber": 1,
                                "partyAttorneyAssociationArray": [
                                  {
                                    "attorneyId": "ATTYak779eef5398c8",
                                    "isVisible": false,
                                    "object": "PartyAttorneyAssociation",
                                    "partyAttorneyAssociationId": "PATMakffc0128c19f4",
                                    "partyId": "PRTYak21a2d603404e"
                                  }
                                ],
                                "totalCount": 1,
                                "totalPages": 1
                              },
                              "partyClassificationType": "INDIVIDUAL",
                              "partyId": "PRTYak21a2d603404e",
                              "partyRole": {
                                "createdDate": "2022-05-27T00:50:33+00:00",
                                "description": null,
                                "name": "Defendant",
                                "object": "PartyRole",
                                "partyRoleGroup": "Party Defensive",
                                "partyRoleGroupId": "PTYG73uQdgJdpA3ebc",
                                "partyRoleId": "PTYRKo8tkTBFvJdCQp"
                              },
                              "possibleNormPartyArray": [],
                              "sourcePartyRole": "DEFENDANT"
                            },
                            {
                              "attorneyRepresentationType": {
                                "attorneyRepresentationTypeId": "ATRP2jCCwDRNaP97DX",
                                "createdDate": "2022-03-28T04:59:20+00:00",
                                "name": "Unrepresented",
                                "object": "AttorneyRepresentationType"
                              },
                              "contact": {
                                "addressArray": [],
                                "emailArray": [],
                                "object": "Contact",
                                "phoneNumberArray": []
                              },
                              "firstFetchDate": "2013-07-21T09:48:26+00:00",
                              "firstName": "CITY OF LOS ANGELES",
                              "isVisible": true,
                              "lastFetchDate": "2023-02-21T14:51:13+00:00",
                              "lastName": null,
                              "middleName": null,
                              "name": "CITY OF LOS ANGELES",
                              "namePrefix": null,
                              "nameSuffix": null,
                              "object": "Party",
                              "partyAttorneyAssociations": {
                                "nextPageAPI": null,
                                "object": "PartyAttorneyAssociations",
                                "pageNumber": 1,
                                "partyAttorneyAssociationArray": [
                                  {
                                    "attorneyId": "ATTYak359025082a6a",
                                    "isVisible": false,
                                    "object": "PartyAttorneyAssociation",
                                    "partyAttorneyAssociationId": "PATMak9c6b602c3c0a",
                                    "partyId": "PRTYakb997f5e0e0d7"
                                  }
                                ],
                                "totalCount": 1,
                                "totalPages": 1
                              },
                              "partyClassificationType": "OTHER",
                              "partyId": "PRTYakb997f5e0e0d7",
                              "partyRole": {
                                "createdDate": "2022-05-27T00:50:33+00:00",
                                "description": null,
                                "name": "Plaintiff",
                                "object": "PartyRole",
                                "partyRoleGroup": "Party Offensive",
                                "partyRoleGroupId": "PTYGBnjxbx6tKNfVEP",
                                "partyRoleId": "PTYRiP8nMgPxBsPc5i"
                              },
                              "possibleNormPartyArray": [],
                              "sourcePartyRole": "PLAINTIFF"
                            }
                          ],
                          "totalCount": 2,
                          "totalPages": 1
                        },
                        "relatedCases": {
                          "nextPageAPI": null,
                          "object": "RelatedCases",
                          "pageNumber": 0,
                          "relatedCaseArray": [],
                          "totalCount": 0,
                          "totalPages": 0
                        },
                        "sourceCaseData": {
                          "natureOfSuitArray": [],
                          "object": "SourceCaseData",
                          "sourceCaseStatus": "DISPOSED",
                          "sourceCaseType": "CIVIL",
                          "sourceCauseOfActionArray": [],
                          "sourceChargeArray": [],
                          "sourceCourt": "STANLEY MOSK COURTHOUSE",
                          "sourcePageData": []
                        },
                        "sourceDataStatus": null,
                        "url": null
                      },
                      "caseAPI": "https://enterpriseapi.unicourt.com/case/CASEak99a698ea5413",
                      "caseId": "CASEak99a698ea5413",
                      "lastFetchDate": "2023-02-21T14:51:13+00:00",
                      "lastFetchDateWithUpdates": "2020-01-13T17:56:37+00:00",
                      "lastTrackedDetails": {
                        "lastTrackDate": "2023-02-21T11:00:06+00:00",
                        "lastTrackException": null,
                        "object": "LastTrackedDetails",
                        "pacerOptions": null
                      },
                      "object": "CaseTrack",
                      "pacerOptions": null,
                      "schedule": {
                        "days": [],
                        "object": "Schedule",
                        "type": "daily"
                      }
                    }
                  },
                  "sampleResponse2": {
                    "value": {
                      "case": null,
                      "caseAPI": "https://enterpriseapi.unicourt.com/case/CASEby1cc50c251820",
                      "caseId": "CASEby1cc50c251820",
                      "lastFetchDate": null,
                      "lastFetchDateWithUpdates": null,
                      "lastTrackedDetails": {
                        "lastTrackDate": "2023-01-23T11:07:16+00:00",
                        "lastTrackException": {
                          "code": "UN101",
                          "details": "The Case is no longer available in the Court",
                          "message": "NO_LONGER_AVAILABLE_IN_COURT",
                          "object": "Exception"
                        },
                        "object": "LastTrackedDetails",
                        "pacerOptions": null
                      },
                      "object": "CaseTrack",
                      "pacerOptions": null,
                      "schedule": {
                        "days": [],
                        "object": "Schedule",
                        "type": "daily"
                      }
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/CaseTrack"
                }
              }
            },
            "description": "OK"
          },
          "404": {
            "content": {
              "application/json": {
                "examples": {
                  "sample404Response": {
                    "value": {
                      "code": "UN404",
                      "details": "Invalid request. Please check the `caseId`.",
                      "message": "RESOURCE_NOT_FOUND",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Not Found"
          },
          "451": {
            "content": {
              "application/json": {
                "examples": {
                  "sample451Response": {
                    "value": {
                      "case": null,
                      "caseAPI": "https://enterpriseapi.unicourt.com/case/CASEhq2c3224900a48",
                      "caseId": "CASEhzcde7525188dd",
                      "lastFetchDate": null,
                      "lastFetchDateWithUpdates": null,
                      "lastTrackedDetails": {
                        "lastTrackDate": "2022-07-05T11:04:18+00:00",
                        "lastTrackException": {
                          "code": "UN100",
                          "details": "This Case is no longer available as it is Sealed from the Court.",
                          "message": "SEALED",
                          "object": "Exception"
                        },
                        "object": "LastTrackedDetails",
                        "pacerOptions": null
                      },
                      "object": "CaseTrack",
                      "pacerOptions": null,
                      "schedule": {
                        "days": [],
                        "object": "Schedule",
                        "type": "daily"
                      }
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/CaseTrack"
                }
              }
            },
            "description": "Sealed Case"
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "Internal_Server_Error": {
                    "value": {
                      "code": "UN500",
                      "details": "Something went wrong. Please retry again later.",
                      "message": "INTERNAL_SERVER_ERROR",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Internal Server Error"
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Get Case Track for a requested Case Id.",
        "tags": [
          "Case Tracking API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [
        {
          "description": "The caseId value for which case tracking information is to be retrieved.",
          "examples": {
            "HTTP200-sampleResponse1": {
              "summary": "sampleResponse1",
              "value": "CASEak99a698ea5413"
            },
            "HTTP200-sampleResponse2": {
              "summary": "sampleResponse2",
              "value": "CASEby1cc50c251820"
            },
            "HTTP404-sample404Response": {
              "summary": "sample404Response",
              "value": "CASEqq9d8b72d0800c"
            },
            "HTTP451-sample451Response": {
              "summary": "sample451Response",
              "value": "CASEhzcde7525188dd"
            }
          },
          "in": "path",
          "name": "caseId",
          "required": true,
          "schema": {
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          }
        }
      ],
      "x-api-name": "AddOrRemoveCaseTrackAPI",
      "x-unicourt-tag": "CaseTrackingAPIs"
    },
    "/caseTracks": {
      "get": {
        "description": "Retrieve a list of all tracked cases.",
        "operationId": "getCaseTracks",
        "parameters": [
          {
            "description": "The lastFetchDate value of the tracked case. The date value should be entered in the format YYYY-MM-DDTHH:MM:SS+ZZ:zz.\n",
            "examples": {
              "HTTP200-sampleResponse1": {
                "summary": "sampleResponse1",
                "value": "2022-03-08T10:17:56+00:00"
              },
              "HTTP400-sample400Response": {
                "summary": "sample400Response",
                "value": "2022-03-08"
              }
            },
            "in": "query",
            "name": "lastFetchDate",
            "schema": {
              "example": "2022-03-08T10:17:56+00:00",
              "format": "date-time",
              "maxLength": 25,
              "minLength": 25,
              "nullable": false,
              "type": "string"
            }
          },
          {
            "description": "The date on which changes were last found in the case information.\n",
            "examples": {
              "HTTP200-sampleResponse1": {
                "summary": "sampleResponse1",
                "value": "2022-03-08T10:17:56+00:00"
              },
              "HTTP400-sample400Response": {
                "summary": "sample400Response",
                "value": "2022-03-08"
              }
            },
            "in": "query",
            "name": "lastFetchDateWithUpdates",
            "schema": {
              "example": "2022-03-08T10:17:56+00:00",
              "format": "date-time",
              "maxLength": 25,
              "minLength": 25,
              "nullable": false,
              "type": "string"
            }
          },
          {
            "description": "The page number of the results to be retrieved.<br>\n  - Minimum: 1\n",
            "examples": {
              "HTTP200-sampleResponse1": {
                "summary": "sampleResponse1",
                "value": 1
              },
              "HTTP400-sample400Response": {
                "summary": "sample400Response",
                "value": "A1"
              }
            },
            "in": "query",
            "name": "pageNumber",
            "schema": {
              "example": 1,
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleResponse1": {
                    "value": {
                      "caseTrackPreviewArray": [
                        {
                          "caseAPI": "https://enterpriseapi.unicourt.com/case/CASEhq2c3224900a48",
                          "caseId": "CASEhq2c3224900a48",
                          "lastFetchDate": null,
                          "lastFetchDateWithUpdates": null,
                          "lastTrackedDetails": {
                            "lastTrackDate": "2022-07-05T11:04:18+00:00",
                            "lastTrackException": null,
                            "object": "LastTrackedDetails",
                            "pacerOptions": null
                          },
                          "object": "CaseTrackPreview",
                          "pacerOptions": null,
                          "schedule": {
                            "days": [],
                            "object": "Schedule",
                            "type": "daily"
                          }
                        }
                      ],
                      "nextPageAPI": null,
                      "object": "CaseTrackListResponse",
                      "pageNumber": 1,
                      "previousPageAPI": null,
                      "totalCount": 1,
                      "totalPages": 1
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/CaseTrackListResponse"
                }
              }
            },
            "description": "OK"
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "sample400Response": {
                    "value": {
                      "code": "UN400",
                      "details": "Invalid request. Please check the `pageNumber`",
                      "message": "INVALID_INPUT",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Bad Request"
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "Internal_Server_Error": {
                    "value": {
                      "code": "UN500",
                      "details": "Something went wrong. Please retry again later.",
                      "message": "INTERNAL_SERVER_ERROR",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Internal Server Error"
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Get Case Track list.",
        "tags": [
          "Case Tracking API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [],
      "x-api-name": "CaseTracksAPI",
      "x-unicourt-tag": "CaseTrackingAPIs"
    },
    "/caseUpdate": {
      "put": {
        "callbacks": {
          "CaseUpdateCompletionWSS": {
            "<WSS liveCallbacks>": {
              "post": {
                "requestBody": {
                  "content": {
                    "application/json": {
                      "examples": {
                        "Request_Completed": {
                          "$ref": "#/components/examples/CaseUpdateResponseWhenStatusIsComplete"
                        },
                        "Request_Failure": {
                          "$ref": "#/components/examples/CaseUpdateResponseWhenStatusIsFailure"
                        },
                        "Request_InProgress": {
                          "$ref": "#/components/examples/CaseUpdateResponseWhenStatusIsInProgress"
                        }
                      },
                      "schema": {
                        "$ref": "#/components/schemas/CaseUpdate"
                      }
                    }
                  },
                  "description": "Case Update completion notification. This will be for type=liveCallbacks and type=historicalCallbacks endpoints in WSS. Case Update Completion will come via liveCallbacks with the object as CaseUpdate. HistoricalCallbacks will be having the object CaseUpdatePreview. You will get case object when case object size is less than 127KB. Refer <a href=\"https://docs.unicourt.com/knowledge-base/endpoints-supporting-websocket-protocol#case-update-api\">  Websocket Documentation </a>"
                },
                "responses": {
                  "200": {
                    "content": {
                      "application/json": {
                        "example": {
                          "message": "success"
                        },
                        "schema": {
                          "$ref": "#/components/schemas/Success"
                        }
                      }
                    },
                    "description": "OK"
                  }
                }
              }
            }
          }
        },
        "description": "Request case updates for the specified case.",
        "operationId": "updateCase",
        "requestBody": {
          "content": {
            "application/json": {
              "examples": {
                "Request_For_Case_Update": {
                  "$ref": "#/components/examples/CaseUpdateRequest"
                },
                "Request_For_Pacer_Case_Update": {
                  "$ref": "#/components/examples/CaseUpdatePacerRequest"
                }
              },
              "schema": {
                "$ref": "#/components/schemas/CaseUpdateRequest"
              }
            }
          }
        },
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleResponse": {
                    "value": {
                      "case": null,
                      "caseAPI": "https://enterpriseapi.unicourt.com/case/CASEhq9d8b72d0800c",
                      "caseId": "CASEhq9d8b72d0800c",
                      "exception": null,
                      "object": "CaseUpdate",
                      "pacerOptions": null,
                      "requestedDate": "2022-03-08T10:17:56+00:00",
                      "status": "IN_PROGRESS"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/CaseUpdate"
                }
              }
            },
            "description": "OK"
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "sample400Response": {
                    "value": {
                      "code": "UN400",
                      "details": "Invalid request. Please check the `caseId`.",
                      "message": "INVALID_INPUT",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Bad Request"
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "Internal_Server_Error": {
                    "value": {
                      "code": "UN500",
                      "details": "Something went wrong. Please retry again later.",
                      "message": "INTERNAL_SERVER_ERROR",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Internal Server Error"
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Add Case Update for the requested Case Id.",
        "tags": [
          "Case Update API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "PUT",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "x-api-name": "CaseUpdateAPI",
      "x-unicourt-tag": "CaseUpdateAPIs"
    },
    "/caseUpdate/{caseId}": {
      "get": {
        "description": "Retrieve case updates for the specified case object.",
        "operationId": "getCaseUpdateByCaseId",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleResponse10_limitReachedperDay": {
                    "value": {
                      "case": null,
                      "caseAPI": "https://enterpriseapi.unicourt.com/case/CASEeqfb72ba4726f1",
                      "caseId": "CASEeqfb72ba4726f1",
                      "exception": {
                        "code": "UN203",
                        "details": "You have reached 100 Case Update per day. Please contact support to increase this limit.",
                        "message": "LIMIT_REACHED",
                        "object": "Exception"
                      },
                      "object": "CaseUpdate",
                      "pacerOptions": null,
                      "requestedDate": "2023-02-21T14:52:23+00:00",
                      "status": "FAILURE"
                    }
                  },
                  "sampleResponse11_setPacerCredential": {
                    "value": {
                      "case": null,
                      "caseAPI": "https://enterpriseapi.unicourt.com/case/CASEgs0da150005024",
                      "caseId": "CASEgs0da150005024",
                      "exception": {
                        "code": "UN400",
                        "details": "Please set your pacerCredential.",
                        "message": "INVALID_INPUT",
                        "object": "Exception"
                      },
                      "object": "CaseUpdate",
                      "pacerOptions": {
                        "additionalPageArray": [],
                        "fetchParticipantsIfOlderThanDays": 0,
                        "object": "CaseUpdatePacerOptionsResponse",
                        "pacerClientCode": null,
                        "pacerUserId": "URpYwer3tyh5r56gq2",
                        "refreshType": "fetchNewDocketEntries"
                      },
                      "requestedDate": "2023-02-21T09:18:20+00:00",
                      "status": "FAILURE"
                    }
                  },
                  "sampleResponse1_unavailableCase": {
                    "value": {
                      "case": null,
                      "caseAPI": "https://enterpriseapi.unicourt.com/case/CASEhq489e759ef3b9",
                      "caseId": "CASEby1cc50c251820",
                      "exception": {
                        "code": "UN101",
                        "details": "The Case is no longer available in the Court",
                        "message": "NO_LONGER_AVAILABLE_IN_COURT",
                        "object": "Exception"
                      },
                      "object": "CaseUpdate",
                      "pacerOptions": null,
                      "requestedDate": "2020-05-16T11:51:27+00:00",
                      "status": "FAILURE"
                    }
                  },
                  "sampleResponse2_courtsiteDown": {
                    "value": {
                      "case": null,
                      "caseAPI": "https://enterpriseapi.unicourt.com/case/CASEaif4a4daa180b3",
                      "caseId": "CASEaif4a4daa180b3",
                      "exception": {
                        "code": "UN503",
                        "details": "CaseUpdate integration with CA CTSS59d506c4247d57 court website is broken. Cannot accepts requests now",
                        "message": "NOT_ACCEPTING_REQUESTS",
                        "object": "Exception"
                      },
                      "object": "CaseUpdate",
                      "pacerOptions": null,
                      "requestedDate": "2023-02-21T09:11:35+00:00",
                      "status": "FAILURE"
                    }
                  },
                  "sampleResponse3_timeout": {
                    "value": {
                      "case": null,
                      "caseAPI": "https://enterpriseapi.unicourt.com/case/CASEaif4a4daa180b3",
                      "caseId": "CASEaif4a4daa180b3",
                      "exception": {
                        "code": "UN504",
                        "details": "Request took long time to process and timed out.",
                        "message": "TIMEOUT",
                        "object": "Exception"
                      },
                      "object": "CaseUpdate",
                      "pacerOptions": null,
                      "requestedDate": "2020-05-16T11:51:27+00:00",
                      "status": "FAILURE"
                    }
                  },
                  "sampleResponse4_invalidCase": {
                    "value": {
                      "case": null,
                      "caseAPI": "https://enterpriseapi.unicourt.com/case/CASEdlcc54d6c958mb",
                      "caseId": "CASEdlcc54d6c958mb",
                      "exception": {
                        "code": "UN404",
                        "details": "Requested caseId is invalid.",
                        "message": "RESOURCE_NOT_FOUND",
                        "object": "Exception"
                      },
                      "object": "CaseUpdate",
                      "pacerOptions": null,
                      "requestedDate": "2023-02-21T09:14:59+00:00",
                      "status": "FAILURE"
                    }
                  },
                  "sampleResponse5_limitReached_for_court": {
                    "value": {
                      "case": null,
                      "caseAPI": "https://enterpriseapi.unicourt.com/case/CASEak10c71d22db74",
                      "caseId": "CASEak10c71d22db74",
                      "exception": {
                        "code": "UN203",
                        "details": "You have reached the maximum allowed caseUpdate for CA LOS ANGELES in a day",
                        "message": "LIMIT_REACHED",
                        "object": "Exception"
                      },
                      "object": "CaseUpdate",
                      "pacerOptions": null,
                      "requestedDate": "2020-05-16T11:51:27+00:00",
                      "status": "FAILURE"
                    }
                  },
                  "sampleResponse7_caseUpdateNotSupported": {
                    "value": {
                      "case": null,
                      "caseAPI": "https://enterpriseapi.unicourt.com/case/CASEap6bcbd94168a6",
                      "caseId": "CASEap6bcbd94168a6",
                      "exception": {
                        "code": "UN501",
                        "details": "caseUpdate feature is not supported for the requested Case.",
                        "message": "FEATURE_NOT_SUPPORTED",
                        "object": "Exception"
                      },
                      "object": "CaseUpdate",
                      "pacerOptions": null,
                      "requestedDate": "2023-02-21T09:22:10+00:00",
                      "status": "FAILURE"
                    }
                  },
                  "sampleResponse8_invalidPacerLogin": {
                    "value": {
                      "case": null,
                      "caseAPI": "https://enterpriseapi.unicourt.com/case/CASEgud568458a15ce",
                      "caseId": "CASEgud568458a15ce",
                      "exception": {
                        "code": "UN400",
                        "details": "PACER Login failed. Please try again.",
                        "message": "INVALID_INPUT",
                        "object": "Exception"
                      },
                      "object": "CaseUpdate",
                      "pacerOptions": {
                        "additionalPageArray": [],
                        "fetchParticipantsIfOlderThanDays": 0,
                        "object": "CaseUpdatePacerOptionsResponse",
                        "pacerClientCode": null,
                        "pacerUserId": "URKYwer3tyh5r56gq2",
                        "refreshType": "fetchNewDocketEntries"
                      },
                      "requestedDate": "2023-02-21T09:23:25+00:00",
                      "status": "FAILURE"
                    }
                  },
                  "sampleResponse9_paceroptions": {
                    "value": {
                      "case": null,
                      "caseAPI": "https://enterpriseapi.unicourt.com/case/CASEgu6c99c7baa4c7",
                      "caseId": "CASEgu6c99c7baa4c7",
                      "exception": {
                        "code": "UN400",
                        "details": "Please send the pacerOptions field with pacerUserId.",
                        "message": "INVALID_INPUT",
                        "object": "Exception"
                      },
                      "object": "CaseUpdate",
                      "pacerOptions": null,
                      "requestedDate": "2023-02-21T09:24:35+00:00",
                      "status": "FAILURE"
                    }
                  },
                  "sampleResponse_complete": {
                    "value": {
                      "case": {
                        "attorneys": {
                          "attorneyArray": [
                            {
                              "attorneyId": "ATTYak359025082a6a",
                              "attorneyLawFirmArray": [],
                              "attorneyType": {
                                "attorneyTypeId": "ATYPRPk3LNobYmtqwF",
                                "createdDate": "2022-03-28T04:59:12+00:00",
                                "name": "Attorney",
                                "object": "AttorneyType"
                              },
                              "barNumber": null,
                              "contact": {
                                "addressArray": [],
                                "emailArray": [],
                                "object": "Contact",
                                "phoneNumberArray": []
                              },
                              "firstFetchDate": "2013-07-21T09:48:26+00:00",
                              "firstName": "CITY OF LOS ANGELES",
                              "isVisible": false,
                              "lastFetchDate": "2016-06-06T09:03:47+00:00",
                              "lastName": null,
                              "middleName": null,
                              "name": "CITY OF LOS ANGELES",
                              "namePrefix": null,
                              "nameSuffix": null,
                              "object": "Attorney",
                              "partyAttorneyAssociations": {
                                "nextPageAPI": null,
                                "object": "PartyAttorneyAssociations",
                                "pageNumber": 1,
                                "partyAttorneyAssociationArray": [
                                  {
                                    "attorneyId": "ATTYak359025082a6a",
                                    "isVisible": false,
                                    "object": "PartyAttorneyAssociation",
                                    "partyAttorneyAssociationId": "PATMak9c6b602c3c0a",
                                    "partyId": "PRTYakb997f5e0e0d7"
                                  }
                                ],
                                "totalCount": 1,
                                "totalPages": 1
                              },
                              "partyRoleGroupIdArray": [],
                              "partyRoleIdArray": [],
                              "possibleNormAttorneyArray": [],
                              "possibleNormLawFirmArray": [],
                              "sourceAttorneyType": "ATTORNEY"
                            },
                            {
                              "attorneyId": "ATTYak779eef5398c8",
                              "attorneyLawFirmArray": [],
                              "attorneyType": {
                                "attorneyTypeId": "ATYPRPk3LNobYmtqwF",
                                "createdDate": "2022-03-28T04:59:12+00:00",
                                "name": "Attorney",
                                "object": "AttorneyType"
                              },
                              "barNumber": null,
                              "contact": {
                                "addressArray": [],
                                "emailArray": [],
                                "object": "Contact",
                                "phoneNumberArray": []
                              },
                              "firstFetchDate": "2013-07-21T09:48:26+00:00",
                              "firstName": "RUTH",
                              "isVisible": false,
                              "lastFetchDate": "2016-06-06T09:03:47+00:00",
                              "lastName": "BIRD",
                              "middleName": null,
                              "name": "BIRD, RUTH",
                              "namePrefix": null,
                              "nameSuffix": null,
                              "object": "Attorney",
                              "partyAttorneyAssociations": {
                                "nextPageAPI": null,
                                "object": "PartyAttorneyAssociations",
                                "pageNumber": 1,
                                "partyAttorneyAssociationArray": [
                                  {
                                    "attorneyId": "ATTYak779eef5398c8",
                                    "isVisible": false,
                                    "object": "PartyAttorneyAssociation",
                                    "partyAttorneyAssociationId": "PATMakffc0128c19f4",
                                    "partyId": "PRTYak21a2d603404e"
                                  }
                                ],
                                "totalCount": 1,
                                "totalPages": 1
                              },
                              "partyRoleGroupIdArray": [],
                              "partyRoleIdArray": [],
                              "possibleNormAttorneyArray": [],
                              "possibleNormLawFirmArray": [],
                              "sourceAttorneyType": "ATTORNEY"
                            }
                          ],
                          "nextPageAPI": null,
                          "object": "Attorneys",
                          "pageNumber": 1,
                          "totalCount": 2,
                          "totalPages": 1
                        },
                        "caseDocuments": {
                          "caseDocumentArray": [],
                          "nextPageAPI": null,
                          "object": "CaseDocuments",
                          "pageNumber": 0,
                          "totalCount": 0,
                          "totalPages": 0
                        },
                        "caseId": "CASEak99a698ea5413",
                        "caseName": "CITY OF LOS ANGELES VS BIRD, RUTH",
                        "caseNumber": "13K09504",
                        "caseStats": {
                          "allCaseDocumentCount": 0,
                          "attorneyCount": 2,
                          "caseDocumentInLibraryCount": 0,
                          "docketEntryCount": 10,
                          "freeCaseDocumentCount": 0,
                          "hearingCount": 0,
                          "judgeCount": 0,
                          "object": "CaseStats",
                          "paidCaseDocumentCount": 0,
                          "partyCount": 2,
                          "relatedCaseCount": 0
                        },
                        "caseStatus": {
                          "caseClassArray": [
                            "Civil",
                            "Criminal"
                          ],
                          "caseStatusGroup": "Closed",
                          "caseStatusGroupId": "CSSG6ERqyFdydo52WK",
                          "caseStatusId": "CSSTbacAYUd7MM5xUM",
                          "createdDate": "2022-03-28T04:58:47+00:00",
                          "name": "Closed",
                          "object": "CaseStatus"
                        },
                        "caseType": {
                          "areaOfLaw": null,
                          "areaOfLawId": null,
                          "caseClass": "Civil",
                          "caseClassId": "CSCLNjbKTN7Yfo2wdb",
                          "caseTypeGroup": null,
                          "caseTypeGroupId": null,
                          "caseTypeId": "CTYPNjbKTN7Yfo2wdb",
                          "caseTypeTag": null,
                          "createdDate": "2022-03-28T04:58:35+00:00",
                          "name": null,
                          "object": "CaseType",
                          "saliCode": null
                        },
                        "causeOfActionArray": [],
                        "chargeArray": [],
                        "court": {
                          "additionalLevels": null,
                          "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/appealCourts",
                          "container": null,
                          "containerType": null,
                          "courtId": "CORTV4vCEaKrhystBz",
                          "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/courtLocations",
                          "courtServiceStatusAPI": null,
                          "courtSystemId": "COSYACHBdMewtaG5DY",
                          "courtTypeId": "COTPm8jjc2PAydpFhq",
                          "createdDate": "2022-07-08T05:50:06+00:00",
                          "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/jurisdictionGeo",
                          "name": "Los Angeles County Superior Court",
                          "nameAka": "Los Angeles County Superior Court of California",
                          "object": "Court",
                          "system": "California Superior Courts",
                          "type": "State"
                        },
                        "courtLocation": {
                          "city": "Los Angeles",
                          "courtLocationId": "COLO6b82CkRqS846hx",
                          "courtServiceStatusAPI": null,
                          "courtsForCourtLocationAPI": "https://enterpriseapi.unicourt.com/masterData/courtLocation/COLO6b82CkRqS846hx/courts",
                          "createdDate": "2022-07-08T05:50:08+00:00",
                          "name": "Stanley Mosk Courthouse",
                          "object": "CourtLocation",
                          "stateName": "California",
                          "streetAddress1": "111 North Hill Street",
                          "streetAddress2": null
                        },
                        "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus/CTSSb545c31e623bad",
                        "courtServiceStatusId": "CTSSb545c31e623bad",
                        "docketEntries": {
                          "docketEntryArray": [
                            {
                              "boundary": "first",
                              "docketBadge": "DOCKET",
                              "docketEntryDate": "2031-07-02T00:00:00-07:00",
                              "docketEntryPrimaryDocuments": {
                                "caseDocumentArray": [],
                                "nextPageAPI": null,
                                "object": "DocketEntryPrimaryDocuments",
                                "pageNumber": 0,
                                "totalCount": 0,
                                "totalPages": 0
                              },
                              "docketEntrySecondaryDocuments": {
                                "caseDocumentArray": [],
                                "nextPageAPI": null,
                                "object": "DocketEntrySecondaryDocuments",
                                "pageNumber": 0,
                                "totalCount": 0,
                                "totalPages": 0
                              },
                              "docketNumber": null,
                              "lastFetchDate": "2023-02-21T08:51:53+00:00",
                              "object": "DocketEntry",
                              "referencedDocketNumberArray": [],
                              "sortOrder": 9,
                              "text": "PARKING APPEAL FILED",
                              "textStructured": {
                                "extractedFields": null,
                                "rawOrderedDataArray": [
                                  {
                                    "childArray": [],
                                    "lbl": null,
                                    "ord": 0,
                                    "val": "PARKING APPEAL FILED"
                                  }
                                ]
                              }
                            },
                            {
                              "boundary": null,
                              "docketBadge": "DOCKET",
                              "docketEntryDate": "2031-07-02T00:00:00-07:00",
                              "docketEntryPrimaryDocuments": {
                                "caseDocumentArray": [],
                                "nextPageAPI": null,
                                "object": "DocketEntryPrimaryDocuments",
                                "pageNumber": 0,
                                "totalCount": 0,
                                "totalPages": 0
                              },
                              "docketEntrySecondaryDocuments": {
                                "caseDocumentArray": [],
                                "nextPageAPI": null,
                                "object": "DocketEntrySecondaryDocuments",
                                "pageNumber": 0,
                                "totalCount": 0,
                                "totalPages": 0
                              },
                              "docketNumber": null,
                              "lastFetchDate": "2023-02-21T08:51:53+00:00",
                              "object": "DocketEntry",
                              "referencedDocketNumberArray": [],
                              "sortOrder": 8,
                              "text": "APPEAL FROM ADMINISTRATIVE DECISION",
                              "textStructured": {
                                "extractedFields": null,
                                "rawOrderedDataArray": [
                                  {
                                    "childArray": [],
                                    "lbl": null,
                                    "ord": 0,
                                    "val": "APPEAL FROM ADMINISTRATIVE DECISION"
                                  }
                                ]
                              }
                            },
                            {
                              "boundary": null,
                              "docketBadge": "DOCKET",
                              "docketEntryDate": "2013-08-29T00:00:00-07:00",
                              "docketEntryPrimaryDocuments": {
                                "caseDocumentArray": [],
                                "nextPageAPI": null,
                                "object": "DocketEntryPrimaryDocuments",
                                "pageNumber": 0,
                                "totalCount": 0,
                                "totalPages": 0
                              },
                              "docketEntrySecondaryDocuments": {
                                "caseDocumentArray": [],
                                "nextPageAPI": null,
                                "object": "DocketEntrySecondaryDocuments",
                                "pageNumber": 0,
                                "totalCount": 0,
                                "totalPages": 0
                              },
                              "docketNumber": null,
                              "lastFetchDate": "2023-02-21T08:51:53+00:00",
                              "object": "DocketEntry",
                              "referencedDocketNumberArray": [],
                              "sortOrder": 7,
                              "text": "NOTICE OF DECISION-ADMINISTRATIVE APPEAL NOTICE OF DECISION-ADMINISTRATIVE APPEAL AFFIRMED.",
                              "textStructured": {
                                "extractedFields": null,
                                "rawOrderedDataArray": [
                                  {
                                    "childArray": [],
                                    "lbl": null,
                                    "ord": 0,
                                    "val": "NOTICE OF DECISION-ADMINISTRATIVE APPEAL NOTICE OF DECISION-ADMINISTRATIVE APPEAL AFFIRMED."
                                  }
                                ]
                              }
                            },
                            {
                              "boundary": null,
                              "docketBadge": "DOCKET",
                              "docketEntryDate": "2013-08-12T00:00:00-07:00",
                              "docketEntryPrimaryDocuments": {
                                "caseDocumentArray": [],
                                "nextPageAPI": null,
                                "object": "DocketEntryPrimaryDocuments",
                                "pageNumber": 0,
                                "totalCount": 0,
                                "totalPages": 0
                              },
                              "docketEntrySecondaryDocuments": {
                                "caseDocumentArray": [],
                                "nextPageAPI": null,
                                "object": "DocketEntrySecondaryDocuments",
                                "pageNumber": 0,
                                "totalCount": 0,
                                "totalPages": 0
                              },
                              "docketNumber": null,
                              "lastFetchDate": "2023-02-21T08:51:53+00:00",
                              "object": "DocketEntry",
                              "referencedDocketNumberArray": [],
                              "sortOrder": 6,
                              "text": "NOTICE OF RESCHEDULED TRIAL TIME TO 8:30 A.M. FILED AND MAILED",
                              "textStructured": {
                                "extractedFields": null,
                                "rawOrderedDataArray": [
                                  {
                                    "childArray": [],
                                    "lbl": null,
                                    "ord": 0,
                                    "val": "NOTICE OF RESCHEDULED TRIAL TIME TO 8:30 A.M. FILED AND MAILED"
                                  }
                                ]
                              }
                            },
                            {
                              "boundary": null,
                              "docketBadge": "DOCKET",
                              "docketEntryDate": "2013-07-17T00:00:00-07:00",
                              "docketEntryPrimaryDocuments": {
                                "caseDocumentArray": [],
                                "nextPageAPI": null,
                                "object": "DocketEntryPrimaryDocuments",
                                "pageNumber": 0,
                                "totalCount": 0,
                                "totalPages": 0
                              },
                              "docketEntrySecondaryDocuments": {
                                "caseDocumentArray": [],
                                "nextPageAPI": null,
                                "object": "DocketEntrySecondaryDocuments",
                                "pageNumber": 0,
                                "totalCount": 0,
                                "totalPages": 0
                              },
                              "docketNumber": null,
                              "lastFetchDate": "2023-02-21T08:51:53+00:00",
                              "object": "DocketEntry",
                              "referencedDocketNumberArray": [],
                              "sortOrder": 5,
                              "text": "HEARING DATE SET FOR 08/29/13, 01:30 PM, DEPT 77",
                              "textStructured": {
                                "extractedFields": null,
                                "rawOrderedDataArray": [
                                  {
                                    "childArray": [],
                                    "lbl": null,
                                    "ord": 0,
                                    "val": "HEARING DATE SET FOR 08/29/13, 01:30 PM, DEPT 77"
                                  }
                                ]
                              }
                            },
                            {
                              "boundary": null,
                              "docketBadge": "DOCKET",
                              "docketEntryDate": "2013-07-17T00:00:00-07:00",
                              "docketEntryPrimaryDocuments": {
                                "caseDocumentArray": [],
                                "nextPageAPI": null,
                                "object": "DocketEntryPrimaryDocuments",
                                "pageNumber": 0,
                                "totalCount": 0,
                                "totalPages": 0
                              },
                              "docketEntrySecondaryDocuments": {
                                "caseDocumentArray": [],
                                "nextPageAPI": null,
                                "object": "DocketEntrySecondaryDocuments",
                                "pageNumber": 0,
                                "totalCount": 0,
                                "totalPages": 0
                              },
                              "docketNumber": null,
                              "lastFetchDate": "2023-02-21T08:51:53+00:00",
                              "object": "DocketEntry",
                              "referencedDocketNumberArray": [],
                              "sortOrder": 4,
                              "text": "CLERK'S CERTIFICATE OF SERVICE MAILED-REQUEST FOR ADMINISTRATIVE FILE",
                              "textStructured": {
                                "extractedFields": null,
                                "rawOrderedDataArray": [
                                  {
                                    "childArray": [],
                                    "lbl": null,
                                    "ord": 0,
                                    "val": "CLERK'S CERTIFICATE OF SERVICE MAILED-REQUEST FOR ADMINISTRATIVE FILE"
                                  }
                                ]
                              }
                            },
                            {
                              "boundary": null,
                              "docketBadge": "DOCKET",
                              "docketEntryDate": "2013-07-02T00:00:00-07:00",
                              "docketEntryPrimaryDocuments": {
                                "caseDocumentArray": [],
                                "nextPageAPI": null,
                                "object": "DocketEntryPrimaryDocuments",
                                "pageNumber": 0,
                                "totalCount": 0,
                                "totalPages": 0
                              },
                              "docketEntrySecondaryDocuments": {
                                "caseDocumentArray": [],
                                "nextPageAPI": null,
                                "object": "DocketEntrySecondaryDocuments",
                                "pageNumber": 0,
                                "totalCount": 0,
                                "totalPages": 0
                              },
                              "docketNumber": null,
                              "lastFetchDate": "2023-02-21T08:51:53+00:00",
                              "object": "DocketEntry",
                              "referencedDocketNumberArray": [],
                              "sortOrder": 3,
                              "text": "PROOF OF SERVICE /NOTICE OF APPEAL-PARKING FILED",
                              "textStructured": {
                                "extractedFields": null,
                                "rawOrderedDataArray": [
                                  {
                                    "childArray": [],
                                    "lbl": null,
                                    "ord": 0,
                                    "val": "PROOF OF SERVICE /NOTICE OF APPEAL-PARKING FILED"
                                  }
                                ]
                              }
                            },
                            {
                              "boundary": null,
                              "docketBadge": "DOCKET",
                              "docketEntryDate": "2013-07-02T00:00:00-07:00",
                              "docketEntryPrimaryDocuments": {
                                "caseDocumentArray": [],
                                "nextPageAPI": null,
                                "object": "DocketEntryPrimaryDocuments",
                                "pageNumber": 0,
                                "totalCount": 0,
                                "totalPages": 0
                              },
                              "docketEntrySecondaryDocuments": {
                                "caseDocumentArray": [],
                                "nextPageAPI": null,
                                "object": "DocketEntrySecondaryDocuments",
                                "pageNumber": 0,
                                "totalCount": 0,
                                "totalPages": 0
                              },
                              "docketNumber": null,
                              "lastFetchDate": "2023-02-21T08:51:53+00:00",
                              "object": "DocketEntry",
                              "referencedDocketNumberArray": [],
                              "sortOrder": 2,
                              "text": "FEE WAIVER FILED -CASE FILING FEE.",
                              "textStructured": {
                                "extractedFields": null,
                                "rawOrderedDataArray": [
                                  {
                                    "childArray": [],
                                    "lbl": null,
                                    "ord": 0,
                                    "val": "FEE WAIVER FILED -CASE FILING FEE."
                                  }
                                ]
                              }
                            },
                            {
                              "boundary": null,
                              "docketBadge": "DOCKET",
                              "docketEntryDate": "2013-07-02T00:00:00-07:00",
                              "docketEntryPrimaryDocuments": {
                                "caseDocumentArray": [],
                                "nextPageAPI": null,
                                "object": "DocketEntryPrimaryDocuments",
                                "pageNumber": 0,
                                "totalCount": 0,
                                "totalPages": 0
                              },
                              "docketEntrySecondaryDocuments": {
                                "caseDocumentArray": [],
                                "nextPageAPI": null,
                                "object": "DocketEntrySecondaryDocuments",
                                "pageNumber": 0,
                                "totalCount": 0,
                                "totalPages": 0
                              },
                              "docketNumber": null,
                              "lastFetchDate": "2023-02-21T08:51:53+00:00",
                              "object": "DocketEntry",
                              "referencedDocketNumberArray": [],
                              "sortOrder": 1,
                              "text": "APPELLANT/RESPONDENT ADDRESS",
                              "textStructured": {
                                "extractedFields": null,
                                "rawOrderedDataArray": [
                                  {
                                    "childArray": [],
                                    "lbl": null,
                                    "ord": 0,
                                    "val": "APPELLANT/RESPONDENT ADDRESS"
                                  }
                                ]
                              }
                            },
                            {
                              "boundary": "last",
                              "docketBadge": "DOCKET",
                              "docketEntryDate": "2013-07-02T00:00:00-07:00",
                              "docketEntryPrimaryDocuments": {
                                "caseDocumentArray": [],
                                "nextPageAPI": null,
                                "object": "DocketEntryPrimaryDocuments",
                                "pageNumber": 0,
                                "totalCount": 0,
                                "totalPages": 0
                              },
                              "docketEntrySecondaryDocuments": {
                                "caseDocumentArray": [],
                                "nextPageAPI": null,
                                "object": "DocketEntrySecondaryDocuments",
                                "pageNumber": 0,
                                "totalCount": 0,
                                "totalPages": 0
                              },
                              "docketNumber": null,
                              "lastFetchDate": "2023-02-21T08:51:53+00:00",
                              "object": "DocketEntry",
                              "referencedDocketNumberArray": [],
                              "sortOrder": 0,
                              "text": "PARKING CITATION NO 4206272685 PARKING CITATION NO 4206272685",
                              "textStructured": {
                                "extractedFields": null,
                                "rawOrderedDataArray": [
                                  {
                                    "childArray": [],
                                    "lbl": null,
                                    "ord": 0,
                                    "val": "PARKING CITATION NO 4206272685 PARKING CITATION NO 4206272685"
                                  }
                                ]
                              }
                            }
                          ],
                          "nextPageAPI": null,
                          "object": "DocketEntries",
                          "pageNumber": 1,
                          "totalCount": 10,
                          "totalPages": 1
                        },
                        "exportAPI": "https://enterpriseapi.unicourt.com/caseExport/CASEak99a698ea5413",
                        "filedDate": "2031-07-02T00:00:00+00:00",
                        "firstFetchDate": "2013-07-21T09:48:26+00:00",
                        "hasDocumentsWithPreview": false,
                        "hasOnlyMetaInfo": false,
                        "hearings": {
                          "hearingArray": [],
                          "nextPageAPI": null,
                          "object": "Hearings",
                          "pageNumber": 0,
                          "totalCount": 0,
                          "totalPages": 0
                        },
                        "judges": {
                          "judgeArray": [],
                          "nextPageAPI": null,
                          "object": "Judges",
                          "pageNumber": 0,
                          "totalCount": 0,
                          "totalPages": 0
                        },
                        "lastFetchDate": "2023-02-21T08:51:49+00:00",
                        "lastFetchDateWithUpdates": "2020-01-13T17:56:37+00:00",
                        "object": "Case",
                        "participantsLastFetchDate": "2023-02-21T08:51:49+00:00",
                        "parties": {
                          "nextPageAPI": null,
                          "object": "Parties",
                          "pageNumber": 1,
                          "partyArray": [
                            {
                              "attorneyRepresentationType": {
                                "attorneyRepresentationTypeId": "ATRP2jCCwDRNaP97DX",
                                "createdDate": "2022-03-28T04:59:20+00:00",
                                "name": "Unrepresented",
                                "object": "AttorneyRepresentationType"
                              },
                              "contact": {
                                "addressArray": [],
                                "emailArray": [],
                                "object": "Contact",
                                "phoneNumberArray": []
                              },
                              "firstFetchDate": "2013-07-21T09:48:26+00:00",
                              "firstName": "RUTH",
                              "isVisible": true,
                              "lastFetchDate": "2023-02-21T08:51:49+00:00",
                              "lastName": "BIRD",
                              "middleName": null,
                              "name": "BIRD RUTH",
                              "namePrefix": null,
                              "nameSuffix": null,
                              "object": "Party",
                              "partyAttorneyAssociations": {
                                "nextPageAPI": null,
                                "object": "PartyAttorneyAssociations",
                                "pageNumber": 1,
                                "partyAttorneyAssociationArray": [
                                  {
                                    "attorneyId": "ATTYak779eef5398c8",
                                    "isVisible": false,
                                    "object": "PartyAttorneyAssociation",
                                    "partyAttorneyAssociationId": "PATMakffc0128c19f4",
                                    "partyId": "PRTYak21a2d603404e"
                                  }
                                ],
                                "totalCount": 1,
                                "totalPages": 1
                              },
                              "partyClassificationType": "INDIVIDUAL",
                              "partyId": "PRTYak21a2d603404e",
                              "partyRole": {
                                "createdDate": "2022-05-27T00:50:33+00:00",
                                "description": null,
                                "name": "Defendant",
                                "object": "PartyRole",
                                "partyRoleGroup": "Party Defensive",
                                "partyRoleGroupId": "PTYG73uQdgJdpA3ebc",
                                "partyRoleId": "PTYRKo8tkTBFvJdCQp"
                              },
                              "possibleNormPartyArray": [],
                              "sourcePartyRole": "DEFENDANT"
                            },
                            {
                              "attorneyRepresentationType": {
                                "attorneyRepresentationTypeId": "ATRP2jCCwDRNaP97DX",
                                "createdDate": "2022-03-28T04:59:20+00:00",
                                "name": "Unrepresented",
                                "object": "AttorneyRepresentationType"
                              },
                              "contact": {
                                "addressArray": [],
                                "emailArray": [],
                                "object": "Contact",
                                "phoneNumberArray": []
                              },
                              "firstFetchDate": "2013-07-21T09:48:26+00:00",
                              "firstName": "CITY OF LOS ANGELES",
                              "isVisible": true,
                              "lastFetchDate": "2023-02-21T08:51:49+00:00",
                              "lastName": null,
                              "middleName": null,
                              "name": "CITY OF LOS ANGELES",
                              "namePrefix": null,
                              "nameSuffix": null,
                              "object": "Party",
                              "partyAttorneyAssociations": {
                                "nextPageAPI": null,
                                "object": "PartyAttorneyAssociations",
                                "pageNumber": 1,
                                "partyAttorneyAssociationArray": [
                                  {
                                    "attorneyId": "ATTYak359025082a6a",
                                    "isVisible": false,
                                    "object": "PartyAttorneyAssociation",
                                    "partyAttorneyAssociationId": "PATMak9c6b602c3c0a",
                                    "partyId": "PRTYakb997f5e0e0d7"
                                  }
                                ],
                                "totalCount": 1,
                                "totalPages": 1
                              },
                              "partyClassificationType": "OTHER",
                              "partyId": "PRTYakb997f5e0e0d7",
                              "partyRole": {
                                "createdDate": "2022-05-27T00:50:33+00:00",
                                "description": null,
                                "name": "Plaintiff",
                                "object": "PartyRole",
                                "partyRoleGroup": "Party Offensive",
                                "partyRoleGroupId": "PTYGBnjxbx6tKNfVEP",
                                "partyRoleId": "PTYRiP8nMgPxBsPc5i"
                              },
                              "possibleNormPartyArray": [],
                              "sourcePartyRole": "PLAINTIFF"
                            }
                          ],
                          "totalCount": 2,
                          "totalPages": 1
                        },
                        "relatedCases": {
                          "nextPageAPI": null,
                          "object": "RelatedCases",
                          "pageNumber": 0,
                          "relatedCaseArray": [],
                          "totalCount": 0,
                          "totalPages": 0
                        },
                        "sourceCaseData": {
                          "natureOfSuitArray": [],
                          "object": "SourceCaseData",
                          "sourceCaseStatus": "DISPOSED",
                          "sourceCaseType": "CIVIL",
                          "sourceCauseOfActionArray": [],
                          "sourceChargeArray": [],
                          "sourceCourt": "STANLEY MOSK COURTHOUSE",
                          "sourcePageData": []
                        },
                        "sourceDataStatus": null,
                        "url": null
                      },
                      "caseAPI": "https://enterpriseapi.unicourt.com/case/CASEak99a698ea5413",
                      "caseId": "CASEak99a698ea5413",
                      "exception": null,
                      "object": "CaseUpdate",
                      "pacerOptions": null,
                      "requestedDate": "2023-02-21T08:51:38+00:00",
                      "status": "COMPLETE"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/CaseUpdate"
                }
              }
            },
            "description": "OK"
          },
          "404": {
            "content": {
              "application/json": {
                "examples": {
                  "sample404Response": {
                    "value": {
                      "code": "UN404",
                      "details": "Invalid request. Please check the `caseId`.",
                      "message": "RESOURCE_NOT_FOUND",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Not Found"
          },
          "451": {
            "content": {
              "application/json": {
                "examples": {
                  "sample451Response": {
                    "value": {
                      "case": null,
                      "caseAPI": "https://enterpriseapi.unicourt.com/case/CASEak99a698ea5413",
                      "caseId": "CASEhzcde7525188dd",
                      "exception": {
                        "code": "UN100",
                        "details": "This Case is no longer available as it is Sealed from the Court.",
                        "message": "SEALED",
                        "object": "Exception"
                      },
                      "object": "CaseUpdate",
                      "pacerOptions": null,
                      "requestedDate": "2020-05-16T11:51:27+00:00",
                      "status": "FAILURE"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/CaseUpdate"
                }
              }
            },
            "description": "Sealed Case"
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "Internal_Server_Error": {
                    "value": {
                      "code": "UN500",
                      "details": "Something went wrong. Please retry again later.",
                      "message": "INTERNAL_SERVER_ERROR",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Internal Server Error"
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Get Case Updates for a requested CaseId.",
        "tags": [
          "Case Update API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [
        {
          "description": "The caseId value of the case object for which updates are to be retrieved.",
          "examples": {
            "HTTP200-sampleResponse10_limitReachedperDay": {
              "summary": "sampleResponse10_limitReachedperDay",
              "value": "CASEeqfb72ba4726f1"
            },
            "HTTP200-sampleResponse11_setPacerCredential": {
              "summary": "sampleResponse11_setPacerCredential",
              "value": "CASEgs0da150005024"
            },
            "HTTP200-sampleResponse1_unavailableCase": {
              "summary": "sampleResponse1_unavailableCase",
              "value": "CASEby1cc50c251820"
            },
            "HTTP200-sampleResponse2_courtsiteDown": {
              "summary": "sampleResponse2_courtsiteDown",
              "value": "CASEaif4a4daa180b3"
            },
            "HTTP200-sampleResponse3_timeout": {
              "summary": "sampleResponse3_timeout",
              "value": "CASEaif4a4daa180b3"
            },
            "HTTP200-sampleResponse4_invalidCase": {
              "summary": "sampleResponse4_invalidCase",
              "value": "CASEdlcc54d6c958mb"
            },
            "HTTP200-sampleResponse5_limitReached_for_court": {
              "summary": "sampleResponse5_limitReached_for_court",
              "value": "CASEak10c71d22db74"
            },
            "HTTP200-sampleResponse7_caseUpdateNotSupported": {
              "summary": "sampleResponse7_caseUpdateNotSupported",
              "value": "CASEap6bcbd94168a6"
            },
            "HTTP200-sampleResponse8_invalidPacerLogin": {
              "summary": "sampleResponse8_invalidPacerLogin",
              "value": "CASEgud568458a15ce"
            },
            "HTTP200-sampleResponse9_paceroptions": {
              "summary": "sampleResponse9_paceroptions",
              "value": "CASEgu6c99c7baa4c7"
            },
            "HTTP200-sampleResponse_complete": {
              "summary": "sampleResponse_complete",
              "value": "CASEak99a698ea5413"
            },
            "HTTP404-sample404Response": {
              "summary": "sample404Response",
              "value": "CASEar836be2d36e0b"
            },
            "HTTP451-sample451Response": {
              "summary": "sample451Response",
              "value": "CASEar1e3de620b0a0"
            }
          },
          "in": "path",
          "name": "caseId",
          "required": true,
          "schema": {
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          }
        }
      ],
      "x-api-name": "CaseUpdateCaseIdByIdAPI",
      "x-unicourt-tag": "CaseUpdateAPIs"
    },
    "/caseUpdates": {
      "get": {
        "description": "Retrieve case updates for the specified date.",
        "operationId": "getCaseUpdates",
        "parameters": [
          {
            "description": "The caseId value of the case for which updates should be retrieved.",
            "examples": {
              "HTTP200-sampleResponse": {
                "summary": "sampleResponse",
                "value": "CASEak99a698ea5413"
              },
              "HTTP400-sample400Response": {
                "summary": "sample400Response",
                "value": "CASEak99a698ea541-"
              }
            },
            "in": "query",
            "name": "caseId",
            "schema": {
              "maxLength": 18,
              "minLength": 18,
              "nullable": false,
              "type": "string"
            }
          },
          {
            "description": "The date for which case updates are to be retrieved.",
            "examples": {
              "HTTP200-sampleResponse": {
                "summary": "sampleResponse",
                "value": "2022-03-08T10:17:56+00:00"
              },
              "HTTP400-sample400Response": {
                "summary": "sample400Response",
                "value": "2022-03-08"
              }
            },
            "in": "query",
            "name": "requestedDate",
            "schema": {
              "format": "date-time",
              "maxLength": 25,
              "minLength": 25,
              "nullable": false,
              "type": "string"
            }
          },
          {
            "description": "Status of the case updates to be retrieved.",
            "examples": {
              "HTTP200-sampleResponse": {
                "summary": "sampleResponse",
                "value": ""
              },
              "HTTP400-sample400Response": {
                "summary": "sample400Response",
                "value": "COMPLETED"
              }
            },
            "in": "query",
            "name": "status",
            "schema": {
              "enum": [
                "IN_PROGRESS",
                "COMPLETE",
                "FAILURE"
              ],
              "maxLength": 11,
              "minLength": 7,
              "nullable": false,
              "type": "string"
            }
          },
          {
            "description": "The page number of the callbacks to be retrieved.<br>\n  - Minimum: 1\n",
            "examples": {
              "HTTP200-sampleResponse": {
                "summary": "sampleResponse",
                "value": 1
              },
              "HTTP400-sample400Response": {
                "summary": "sample400Response",
                "value": "A1"
              }
            },
            "in": "query",
            "name": "pageNumber",
            "schema": {
              "default": 1,
              "example": 1,
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleResponse": {
                    "value": {
                      "caseUpdatePreviewArray": [
                        {
                          "caseAPI": "https://enterpriseapi.unicourt.com/case/CASEakfbd1817d7431",
                          "caseId": "CASEhzcde7525188dd",
                          "exception": {
                            "code": "UN100",
                            "details": "This Case is no longer available as it is Sealed from the Court.",
                            "message": "SEALED",
                            "object": "Exception"
                          },
                          "object": "CaseUpdatePreview",
                          "pacerOptions": null,
                          "requestedDate": "2020-05-16T11:51:27+00:00",
                          "status": "FAILURE"
                        },
                        {
                          "caseAPI": "https://enterpriseapi.unicourt.com/case/CASEakfbd1817d7431",
                          "caseId": "CASEhq9d8b72d0800c",
                          "exception": null,
                          "object": "CaseUpdatePreview",
                          "pacerOptions": null,
                          "requestedDate": "2020-05-16T11:51:27+00:00",
                          "status": "COMPLETE"
                        }
                      ],
                      "nextPageAPI": null,
                      "object": "CaseUpdateListResponse",
                      "pageNumber": 1,
                      "previousPageAPI": null,
                      "totalCount": 2,
                      "totalPages": 1
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/CaseUpdateListResponse"
                }
              }
            },
            "description": "OK"
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "sample400Response": {
                    "value": {
                      "code": "UN400",
                      "details": "Invalid request. Please check the `requestedDate`",
                      "message": "INVALID_INPUT",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Bad Request"
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "Internal_Server_Error": {
                    "value": {
                      "code": "UN500",
                      "details": "Something went wrong. Please retry again later.",
                      "message": "INTERNAL_SERVER_ERROR",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Internal Server Error"
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Get Case Update  list for a requested Date.",
        "tags": [
          "Case Update API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [],
      "x-api-name": "CaseUpdates",
      "x-unicourt-tag": "CaseUpdateAPIs"
    },
    "/courtCoverage/{courtId}": {
      "get": {
        "description": "Gets Court Coverage of all courts.",
        "operationId": "getCourtCoverage",
        "parameters": [],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "CourtCoverageResponse": {
                    "$ref": "#/components/examples/CourtCoverage"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/CourtCoverage"
                }
              }
            },
            "description": "The request is received."
          },
          "404": {
            "content": {
              "application/json": {
                "examples": {
                  "RequestedCourtIdIsInvalid": {
                    "$ref": "#/components/examples/FailureInvalidCourtId"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Resource Not Found"
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "ServerError": {
                    "$ref": "#/components/examples/FailureServerError"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Server Error"
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Gets Court Coverage of all courts of specific type.",
        "tags": [
          "Court Availability API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "POST",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [
        {
          "description": "Court ID",
          "examples": {
            "HTTP200-CourtCoverageResponse": {
              "summary": "CourtCoverageResponse",
              "value": "CORTV4vCEaKrhystBz"
            },
            "HTTP404-RequestedCourtIdIsInvalid": {
              "summary": "RequestedCourtIdIsInvalid",
              "value": "CORTV4vCEaKrhy7777"
            }
          },
          "in": "path",
          "name": "courtId",
          "required": true,
          "schema": {
            "example": "CORTV4vCEaKrhystBz",
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          }
        }
      ],
      "x-api-name": "CourtCoverageAPI",
      "x-unicourt-tag": "CourtAvailabilityAPIs"
    },
    "/dailyUsage/{date}": {
      "get": {
        "description": "An endpoint to obtain information on API usage for a specific day.",
        "operationId": "getDailyUsageByDate",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleResponse": {
                    "value": {
                      "apiCallsBillable": {
                        "count": 908,
                        "lastUpdated": "2023-02-21T15:00:05+00:00"
                      },
                      "apiCallsCredited": {
                        "count": 0,
                        "lastUpdated": "2023-02-21T15:00:05+00:00"
                      },
                      "apiCallsMade": {
                        "count": 908,
                        "lastUpdated": "2023-02-21T15:00:05+00:00"
                      },
                      "apiUsage": {
                        "GET /attorney/{attorneyId}": 4,
                        "GET /attorney/{attorneyId}/associatedParties": 4,
                        "GET /billingCycleUsage/{billingCycle}": 3,
                        "GET /billingCycles": 5,
                        "GET /callbacks": 1,
                        "GET /case/{caseId}": 6,
                        "GET /case/{caseId}/attorneys": 4,
                        "GET /case/{caseId}/docketEntries": 8,
                        "GET /case/{caseId}/docketEntries/primaryDocuments": 1,
                        "GET /case/{caseId}/docketEntries/secondaryDocuments": 1,
                        "GET /case/{caseId}/documents": 3,
                        "GET /case/{caseId}/hearings": 5,
                        "GET /case/{caseId}/judges": 5,
                        "GET /case/{caseId}/parties": 6,
                        "GET /case/{caseId}/relatedCases": 4,
                        "GET /caseCountAnalyticsByAreaOfLaw": 5,
                        "GET /caseCountAnalyticsByCaseClass": 5,
                        "GET /caseCountAnalyticsByCaseFiledDate": 1,
                        "GET /caseCountAnalyticsByCaseType": 5,
                        "GET /caseCountAnalyticsByCaseTypeGroup": 5,
                        "GET /caseCountAnalyticsByCourt": 5,
                        "GET /caseCountAnalyticsByCourtLocation": 5,
                        "GET /caseCountAnalyticsByCourtSystem": 5,
                        "GET /caseCountAnalyticsByCourtType": 5,
                        "GET /caseCountAnalyticsByJurisdictionGeo": 5,
                        "GET /caseCountAnalyticsByNormAttorney": 1,
                        "GET /caseCountAnalyticsByNormJudge": 1,
                        "GET /caseCountAnalyticsByNormLawFirm": 1,
                        "GET /caseCountAnalyticsByNormParty": 1,
                        "GET /caseCountAnalyticsByPartyRole": 2,
                        "GET /caseCountAnalyticsByPartyRoleGroup": 2,
                        "GET /caseDocument/{caseDocumentId}": 2,
                        "GET /caseDocumentDownload/{caseDocumentId}": 8,
                        "GET /caseDocumentOrder/callbacks": 1,
                        "GET /caseDocumentOrder/callbacks/{caseDocumentOrderCallbackId}": 37,
                        "GET /caseExport/callbacks": 1,
                        "GET /caseExport/callbacks/{caseExportCallbackId}": 10,
                        "GET /caseExport/{caseId}": 14,
                        "GET /caseSearch": 473,
                        "GET /caseSearch/{caseSearchId}": 4,
                        "GET /caseTrack/{caseId}": 3,
                        "GET /caseTracks": 3,
                        "GET /caseUpdate/{caseId}": 28,
                        "GET /caseUpdates": 1,
                        "GET /courtCoverage/{courtId}": 2,
                        "GET /dailyUsage/{date}": 17,
                        "GET /judge/{judgeId}": 2,
                        "GET /masterData/areaOfLaw": 1,
                        "GET /masterData/areaOfLaw/{areaOfLawId}": 2,
                        "GET /masterData/attorneyRepresentationType": 1,
                        "GET /masterData/attorneyRepresentationType/{attorneyRepresentationTypeId}": 2,
                        "GET /masterData/attorneyType": 1,
                        "GET /masterData/attorneyType/{attorneyTypeId}": 2,
                        "GET /masterData/caseClass": 1,
                        "GET /masterData/caseClass/{caseClassId}": 2,
                        "GET /masterData/caseRelationshipType": 1,
                        "GET /masterData/caseRelationshipType/{caseRelationshipTypeId}": 2,
                        "GET /masterData/caseStatus": 1,
                        "GET /masterData/caseStatus/{caseStatusId}": 3,
                        "GET /masterData/caseStatusGroup": 1,
                        "GET /masterData/caseStatusGroup/{caseStatusGroupId}": 2,
                        "GET /masterData/caseType": 1,
                        "GET /masterData/caseType/{caseTypeId}": 2,
                        "GET /masterData/caseTypeGroup": 1,
                        "GET /masterData/caseTypeGroup/{caseTypeGroupId}": 2,
                        "GET /masterData/causeOfAction": 1,
                        "GET /masterData/causeOfActionAdditionalData": 1,
                        "GET /masterData/causeOfActionGroup": 1,
                        "GET /masterData/charge": 1,
                        "GET /masterData/chargeAdditionalData": 1,
                        "GET /masterData/chargeDegree": 1,
                        "GET /masterData/chargeGroup": 1,
                        "GET /masterData/chargeSeverity": 1,
                        "GET /masterData/court": 1,
                        "GET /masterData/court/{courtId}": 2,
                        "GET /masterData/court/{courtId}/appealCourts": 7,
                        "GET /masterData/court/{courtId}/courtLocations": 7,
                        "GET /masterData/court/{courtId}/jurisdictionGeo": 7,
                        "GET /masterData/courtLocation": 1,
                        "GET /masterData/courtLocation/{courtLocationId}": 2,
                        "GET /masterData/courtLocation/{courtLocationId}/courts": 6,
                        "GET /masterData/courtServiceStatus": 4,
                        "GET /masterData/courtServiceStatus/{courtServiceStatusId}": 2,
                        "GET /masterData/courtSystem": 1,
                        "GET /masterData/courtSystem/{courtSystemId}": 2,
                        "GET /masterData/courtType": 1,
                        "GET /masterData/courtType/{courtTypeId}": 2,
                        "GET /masterData/judgeType": 1,
                        "GET /masterData/judgeType/{judgeTypeId}": 2,
                        "GET /masterData/jurisdictionGeo": 1,
                        "GET /masterData/jurisdictionGeo/{jurisdictionGeoId}": 2,
                        "GET /masterData/jurisdictionGeo/{jurisdictionGeoId}/courts": 3,
                        "GET /masterData/partyRole": 1,
                        "GET /masterData/partyRole/{partyRoleId}": 2,
                        "GET /masterData/partyRoleGroup": 1,
                        "GET /masterData/partyRoleGroup/{partyRoleGroupId}": 2,
                        "GET /normAttorney/{normAttorneyId}": 6,
                        "GET /normAttorney/{normAttorneyId}/associatedNormJudges": 4,
                        "GET /normAttorney/{normAttorneyId}/associatedNormLawFirms": 4,
                        "GET /normAttorney/{normAttorneyId}/associatedNormParties": 4,
                        "GET /normAttorney/{normAttorneyId}/caseCountAnalyticsByOpposingNormAttorney": 4,
                        "GET /normAttorneySearch": 1,
                        "GET /normJudge/{normJudgeId}": 10,
                        "GET /normJudge/{normJudgeId}/associatedNormAttorneys": 2,
                        "GET /normJudge/{normJudgeId}/associatedNormLawFirms": 9,
                        "GET /normJudge/{normJudgeId}/associatedNormParties": 9,
                        "GET /normJudgeSearch": 1,
                        "GET /normLawFirm/{normLawFirmId}": 3,
                        "GET /normLawFirm/{normLawFirmId}/associatedNormAttorneys": 2,
                        "GET /normLawFirm/{normLawFirmId}/associatedNormJudges": 2,
                        "GET /normLawFirm/{normLawFirmId}/associatedNormParties": 2,
                        "GET /normLawFirm/{normLawFirmId}/caseCountAnalyticsByOpposingNormLawFirm": 2,
                        "GET /normLawFirmSearch": 1,
                        "GET /normParty/{normPartyId}": 3,
                        "GET /normParty/{normPartyId}/associatedNormAttorneys": 2,
                        "GET /normParty/{normPartyId}/associatedNormJudges": 2,
                        "GET /normParty/{normPartyId}/associatedNormLawFirms": 2,
                        "GET /normParty/{normPartyId}/caseCountAnalyticsByOpposingNormParty": 2,
                        "GET /normPartySearch": 1,
                        "GET /pacerCredential/{pacerUserId}": 2,
                        "GET /party/{partyId}": 2,
                        "GET /party/{partyId}/associatedAttorneys": 4,
                        "POST /generateNewToken": 2,
                        "PUT /caseDocumentOrder": 20,
                        "PUT /caseTrack": 3,
                        "PUT /caseUpdate": 24,
                        "PUT /pacerCredential": 1
                      },
                      "object": "DailyUsageResponse",
                      "usageEndTime": "2023-02-21T23:59:59+00:00",
                      "usageStartTime": "2023-02-21T00:00:00+00:00"
                    }
                  },
                  "sampleResponse1": {
                    "value": {
                      "apiCallsBillable": {
                        "count": 0,
                        "lastUpdated": null
                      },
                      "apiCallsCredited": {
                        "count": 0,
                        "lastUpdated": null
                      },
                      "apiCallsMade": {
                        "count": 0,
                        "lastUpdated": null
                      },
                      "apiUsage": {},
                      "object": "DailyUsageResponse",
                      "usageEndTime": "2022-04-25T23:59:59+00:00",
                      "usageStartTime": "2022-04-25T00:00:00+00:00"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/DailyUsageResponse"
                }
              }
            },
            "description": "OK"
          },
          "404": {
            "content": {
              "application/json": {
                "examples": {
                  "sample404Response": {
                    "value": {
                      "code": "UN404",
                      "details": "Invalid request. Please check the `date`.",
                      "message": "RESOURCE_NOT_FOUND",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Not Found"
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "Internal_Server_Error": {
                    "value": {
                      "code": "UN500",
                      "details": "Something went wrong. Please retry again later.",
                      "message": "INTERNAL_SERVER_ERROR",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Internal Server Error"
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Get API usage for a requested Date.",
        "tags": [
          "Usage API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [
        {
          "description": "The specific date for which you wish to obtain information on API usage.",
          "examples": {
            "HTTP200-sampleResponse": {
              "summary": "sampleResponse",
              "value": "2023-02-21"
            },
            "HTTP200-sampleResponse1": {
              "summary": "sampleResponse1",
              "value": "2022-04-25"
            },
            "HTTP404-sample404Response": {
              "summary": "sample404Response",
              "value": "2022-08-00"
            }
          },
          "in": "path",
          "name": "date",
          "required": true,
          "schema": {
            "format": "date",
            "maxLength": 10,
            "minLength": 10,
            "nullable": false,
            "type": "string"
          }
        }
      ],
      "x-api-name": "DailyUsageAPI",
      "x-unicourt-tag": "UsageAPIs"
    },
    "/generateNewToken": {
      "post": {
        "description": "This endpoint allows you to generate a new access token, which is a required field for all UniCourt API endpoints except for the Authentication API. To generate a new token, you must provide your Client ID and Client Secret ID which you can find by logging into your UniCourt account. At any time, you can have a maximum of 10 active access tokens. The tokens never expire and, if you make a request which would otherwise lead to you having more than 10 active tokens, you will receive an error message.",
        "operationId": "generateNewToken",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/AccessTokenRequest"
              }
            }
          },
          "description": "The endpoint accepts your Client ID and Client Secret ID as part of the request."
        },
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleResponse": {
                    "value": {
                      "accessToken": "eyJhbG44ciOiJS111UzI1NiIsInR5cCI6IkpXVCIsImtpZCI6I11111ktfX2NsOVhLUDJYMmtBVGRBSVkzQiJ9.eyJodHRwczovL3VuaWNvdXJ0LmNvbS9jbGllbnRfaWQiOiIxbWVOcHRBeXJUUFN2UjBSbVVxdEh2QVNoeDVqVmI2RCIsImh0dHBzOi8vdW5pY291cnQuY29tL2NsaWVudF9uYW1lIjoiYXBvbGxvIiwiaHR0cHM6Ly91bmljb3VydC5jb20vYWNjb3VudF9pZCI6IkFQTzAwMDBBMSIsImlzcyI6Imh0dHBzOi8vdGVzdHVjLnVzLmF1dGgwLmNvbS8iLCJzdWIiOiIxbWVOcHRBeXJUUFN2UjBSbVVxdEh2QVNoeDVqVmI2REBjbGllbnRzIiwiYXVkIjoiaHR0cHM6Ly85dGxsbG1oZnhkLmV4ZWN1dGUtYXBpLnVzLWVhc3QtMS5hbWF6b25hd3MuY29tIiwiaWF0IjoxNjIwNzA4NjAzLCJleHAiOjE2MjA3OTUwMDMsImF6cCI6IjFtZU5wdEF5clRQU3ZSMFJtVXF0SHZBU2h4NWpWYjZEIiwic2NvcGUiOiJleHRyYSIsImd0eSI6ImNsaWVudC1jcmVkZW50aWFscyJ9.TjhNCPvt5bRDW5Kp9OW9-epch9ggoYiK-85f6l7illLtKMeEoD3myllyIXo_ltZv7TDbmSg9tmHZ2V4mPiGvn-Fc9MwGXyUN7LjFF0tpnwysqgTVq_pvnCNe-xLOR_clmkl881QlUfXwB0R0PjhU00_c63ImSISC1Tv4GfawYLQwBy1Q22-rqB4ZsrSszRMo0rTOCu4d7KVc9MgcjA_idz45E9BxR2UbZ6lAbAXp-C1AqR8Dm40BHeUy5oJFFpzoP46sqTcdQHzwuMX5AhK6uGugVqlHpUbwRy9SDCxCldArz5j0Ab_aaZ7zIbuqgE-XueSlug_n2MenElUAeBKe-g",
                      "object": "AccessTokenResponse",
                      "tokenId": "TKID384a057WFC3Dp3",
                      "tokenType": "Bearer"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/AccessTokenResponse"
                }
              }
            },
            "description": "OK"
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "sample400Response": {
                    "value": {
                      "code": "UN400",
                      "details": "Invalid request. Please check the `clientId`.",
                      "message": "INVALID_INPUT",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Bad Request"
          },
          "403": {
            "content": {
              "application/json": {
                "examples": {
                  "sample403Response": {
                    "value": {
                      "code": "UN203",
                      "details": "You can have max 10 Access tokens for an account.",
                      "message": "LIMIT_REACHED",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Forbidden"
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "Internal_Server_Error": {
                    "value": {
                      "code": "UN500",
                      "details": "Something went wrong. Please retry again later.",
                      "message": "INTERNAL_SERVER_ERROR",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Internal Server Error"
          }
        },
        "summary": "Generate new token to access API.",
        "tags": [
          "Authentication API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "POST",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "x-api-name": "generateNewTokenAPI",
      "x-unicourt-tag": "AuthenticationAPIs"
    },
    "/invalidateAllTokens": {
      "put": {
        "description": "An endpoint which allows you to invalidate all existing access tokens associated with your UniCourt account.",
        "operationId": "invalidateAllTokens",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/AccessTokenRequest"
              }
            }
          },
          "description": "The endpoint accepts your Client ID and Secret Client ID as part of the request."
        },
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleResponse": {
                    "value": {
                      "message": "All the access tokens are invalidated successfully.",
                      "object": "Success"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Success"
                }
              }
            },
            "description": "OK"
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "INVALID_CLIENT_ID": {
                    "value": {
                      "code": "UN400",
                      "details": "Invalid request. Please check the `clientId`.",
                      "message": "INVALID_INPUT",
                      "object": "Exception"
                    }
                  },
                  "NO_TOKENS_FOUND": {
                    "value": {
                      "code": "UN400",
                      "details": "No tokens found.",
                      "message": "INVALID_INPUT",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Bad Request"
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "Internal_Server_Error": {
                    "value": {
                      "code": "UN500",
                      "details": "Something went wrong. Please retry again later.",
                      "message": "INTERNAL_SERVER_ERROR",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Internal Server Error"
          }
        },
        "summary": "API to invalidate all access tokens.",
        "tags": [
          "Authentication API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "PUT",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "x-api-name": "invalidateAllTokensAPI",
      "x-unicourt-tag": "AuthenticationAPIs"
    },
    "/invalidateToken": {
      "put": {
        "description": "An endpoint which allows you to invalidate a given access token.",
        "operationId": "invalidateToken",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/InvalidateAccessTokenRequest"
              }
            }
          },
          "description": "The endpoint accepts your Client ID, Client Secret ID and the Token ID for the access token you wish to invalidate as part of the request. You can obtain a list of all Token IDs from the /listAllTokenIds endpoint within this API."
        },
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleResponse": {
                    "value": {
                      "message": "Access token invalidated successfully.",
                      "object": "Success"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Success"
                }
              }
            },
            "description": "OK"
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "INVALID_CLIENT_ID": {
                    "value": {
                      "code": "UN400",
                      "details": "Invalid request. Please check the `clientId`.",
                      "message": "INVALID_INPUT",
                      "object": "Exception"
                    }
                  },
                  "INVALID_TOKEN_ID": {
                    "value": {
                      "code": "UN400",
                      "details": "Invalid request. Please check the `tokenId`.",
                      "message": "INVALID_INPUT",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Bad Request"
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "Internal_Server_Error": {
                    "value": {
                      "code": "UN500",
                      "details": "Something went wrong. Please retry again later.",
                      "message": "INTERNAL_SERVER_ERROR",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Internal Server Error"
          }
        },
        "summary": "API to invalidate the access token.",
        "tags": [
          "Authentication API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "PUT",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "x-api-name": "invalidateTokenAPI",
      "x-unicourt-tag": "AuthenticationAPIs"
    },
    "/judge/{judgeId}": {
      "get": {
        "description": "Retrieve the judge with the specified judgeId value.",
        "operationId": "getJudgeById",
        "parameters": [],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "AllJudgesForACase": {
                    "$ref": "#/components/examples/CaseApiJudgeResponse"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Judge"
                }
              }
            },
            "description": "The request is recieved."
          },
          "404": {
            "content": {
              "application/json": {
                "examples": {
                  "RequestedJudgeIdIsInvalid": {
                    "$ref": "#/components/examples/FailureInvalidJudgeId"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Resource Not Found"
          },
          "451": {
            "content": {
              "application/json": {
                "examples": {
                  "SealedCase": {
                    "$ref": "#/components/examples/SealedCase"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Sealed Case"
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "ServerError": {
                    "$ref": "#/components/examples/FailureServerError"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Server Error"
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Gets details for a requested Judge ID.",
        "tags": [
          "Case Docket API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "POST",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [
        {
          "description": "Retrieve the judge with the specified judgeId value.",
          "examples": {
            "HTTP200-AllJudgesForACase": {
              "summary": "AllJudgesForACase",
              "value": "JUDGbaf564ec55624a"
            },
            "HTTP404-RequestedJudgeIdIsInvalid": {
              "summary": "RequestedJudgeIdIsInvalid",
              "value": "JUDGzze04d2894de7a"
            },
            "HTTP451-SealedCase": {
              "summary": "SealedCase",
              "value": "JUDGgq474200d935a0"
            }
          },
          "in": "path",
          "name": "judgeId",
          "required": true,
          "schema": {
            "example": "JUDGgue04d2894de7a",
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          }
        }
      ],
      "x-api-name": "JudgeAPI",
      "x-unicourt-tag": "CaseDocketAPIs"
    },
    "/listAllTokenIds": {
      "put": {
        "description": "An endpoint which allows you to view all active access tokens associated with your Client ID and Client Secret ID.",
        "operationId": "listAllTokenIds",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/AccessTokenRequest"
              }
            }
          },
          "description": "The endpoint accepts your Client ID and Client Secret ID as part of the request."
        },
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleResponse": {
                    "value": {
                      "AccessTokenIdArray": [
                        {
                          "issueAddress": "192.0.2.1",
                          "issuedDate": "2022-11-10T10:17:56+00:00",
                          "object": "AccessTokenIdResponse",
                          "tokenId": "TKID384a057WFC3Dp3"
                        }
                      ],
                      "object": "AccessTokenIdListResponse"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/AccessTokenIdListResponse"
                }
              }
            },
            "description": "OK"
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "sample400Response": {
                    "value": {
                      "code": "UN400",
                      "details": "Invalid request. Please check the `clientId`.",
                      "message": "INVALID_INPUT",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Bad Request"
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "Internal_Server_Error": {
                    "value": {
                      "code": "UN500",
                      "details": "Something went wrong. Please retry again later.",
                      "message": "INTERNAL_SERVER_ERROR",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Internal Server Error"
          }
        },
        "summary": "API to list all the access tokens Id.",
        "tags": [
          "Authentication API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "PUT",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "x-api-name": "listAllTokenIdsAPI",
      "x-unicourt-tag": "AuthenticationAPIs"
    },
    "/masterData/areaOfLaw": {
      "get": {
        "description": "Returns AreaOfLaw Object.\n\n## Logical Operators\n| Connector | Description  | Example |\n| ------| ------|------|\n| **AND** |Find data containing all connected terms.|**google AND facebook**|\n| **OR**  |Find data containing any connected term.| **order OR decision**|\n| **NOT** |Exclude data.| **google NOT apple**.|\n| **“[phrase]”** |Find an exact phrase.| **\"Google Inc”** |\n| **( … )** |Parenthesis may be used to group sets of terms of connectors.| **google (facebook OR apple)**.|\n\n### All Filter Query parameters supported for this API can be found in below schema section. Schema --> AreaOfLawQueryObject\n",
        "operationId": "getAreasOfLaw",
        "parameters": [
          {
            "description": "The URL encoded query you are searching for.\nThe query can be as simple as a keyword, but supports many additional options and filters.\nAll options are documented above.</a>\n",
            "examples": {
              "HTTP200-sampleListQuery": {
                "summary": "sampleListQuery",
                "value": "areaOfLawId: \"AOFLGAd9Ah5qkTRNw9\""
              },
              "HTTP400-sampleInvalidInputQuery": {
                "summary": "sampleInvalidInputQuery",
                "value": "areaOfLwId: \"AOFLGAd9Ah5qkTRNw9\""
              }
            },
            "in": "query",
            "name": "q",
            "schema": {
              "maxLength": 2000,
              "minLength": 3,
              "nullable": false,
              "type": "string"
            }
          },
          {
            "$ref": "#/components/parameters/parameters-pageParam"
          },
          {
            "$ref": "#/components/parameters/parameters-sortParam"
          },
          {
            "$ref": "#/components/parameters/parameters-orderParam"
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleListQuery": {
                    "value": {
                      "areaOfLawArray": [
                        {
                          "areaOfLawId": "AOFLGAd9Ah5qkTRNw9",
                          "caseClass": "Civil",
                          "caseClassId": "CSCLNjbKTN7Yfo2wdb",
                          "createdDate": "2022-03-28T04:58:28+00:00",
                          "name": "Tax and Revenue",
                          "object": "AreaOfLaw"
                        }
                      ],
                      "nextPageAPI": null,
                      "object": "AreaOfLawResponse",
                      "pageNumber": 1,
                      "previousPageAPI": null,
                      "totalCount": 1,
                      "totalPages": 1
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/AreaOfLawResponse"
                }
              }
            },
            "description": "Success"
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleInvalidInputQuery": {
                    "$ref": "#/components/examples/SAMPLE_INVALID_INPUT_QUERY"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if the request is invalid."
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "INTERNAL_SERVER_ERROR": {
                    "$ref": "#/components/examples/INTERNAL_SERVER_ERROR"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if an error occurs while retrieving the data."
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "AreaOfLaw Object.",
        "tags": [
          "Court Standards API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [],
      "x-api-name": "AreaOfLawListAPI",
      "x-unicourt-tag": "CourtStandardsAPIs"
    },
    "/masterData/areaOfLaw/{areaOfLawId}": {
      "get": {
        "description": "AreaOfLaw Object for the given AreaOfLaw Id.\n",
        "operationId": "getAreaOfLaw",
        "parameters": [],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleFoundResource": {
                    "value": {
                      "areaOfLawId": "AOFLGAd9Ah5qkTRNw9",
                      "caseClass": "Civil",
                      "caseClassId": "CSCLNjbKTN7Yfo2wdb",
                      "createdDate": "2022-03-28T04:58:28+00:00",
                      "name": "Tax and Revenue",
                      "object": "AreaOfLaw"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/AreaOfLaw"
                }
              }
            },
            "description": "Success"
          },
          "404": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleNotFoundResource": {
                    "value": {
                      "code": "UN404",
                      "details": "areaOfLawId resource you were looking for doesn't exist.",
                      "message": "RESOURCE_NOT_FOUND",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if the resource is not found."
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "INTERNAL_SERVER_ERROR": {
                    "$ref": "#/components/examples/INTERNAL_SERVER_ERROR"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if an error occurs while retrieving the data."
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "AreaOfLaw Object for the given AreaOfLaw Id.",
        "tags": [
          "Court Standards API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [
        {
          "description": "areaOfLawId",
          "examples": {
            "HTTP200-sampleFoundResource": {
              "summary": "sampleFoundResource",
              "value": "AOFLGAd9Ah5qkTRNw9"
            },
            "HTTP404-sampleNotFoundResource": {
              "summary": "sampleNotFoundResource",
              "value": "ROFLGAd9Ah5qkTRNw9"
            }
          },
          "in": "path",
          "name": "areaOfLawId",
          "required": true,
          "schema": {
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          }
        }
      ],
      "x-api-name": "AreaOfLawByIdAPI",
      "x-unicourt-tag": "CourtStandardsAPIs"
    },
    "/masterData/attorneyRepresentationType": {
      "get": {
        "description": "Returns Attorney Representation Type Objects.\n## Logical Operators\n| Connector | Description  | Example |\n| ------| ------|------|\n| **AND** |Find data containing all connected terms.|**google AND facebook**|\n| **OR**  |Find data containing any connected term.| **order OR decision**|\n| **NOT** |Exclude data.| **google NOT apple**.|\n| **“[phrase]”** |Find an exact phrase.| **\"Google Inc”** |\n| **( … )** |Parenthesis may be used to group sets of terms of connectors.| **google (facebook OR apple)**.|\n\n### All Filter Query parameters supported for this API can be found in below Schema section. Schema --> AttorneyRepresentationTypeQueryObject\n",
        "operationId": "getAttorneyRepresentationTypes",
        "parameters": [
          {
            "description": "The URL encoded query you are searching for.\nThe query can be as simple as a keyword, but supports many additional options and filters.\nAll options are documented above.</a>\n",
            "examples": {
              "HTTP200-sampleListQuery": {
                "summary": "sampleListQuery",
                "value": "attorneyRepresentationTypeId: \"ATRPYgPMGJufoCsR6Q\""
              },
              "HTTP400-sampleInvalidInputQuery": {
                "summary": "sampleInvalidInputQuery",
                "value": "attorneyRepresentationTypId: \"ATRPYgPMGJufoCsR6Q\""
              }
            },
            "in": "query",
            "name": "q",
            "schema": {
              "maxLength": 2000,
              "minLength": 3,
              "nullable": false,
              "type": "string"
            }
          },
          {
            "$ref": "#/components/parameters/parameters-pageParam"
          },
          {
            "$ref": "#/components/parameters/parameters-sortParam"
          },
          {
            "$ref": "#/components/parameters/parameters-orderParam"
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleListQuery": {
                    "value": {
                      "attorneyRepresentationTypeArray": [
                        {
                          "attorneyRepresentationTypeId": "ATRPYgPMGJufoCsR6Q",
                          "createdDate": "2022-03-28T04:59:20+00:00",
                          "name": "Self Represented",
                          "object": "AttorneyRepresentationType"
                        }
                      ],
                      "nextPageAPI": null,
                      "object": "AttorneyRepresentationTypeResponse",
                      "pageNumber": 1,
                      "previousPageAPI": null,
                      "totalCount": 1,
                      "totalPages": 1
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/AttorneyRepresentationTypeResponse"
                }
              }
            },
            "description": "Success"
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleInvalidInputQuery": {
                    "$ref": "#/components/examples/SAMPLE_INVALID_INPUT_QUERY"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if the request is invalid."
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "INTERNAL_SERVER_ERROR": {
                    "$ref": "#/components/examples/INTERNAL_SERVER_ERROR"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if an error occurs while retrieving the data."
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Attorney Representation Type Object.",
        "tags": [
          "Court Standards API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [],
      "x-api-name": "AttorneyRepresentationTypeListAPI",
      "x-unicourt-tag": "CourtStandardsAPIs"
    },
    "/masterData/attorneyRepresentationType/{attorneyRepresentationTypeId}": {
      "get": {
        "description": "Returns Attorney Representation Type Object for the given attorneyRepresentationTypeId.\n",
        "operationId": "getAttorneyRepresentationType",
        "parameters": [],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleFoundResource": {
                    "value": {
                      "attorneyRepresentationTypeId": "ATRPYgPMGJufoCsR6Q",
                      "createdDate": "2022-03-28T04:59:20+00:00",
                      "name": "Self Represented",
                      "object": "AttorneyRepresentationType"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/AttorneyRepresentationType"
                }
              }
            },
            "description": "Success"
          },
          "404": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleNotFoundResource": {
                    "value": {
                      "code": "UN404",
                      "details": "attorneyRepresentationTypeId: ATRPTgPMGJufoCsR6Q resource you were looking for doesn't exist.",
                      "message": "RESOURCE_NOT_FOUND",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if the resource is not found."
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "INTERNAL_SERVER_ERROR": {
                    "$ref": "#/components/examples/INTERNAL_SERVER_ERROR"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if an error occurs while retrieving the data."
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Attorney Representation Type Object for the given attorneyRepresentationTypeId.",
        "tags": [
          "Court Standards API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [
        {
          "description": "attorneyRepresentationTypeId",
          "examples": {
            "HTTP200-sampleFoundResource": {
              "summary": "sampleFoundResource",
              "value": "ATRPYgPMGJufoCsR6Q"
            },
            "HTTP404-sampleNotFoundResource": {
              "summary": "sampleNotFoundResource",
              "value": "ATRPTgPMGJufoCsR6Q"
            }
          },
          "in": "path",
          "name": "attorneyRepresentationTypeId",
          "required": true,
          "schema": {
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          }
        }
      ],
      "x-api-name": "AttorneyRepresentationTypeByIdAPI",
      "x-unicourt-tag": "CourtStandardsAPIs"
    },
    "/masterData/attorneyType": {
      "get": {
        "description": "Returns Attorney Type Object.\n\n## Logical Operators\n| Connector | Description  | Example |\n| ------| ------|------|\n| **AND** |Find data containing all connected terms.|**google AND facebook**|\n| **OR**  |Find data containing any connected term.| **order OR decision**|\n| **NOT** |Exclude data.| **google NOT apple**.|\n| **“[phrase]”** |Find an exact phrase.| **\"Google Inc”** |\n| **( … )** |Parenthesis may be used to group sets of terms of connectors.| **google (facebook OR apple)**.|\n\n### All Filter Query parameters supported for this API can be found in below Schema section. Schema --> AttorneyTypeQueryObject\n",
        "operationId": "getAttorneyTypes",
        "parameters": [
          {
            "description": "The URL encoded query you are searching for.\nThe query can be as simple as a keyword, but supports many additional options and filters.\nAll options are documented above.</a>\n",
            "examples": {
              "HTTP200-sampleListQuery": {
                "summary": "sampleListQuery",
                "value": "attorneyTypeId:\"ATYPWXtARwvzu5HLcf\""
              },
              "HTTP400-sampleInvalidInputQuery": {
                "summary": "sampleInvalidInputQuery",
                "value": "attorneyTypId:\"ATYPWXtARwvzu5HLcf\""
              }
            },
            "in": "query",
            "name": "q",
            "schema": {
              "maxLength": 2000,
              "minLength": 3,
              "nullable": false,
              "type": "string"
            }
          },
          {
            "$ref": "#/components/parameters/parameters-pageParam"
          },
          {
            "$ref": "#/components/parameters/parameters-sortParam"
          },
          {
            "$ref": "#/components/parameters/parameters-orderParam"
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleListQuery": {
                    "value": {
                      "attorneyTypeArray": [
                        {
                          "attorneyTypeId": "ATYPWXtARwvzu5HLcf",
                          "createdDate": "2022-03-28T04:59:12+00:00",
                          "name": "Lead Attorney",
                          "object": "AttorneyType"
                        }
                      ],
                      "nextPageAPI": null,
                      "object": "AttorneyTypeResponse",
                      "pageNumber": 1,
                      "previousPageAPI": null,
                      "totalCount": 1,
                      "totalPages": 1
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/AttorneyTypeResponse"
                }
              }
            },
            "description": "Success"
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleInvalidInputQuery": {
                    "$ref": "#/components/examples/SAMPLE_INVALID_INPUT_QUERY"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if the request is invalid."
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "INTERNAL_SERVER_ERROR": {
                    "$ref": "#/components/examples/INTERNAL_SERVER_ERROR"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if an error occurs while retrieving the data."
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Attorney Type Object.",
        "tags": [
          "Court Standards API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [],
      "x-api-name": "AttorneyTypeListAPI",
      "x-unicourt-tag": "CourtStandardsAPIs"
    },
    "/masterData/attorneyType/{attorneyTypeId}": {
      "get": {
        "description": "Attorney Type Object for given Attorney Type Id.\n",
        "operationId": "getAttorneyType",
        "parameters": [],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleFoundResource": {
                    "value": {
                      "attorneyTypeId": "ATYPWXtARwvzu5HLcf",
                      "createdDate": "2022-03-28T04:59:12+00:00",
                      "name": "Lead Attorney",
                      "object": "AttorneyType"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/AttorneyType"
                }
              }
            },
            "description": "Success"
          },
          "404": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleNotFoundResource": {
                    "value": {
                      "code": "UN404",
                      "details": "attorneyTypeId resource you were looking for doesn't exist.",
                      "message": "RESOURCE_NOT_FOUND",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if the resource is not found."
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "INTERNAL_SERVER_ERROR": {
                    "$ref": "#/components/examples/INTERNAL_SERVER_ERROR"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if an error occurs while retrieving the data."
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Attorney Type Object for given Attorney Type Id.",
        "tags": [
          "Court Standards API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [
        {
          "description": "attorneyTypeId",
          "examples": {
            "HTTP200-sampleFoundResource": {
              "summary": "sampleFoundResource",
              "value": "ATYPWXtARwvzu5HLcf"
            },
            "HTTP404-sampleNotFoundResource": {
              "summary": "sampleNotFoundResource",
              "value": "ATYOWXtARwvzu5HLcf"
            }
          },
          "in": "path",
          "name": "attorneyTypeId",
          "required": true,
          "schema": {
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          }
        }
      ],
      "x-api-name": "AttorneyTypeByIdAPI",
      "x-unicourt-tag": "CourtStandardsAPIs"
    },
    "/masterData/caseClass": {
      "get": {
        "description": "Returns Case Class information.\n\n## Logical Operators\n| Connector | Description  | Example |\n| ------| ------|------|\n| **AND** |Find data containing all connected terms.|**google AND facebook**|\n| **OR**  |Find data containing any connected term.| **order OR decision**|\n| **NOT** |Exclude data.| **google NOT apple**.|\n| **“[phrase]”** |Find an exact phrase.| **\"Google Inc”** |\n| **( … )** |Parenthesis may be used to group sets of terms of connectors.| **google (facebook OR apple)**.|\n\n### All Filter Query parameters supported for this API can be found in below schema section. Schema --> CaseClassQueryObject\n",
        "operationId": "getCasesClass",
        "parameters": [
          {
            "description": "The URL encoded query you are searching for.\nThe query can be as simple as a keyword, but supports many additional options and filters.\nAll options are documented above.</a>\n",
            "examples": {
              "HTTP200-sampleListQuery": {
                "summary": "sampleListQuery",
                "value": "caseClassId:\"CSCLNjbKTN7Yfo2wdb\""
              },
              "HTTP400-sampleInvalidInputQuery": {
                "summary": "sampleInvalidInputQuery",
                "value": "caseClasId:\"CSCLNjbKTN7Yfo2wdb\""
              }
            },
            "in": "query",
            "name": "q",
            "schema": {
              "maxLength": 2000,
              "minLength": 3,
              "nullable": false,
              "type": "string"
            }
          },
          {
            "$ref": "#/components/parameters/parameters-pageParam"
          },
          {
            "$ref": "#/components/parameters/parameters-sortParam"
          },
          {
            "$ref": "#/components/parameters/parameters-orderParam"
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleListQuery": {
                    "value": {
                      "caseClassArray": [
                        {
                          "caseClassId": "CSCLNjbKTN7Yfo2wdb",
                          "createdDate": "2022-03-28T04:58:28+00:00",
                          "name": "Civil",
                          "object": "CaseClass"
                        }
                      ],
                      "nextPageAPI": null,
                      "object": "CaseClassResponse",
                      "pageNumber": 1,
                      "previousPageAPI": null,
                      "totalCount": 1,
                      "totalPages": 1
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/CaseClassResponse"
                }
              }
            },
            "description": "Success"
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleInvalidInputQuery": {
                    "$ref": "#/components/examples/SAMPLE_INVALID_INPUT_QUERY"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if the request is invalid."
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "INTERNAL_SERVER_ERROR": {
                    "$ref": "#/components/examples/INTERNAL_SERVER_ERROR"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if an error occurs while retrieving the data."
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Case Class Object.",
        "tags": [
          "Court Standards API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [],
      "x-api-name": "CaseClassListAPI",
      "x-unicourt-tag": "CourtStandardsAPIs"
    },
    "/masterData/caseClass/{caseClassId}": {
      "get": {
        "description": "Case Class for the given Case Class Id.\n",
        "operationId": "getCaseClass",
        "parameters": [],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleFoundResource": {
                    "value": {
                      "caseClassId": "CSCLNjbKTN7Yfo2wdb",
                      "createdDate": "2022-03-28T04:58:28+00:00",
                      "name": "Civil",
                      "object": "CaseClass"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/CaseClass"
                }
              }
            },
            "description": "Success"
          },
          "404": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleNotFoundResource": {
                    "value": {
                      "code": "UN404",
                      "details": "caseClassId resource you were looking for doesn't exist.",
                      "message": "RESOURCE_NOT_FOUND",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if the resource is not found."
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "INTERNAL_SERVER_ERROR": {
                    "$ref": "#/components/examples/INTERNAL_SERVER_ERROR"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if an error occurs while retrieving the data."
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Case Class Object for the given Case Class Id.",
        "tags": [
          "Court Standards API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [
        {
          "description": "caseClassId",
          "examples": {
            "HTTP200-sampleFoundResource": {
              "summary": "sampleFoundResource",
              "value": "CSCLNjbKTN7Yfo2wdb"
            },
            "HTTP404-sampleNotFoundResource": {
              "summary": "sampleNotFoundResource",
              "value": "RSCLNjbKTN7Yfo2wdb"
            }
          },
          "in": "path",
          "name": "caseClassId",
          "required": true,
          "schema": {
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          }
        }
      ],
      "x-api-name": "CaseClassByIdAPI",
      "x-unicourt-tag": "CourtStandardsAPIs"
    },
    "/masterData/caseRelationshipType": {
      "get": {
        "description": "Returns Case Relationship Type Object.\n\n## Logical Operators\n| Connector | Description  | Example |\n| ------| ------|------|\n| **AND** |Find data containing all connected terms.|**google AND facebook**|\n| **OR**  |Find data containing any connected term.| **order OR decision**|\n| **NOT** |Exclude data.| **google NOT apple**.|\n| **“[phrase]”** |Find an exact phrase.| **\"Google Inc”** |\n| **( … )** |Parenthesis may be used to group sets of terms of connectors.| **google (facebook OR apple)**.|\n\n### All Filter Query parameters supported for this API can be found in below schema section. Schema --> CaseRelationshipTypeQueryObject\n",
        "operationId": "getCaseRelationshipTypes",
        "parameters": [
          {
            "description": "The URL encoded query you are searching for.\nThe query can be as simple as a keyword, but supports many additional options and filters.\nAll options are documented above.</a>\n",
            "examples": {
              "HTTP200-sampleListQuery": {
                "summary": "sampleListQuery",
                "value": "caseRelationshipTypeId: \"CRTPgkmnzpiBXstT3s\""
              },
              "HTTP400-sampleInvalidInputQuery": {
                "summary": "sampleInvalidInputQuery",
                "value": "caseRelationhipTypeId: \"CRTPgkmnzpiBXstT3s\""
              }
            },
            "in": "query",
            "name": "q",
            "schema": {
              "maxLength": 2000,
              "minLength": 3,
              "nullable": false,
              "type": "string"
            }
          },
          {
            "$ref": "#/components/parameters/parameters-pageParam"
          },
          {
            "$ref": "#/components/parameters/parameters-sortParam"
          },
          {
            "$ref": "#/components/parameters/parameters-orderParam"
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleListQuery": {
                    "value": {
                      "caseRelationshipTypeArray": [
                        {
                          "caseRelationshipTypeId": "CRTPgkmnzpiBXstT3s",
                          "createdDate": "2022-03-28T04:59:33+00:00",
                          "name": "Child Case",
                          "object": "CaseRelationshipType"
                        }
                      ],
                      "nextPageAPI": null,
                      "object": "CaseRelationshipTypeResponse",
                      "pageNumber": 1,
                      "previousPageAPI": null,
                      "totalCount": 1,
                      "totalPages": 1
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/CaseRelationshipTypeResponse"
                }
              }
            },
            "description": "Success"
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleInvalidInputQuery": {
                    "$ref": "#/components/examples/SAMPLE_INVALID_INPUT_QUERY"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if the request is invalid."
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "INTERNAL_SERVER_ERROR": {
                    "$ref": "#/components/examples/INTERNAL_SERVER_ERROR"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if an error occurs while retrieving the data."
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Case Relationship Type Object.",
        "tags": [
          "Court Standards API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [],
      "x-api-name": "CaseRelationshipTypeListAPI",
      "x-unicourt-tag": "CourtStandardsAPIs"
    },
    "/masterData/caseRelationshipType/{caseRelationshipTypeId}": {
      "get": {
        "description": "Case Relationship Type Object for the given caseRelationshipTypeId.\n",
        "operationId": "getCaseRelationshipType",
        "parameters": [],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleFoundResource": {
                    "value": {
                      "caseRelationshipTypeId": "CRTPgkmnzpiBXstT3s",
                      "createdDate": "2022-03-28T04:59:33+00:00",
                      "name": "Child Case",
                      "object": "CaseRelationshipType"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/CaseRelationshipType"
                }
              }
            },
            "description": "Success"
          },
          "404": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleNotFoundResource": {
                    "value": {
                      "code": "UN404",
                      "details": "caseRelationshipTypeId: CRTTgkmnzpiBXstT3s resource you were looking for doesn't exist.",
                      "message": "RESOURCE_NOT_FOUND",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if the resource is not found."
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "INTERNAL_SERVER_ERROR": {
                    "$ref": "#/components/examples/INTERNAL_SERVER_ERROR"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if an error occurs while retrieving the data."
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Case Relationship Type Object for the given caseRelationshipTypeId.",
        "tags": [
          "Court Standards API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [
        {
          "description": "caseRelationshipTypeId",
          "examples": {
            "HTTP200-sampleFoundResource": {
              "summary": "sampleFoundResource",
              "value": "CRTPgkmnzpiBXstT3s"
            },
            "HTTP404-sampleNotFoundResource": {
              "summary": "sampleNotFoundResource",
              "value": "CRTTgkmnzpiBXstT3s"
            }
          },
          "in": "path",
          "name": "caseRelationshipTypeId",
          "required": true,
          "schema": {
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          }
        }
      ],
      "x-api-name": "CaseRelationshipTypeByIdAPI",
      "x-unicourt-tag": "CourtStandardsAPIs"
    },
    "/masterData/caseStatus": {
      "get": {
        "description": "Returns Case Status Object.\n\n## Logical Operators\n| Connector | Description  | Example |\n| ------| ------|------|\n| **AND** |Find data containing all connected terms.|**google AND facebook**|\n| **OR**  |Find data containing any connected term.| **order OR decision**|\n| **NOT** |Exclude data.| **google NOT apple**.|\n| **“[phrase]”** |Find an exact phrase.| **\"Google Inc”** |\n| **( … )** |Parenthesis may be used to group sets of terms of connectors.| **google (facebook OR apple)**.|\n\n### All Filter Query parameters supported for this API can be found in below Schema section. Schema --> CaseStatusQueryObject\n",
        "operationId": "getCasesStatus",
        "parameters": [
          {
            "description": "The URL encoded query you are searching for.\nThe query can be as simple as a keyword, but supports many additional options and filters.\nAll options are documented above.</a>\n",
            "examples": {
              "HTTP200-sampleListQuery": {
                "summary": "sampleListQuery",
                "value": "caseStatusId: \"CSSTBtqf3R2LYFt4j4\""
              },
              "HTTP400-sampleInvalidInputQuery": {
                "summary": "sampleInvalidInputQuery",
                "value": "caseStatuId: \"CSSTBtqf3R2LYFt4j4\""
              }
            },
            "in": "query",
            "name": "q",
            "schema": {
              "maxLength": 2000,
              "minLength": 3,
              "nullable": false,
              "type": "string"
            }
          },
          {
            "$ref": "#/components/parameters/parameters-pageParam"
          },
          {
            "$ref": "#/components/parameters/parameters-sortParam"
          },
          {
            "$ref": "#/components/parameters/parameters-orderParam"
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleListQuery": {
                    "value": {
                      "caseStatusArray": [
                        {
                          "caseClassArray": [
                            "Civil",
                            "Criminal"
                          ],
                          "caseStatusGroup": "Closed",
                          "caseStatusGroupId": "CSSG6ERqyFdydo52WK",
                          "caseStatusId": "CSSTBtqf3R2LYFt4j4",
                          "createdDate": "2022-03-28T04:58:47+00:00",
                          "name": "Dismissed",
                          "object": "CaseStatus"
                        }
                      ],
                      "nextPageAPI": null,
                      "object": "CaseStatusResponse",
                      "pageNumber": 1,
                      "previousPageAPI": null,
                      "totalCount": 1,
                      "totalPages": 1
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/CaseStatusResponse"
                }
              }
            },
            "description": "Success"
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleInvalidInputQuery": {
                    "$ref": "#/components/examples/SAMPLE_INVALID_INPUT_QUERY"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if the request is invalid."
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "INTERNAL_SERVER_ERROR": {
                    "$ref": "#/components/examples/INTERNAL_SERVER_ERROR"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if an error occurs while retrieving the data."
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Case Status Object.",
        "tags": [
          "Court Standards API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [],
      "x-api-name": "CaseStatusListAPI",
      "x-unicourt-tag": "CourtStandardsAPIs"
    },
    "/masterData/caseStatus/{caseStatusId}": {
      "get": {
        "description": "Case Status Object for given Case Status Id.\n",
        "operationId": "getCaseStatus",
        "parameters": [],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleFoundResource": {
                    "value": {
                      "caseClassArray": [
                        "Civil",
                        "Criminal"
                      ],
                      "caseStatusGroup": "Closed",
                      "caseStatusGroupId": "CSSG6ERqyFdydo52WK",
                      "caseStatusId": "CSSTBtqf3R2LYFt4j4",
                      "createdDate": "2022-03-28T04:58:47+00:00",
                      "name": "Dismissed",
                      "object": "CaseStatus"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/CaseStatus"
                }
              }
            },
            "description": "Success"
          },
          "404": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleNotFoundResource": {
                    "value": {
                      "code": "UN404",
                      "details": "caseStatusId resource you were looking for doesn't exist.",
                      "message": "RESOURCE_NOT_FOUND",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if the resource is not found."
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "INTERNAL_SERVER_ERROR": {
                    "$ref": "#/components/examples/INTERNAL_SERVER_ERROR"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if an error occurs while retrieving the data."
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Returns the caseStatus information for the given caseStatusId.",
        "tags": [
          "Court Standards API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [
        {
          "description": "caseStatusId",
          "examples": {
            "HTTP200-sampleFoundResource": {
              "summary": "sampleFoundResource",
              "value": "CSSTBtqf3R2LYFt4j4"
            },
            "HTTP404-sampleNotFoundResource": {
              "summary": "sampleNotFoundResource",
              "value": "CSSTztqf3R2LYFt4j4"
            }
          },
          "in": "path",
          "name": "caseStatusId",
          "required": true,
          "schema": {
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          }
        }
      ],
      "x-api-name": "CaseStatusByIdAPI",
      "x-unicourt-tag": "CourtStandardsAPIs"
    },
    "/masterData/caseStatusGroup": {
      "get": {
        "description": "Returns Case Status Group Object.\n\n## Logical Operators\n| Connector | Description  | Example |\n| ------| ------|------|\n| **AND** |Find data containing all connected terms.|**google AND facebook**|\n| **OR**  |Find data containing any connected term.| **order OR decision**|\n| **NOT** |Exclude data.| **google NOT apple**.|\n| **“[phrase]”** |Find an exact phrase.| **\"Google Inc”** |\n| **( … )** |Parenthesis may be used to group sets of terms of connectors.| **google (facebook OR apple)**.|\n\n### All Filter Query parameters supported for this API can be found in below schema section. Schema --> CaseStatusGroupQueryObject\n",
        "operationId": "getCaseStatusGroups",
        "parameters": [
          {
            "description": "The URL encoded query you are searching for.\nThe query can be as simple as a keyword, but supports many additional options and filters.\nAll options are documented above.</a>\n",
            "examples": {
              "HTTP200-sampleListQuery": {
                "summary": "sampleListQuery",
                "value": "caseStatusGroupId:\"CSSG6ERqyFdydo52WK\""
              },
              "HTTP400-sampleInvalidInputQuery": {
                "summary": "sampleInvalidInputQuery",
                "value": "caseStatusGro:\"CSSG6ERqyFdydo52WK\""
              }
            },
            "in": "query",
            "name": "q",
            "schema": {
              "maxLength": 2000,
              "minLength": 3,
              "nullable": false,
              "type": "string"
            }
          },
          {
            "$ref": "#/components/parameters/parameters-pageParam"
          },
          {
            "$ref": "#/components/parameters/parameters-sortParam"
          },
          {
            "$ref": "#/components/parameters/parameters-orderParam"
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleListQuery": {
                    "value": {
                      "caseStatusGroupArray": [
                        {
                          "caseStatusGroupId": "CSSG6ERqyFdydo52WK",
                          "createdDate": "2022-03-28T04:58:47+00:00",
                          "name": "Closed",
                          "object": "CaseStatusGroup"
                        }
                      ],
                      "nextPageAPI": null,
                      "object": "CaseStatusGroupResponse",
                      "pageNumber": 1,
                      "previousPageAPI": null,
                      "totalCount": 1,
                      "totalPages": 1
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/CaseStatusGroupResponse"
                }
              }
            },
            "description": "Success"
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleInvalidInputQuery": {
                    "$ref": "#/components/examples/SAMPLE_INVALID_INPUT_QUERY"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if the request is invalid."
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "INTERNAL_SERVER_ERROR": {
                    "$ref": "#/components/examples/INTERNAL_SERVER_ERROR"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if an error occurs while retrieving the data."
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Case Status Group Object.",
        "tags": [
          "Court Standards API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [],
      "x-api-name": "CaseStatusGroupListAPI",
      "x-unicourt-tag": "CourtStandardsAPIs"
    },
    "/masterData/caseStatusGroup/{caseStatusGroupId}": {
      "get": {
        "description": "CaseStatusGroup information for the given Id.\n",
        "operationId": "getCaseStatusGroup",
        "parameters": [],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleFoundResource": {
                    "value": {
                      "caseStatusGroupId": "CSSG6ERqyFdydo52WK",
                      "createdDate": "2022-03-28T04:58:47+00:00",
                      "name": "Closed",
                      "object": "CaseStatusGroup"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/CaseStatusGroup"
                }
              }
            },
            "description": "Success"
          },
          "404": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleNotFoundResource": {
                    "value": {
                      "code": "UN404",
                      "details": "caseStatusGroupId resource you were looking for doesn't exist.",
                      "message": "RESOURCE_NOT_FOUND",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if the resource is not found."
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "INTERNAL_SERVER_ERROR": {
                    "$ref": "#/components/examples/INTERNAL_SERVER_ERROR"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if an error occurs while retrieving the data."
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Returns the caseStatusGroup information for the given caseStatusGroupId.",
        "tags": [
          "Court Standards API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [
        {
          "description": "caseStatusGroupId",
          "examples": {
            "HTTP200-sampleFoundResource": {
              "summary": "sampleFoundResource",
              "value": "CSSG6ERqyFdydo52WK"
            },
            "HTTP404-sampleNotFoundResource": {
              "summary": "sampleNotFoundResource",
              "value": "CSSG6ERqyFdydo52aa"
            }
          },
          "in": "path",
          "name": "caseStatusGroupId",
          "required": true,
          "schema": {
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          }
        }
      ],
      "x-api-name": "CaseStatusGroupByIdAPI",
      "x-unicourt-tag": "CourtStandardsAPIs"
    },
    "/masterData/caseType": {
      "get": {
        "description": "Returns Case Type information.\n\n## Logical Operators\n| Connector | Description  | Example |\n| ------| ------|------|\n| **AND** |Find data containing all connected terms.|**google AND facebook**|\n| **OR**  |Find data containing any connected term.| **order OR decision**|\n| **NOT** |Exclude data.| **google NOT apple**.|\n| **“[phrase]”** |Find an exact phrase.| **\"Google Inc”** |\n| **( … )** |Parenthesis may be used to group sets of terms of connectors.| **google (facebook OR apple)**.|\n\n### All Filter Query parameters supported for this API can be found in below schema section. Schema --> CaseTypeQueryObject\n",
        "operationId": "getCaseTypes",
        "parameters": [
          {
            "description": "The URL encoded query you are searching for.\nThe query can be as simple as a keyword, but supports many additional options and filters.\nAll options are documented above.</a>\n",
            "examples": {
              "HTTP200-sampleListQuery": {
                "summary": "sampleListQuery",
                "value": "caseTypeId: \"CTYPoLU7sWaGjWtkBx\""
              },
              "HTTP400-sampleInvalidInputQuery": {
                "summary": "sampleInvalidInputQuery",
                "value": "caseTpeId: \"CTYPoLU7sWaGjWtkBx\""
              }
            },
            "in": "query",
            "name": "q",
            "schema": {
              "maxLength": 2000,
              "minLength": 3,
              "nullable": false,
              "type": "string"
            }
          },
          {
            "$ref": "#/components/parameters/parameters-pageParam"
          },
          {
            "$ref": "#/components/parameters/parameters-sortParam"
          },
          {
            "$ref": "#/components/parameters/parameters-orderParam"
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleListQuery": {
                    "value": {
                      "caseTypeArray": [
                        {
                          "areaOfLaw": "Tax and Revenue",
                          "areaOfLawId": "AOFLGAd9Ah5qkTRNw9",
                          "caseClass": "Civil",
                          "caseClassId": "CSCLNjbKTN7Yfo2wdb",
                          "caseTypeGroup": "Tax and Revenue",
                          "caseTypeGroupId": "CTYGSpWaVityBQndsv",
                          "caseTypeId": "CTYPoLU7sWaGjWtkBx",
                          "caseTypeTag": null,
                          "createdDate": "2022-03-28T04:58:28+00:00",
                          "name": "Tax Claim",
                          "object": "CaseType",
                          "saliCode": "TAXR"
                        }
                      ],
                      "nextPageAPI": null,
                      "object": "CaseTypeResponse",
                      "pageNumber": 1,
                      "previousPageAPI": null,
                      "totalCount": 1,
                      "totalPages": 1
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/CaseTypeResponse"
                }
              }
            },
            "description": "Success"
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleInvalidInputQuery": {
                    "$ref": "#/components/examples/SAMPLE_INVALID_INPUT_QUERY"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if the request is invalid."
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "INTERNAL_SERVER_ERROR": {
                    "$ref": "#/components/examples/INTERNAL_SERVER_ERROR"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if an error occurs while retrieving the data."
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Case Type Object.",
        "tags": [
          "Court Standards API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [],
      "x-api-name": "CaseTypeListAPI",
      "x-unicourt-tag": "CourtStandardsAPIs"
    },
    "/masterData/caseType/{caseTypeId}": {
      "get": {
        "description": "CaseType Object for the given Case Type Id.\n",
        "operationId": "getCaseType",
        "parameters": [],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleFoundResource": {
                    "value": {
                      "areaOfLaw": "Tax and Revenue",
                      "areaOfLawId": "AOFLGAd9Ah5qkTRNw9",
                      "caseClass": "Civil",
                      "caseClassId": "CSCLNjbKTN7Yfo2wdb",
                      "caseTypeGroup": "Tax and Revenue",
                      "caseTypeGroupId": "CTYGSpWaVityBQndsv",
                      "caseTypeId": "CTYPoLU7sWaGjWtkBx",
                      "caseTypeTag": null,
                      "createdDate": "2022-03-28T04:58:28+00:00",
                      "name": "Tax Claim",
                      "object": "CaseType",
                      "saliCode": "TAXR"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/CaseType"
                }
              }
            },
            "description": "Success"
          },
          "404": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleNotFoundResource": {
                    "value": {
                      "code": "UN404",
                      "details": "caseTypeId resource you were looking for doesn't exist.",
                      "message": "RESOURCE_NOT_FOUND",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if the resource is not found."
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "INTERNAL_SERVER_ERROR": {
                    "$ref": "#/components/examples/INTERNAL_SERVER_ERROR"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if an error occurs while retrieving the data."
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "CaseType Object for given Case Type Id.",
        "tags": [
          "Court Standards API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [
        {
          "description": "caseTypeId",
          "examples": {
            "HTTP200-sampleFoundResource": {
              "summary": "sampleFoundResource",
              "value": "CTYPoLU7sWaGjWtkBx"
            },
            "HTTP404-sampleNotFoundResource": {
              "summary": "sampleNotFoundResource",
              "value": "DYPoLU7sWaGjWtkBxz"
            }
          },
          "in": "path",
          "name": "caseTypeId",
          "required": true,
          "schema": {
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          }
        }
      ],
      "x-api-name": "CaseTypeByIdAPI",
      "x-unicourt-tag": "CourtStandardsAPIs"
    },
    "/masterData/caseTypeGroup": {
      "get": {
        "description": "Returns CaseTypeGroup Object.\n\n## Logical Operators\n| Connector | Description  | Example |\n| ------| ------|------|\n| **AND** |Find data containing all connected terms.|**google AND facebook**|\n| **OR**  |Find data containing any connected term.| **order OR decision**|\n| **NOT** |Exclude data.| **google NOT apple**.|\n| **“[phrase]”** |Find an exact phrase.| **\"Google Inc”** |\n| **( … )** |Parenthesis may be used to group sets of terms of connectors.| **google (facebook OR apple)**.|\n\n### All Filter Query parameters supported for this API can be found in below schema section. Schema --> CaseTypeGroupQueryObject\n",
        "operationId": "getCaseTypeGroups",
        "parameters": [
          {
            "description": "The URL encoded query you are searching for.\nThe query can be as simple as a keyword, but supports many additional options and filters.\nAll options are documented above.</a>\n",
            "examples": {
              "HTTP200-sampleListQuery": {
                "summary": "sampleListQuery",
                "value": "caseTypeGroupId: \"CTYGSpWaVityBQndsv\""
              },
              "HTTP400-sampleInvalidInputQuery": {
                "summary": "sampleInvalidInputQuery",
                "value": "caseTypeGrouId: \"CTYGSpWaVityBQndsv\""
              }
            },
            "in": "query",
            "name": "q",
            "schema": {
              "maxLength": 2000,
              "minLength": 3,
              "nullable": false,
              "type": "string"
            }
          },
          {
            "$ref": "#/components/parameters/parameters-pageParam"
          },
          {
            "$ref": "#/components/parameters/parameters-sortParam"
          },
          {
            "$ref": "#/components/parameters/parameters-orderParam"
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleListQuery": {
                    "value": {
                      "caseTypeGroupArray": [
                        {
                          "areaOfLaw": "Tax and Revenue",
                          "areaOfLawId": "AOFLGAd9Ah5qkTRNw9",
                          "caseClass": "Civil",
                          "caseClassId": "CSCLNjbKTN7Yfo2wdb",
                          "caseTypeGroupId": "CTYGSpWaVityBQndsv",
                          "createdDate": "2022-03-28T04:58:28+00:00",
                          "name": "Tax and Revenue",
                          "object": "CaseTypeGroup"
                        }
                      ],
                      "nextPageAPI": null,
                      "object": "CaseTypeGroupResponse",
                      "pageNumber": 1,
                      "previousPageAPI": null,
                      "totalCount": 1,
                      "totalPages": 1
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/CaseTypeGroupResponse"
                }
              }
            },
            "description": "Success"
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleInvalidInputQuery": {
                    "$ref": "#/components/examples/SAMPLE_INVALID_INPUT_QUERY"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if the request is invalid."
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "INTERNAL_SERVER_ERROR": {
                    "$ref": "#/components/examples/INTERNAL_SERVER_ERROR"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if an error occurs while retrieving the data."
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "CaseTypeGroup Object.",
        "tags": [
          "Court Standards API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [],
      "x-api-name": "CaseTypeGroupListAPI",
      "x-unicourt-tag": "CourtStandardsAPIs"
    },
    "/masterData/caseTypeGroup/{caseTypeGroupId}": {
      "get": {
        "description": "Returns CaseType Group for the given CaseType Group Id.\n",
        "operationId": "getCaseTypeGroup",
        "parameters": [],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleFoundResource": {
                    "value": {
                      "areaOfLaw": "Tax and Revenue",
                      "areaOfLawId": "AOFLGAd9Ah5qkTRNw9",
                      "caseClass": "Civil",
                      "caseClassId": "CSCLNjbKTN7Yfo2wdb",
                      "caseTypeGroupId": "CTYGSpWaVityBQndsv",
                      "createdDate": "2022-03-28T04:58:28+00:00",
                      "name": "Tax and Revenue",
                      "object": "CaseTypeGroup"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/CaseTypeGroup"
                }
              }
            },
            "description": "Success"
          },
          "404": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleNotFoundResource": {
                    "value": {
                      "code": "UN404",
                      "details": "caseTypeGroupId resource you were looking for doesn't exist.",
                      "message": "RESOURCE_NOT_FOUND",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if the resource is not found."
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "INTERNAL_SERVER_ERROR": {
                    "$ref": "#/components/examples/INTERNAL_SERVER_ERROR"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if an error occurs while retrieving the data."
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "CaseType Group for the given CaseType Group Id.",
        "tags": [
          "Court Standards API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [
        {
          "description": "caseTypeGroupId",
          "examples": {
            "HTTP200-sampleFoundResource": {
              "summary": "sampleFoundResource",
              "value": "CTYGSpWaVityBQndsv"
            },
            "HTTP404-sampleNotFoundResource": {
              "summary": "sampleNotFoundResource",
              "value": "TTYGSpWaVityBQndsv"
            }
          },
          "in": "path",
          "name": "caseTypeGroupId",
          "required": true,
          "schema": {
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          }
        }
      ],
      "x-api-name": "CaseTypeGroupByIdAPI",
      "x-unicourt-tag": "CourtStandardsAPIs"
    },
    "/masterData/causeOfAction": {
      "get": {
        "description": "Returns CauseOfAction Object.\n\n## Logical Operators\n| Connector | Description  | Example |\n| ------| ------|------|\n| **AND** |Find data containing all connected terms.|**google AND facebook**|\n| **OR**  |Find data containing any connected term.| **order OR decision**|\n| **NOT** |Exclude data.| **google NOT apple**.|\n| **“[phrase]”** |Find an exact phrase.| **\"Google Inc”** |\n| **( … )** |Parenthesis may be used to group sets of terms of connectors.| **google (facebook OR apple)**.|\n\n### All Filter Query parameters supported for this API can be found in below schema section. Schema --> CauseOfActionQueryObject\n",
        "operationId": "getCausesOfAction",
        "parameters": [
          {
            "description": "The URL encoded query you are searching for.\nThe query can be as simple as a keyword, but supports many additional options and filters.\nAll options are documented above.</a>\n",
            "examples": {
              "HTTP200-sampleListQuery": {
                "summary": "sampleListQuery",
                "value": "causeOfActionId:\"CATNiHoKn66p3bkcNs\""
              },
              "HTTP400-sampleInvalidInputQuery": {
                "summary": "sampleInvalidInputQuery",
                "value": "causeOfActinId:\"CATNiHoKn66p3bkcNs\""
              }
            },
            "in": "query",
            "name": "q",
            "schema": {
              "maxLength": 2000,
              "minLength": 3,
              "nullable": false,
              "type": "string"
            }
          },
          {
            "$ref": "#/components/parameters/parameters-pageParam"
          },
          {
            "$ref": "#/components/parameters/parameters-sortParam"
          },
          {
            "$ref": "#/components/parameters/parameters-orderParam"
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleListQuery": {
                    "value": {
                      "causeOfActionArray": [
                        {
                          "causeOfActionGroup": "Consumer Credit and Unfair Debt Collection Claims",
                          "causeOfActionGroupId": "CAGPiHoKn66p3bkcNs",
                          "causeOfActionId": "CATNiHoKn66p3bkcNs",
                          "createdDate": "2020-05-07T10:17:56+00:00",
                          "name": "Fair Credit Reporting Claim",
                          "object": "CauseOfAction"
                        }
                      ],
                      "nextPageAPI": null,
                      "object": "CauseOfActionResponse",
                      "pageNumber": 1,
                      "previousPageAPI": null,
                      "totalCount": 1,
                      "totalPages": 1
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/CauseOfActionResponse"
                }
              }
            },
            "description": "Success"
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleInvalidInputQuery": {
                    "$ref": "#/components/examples/SAMPLE_INVALID_INPUT_QUERY"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if the request is invalid."
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "INTERNAL_SERVER_ERROR": {
                    "$ref": "#/components/examples/INTERNAL_SERVER_ERROR"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if an error occurs while retrieving the data."
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "CauseOfAction Object.",
        "tags": [
          "Court Standards API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [],
      "x-api-name": "CauseOfActionListAPI",
      "x-unicourt-tag": "CourtStandardsAPIs"
    },
    "/masterData/causeOfAction/{causeOfActionId}": {
      "get": {
        "description": "CauseOfAction Object for the given causeOfActionId.\n",
        "operationId": "getCauseOfAction",
        "parameters": [],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleFoundResource": {
                    "value": {
                      "causeOfActionGroup": "Consumer Credit and Unfair Debt Collection Claims",
                      "causeOfActionGroupId": "CAGPiHoKn66p3bkcNs",
                      "causeOfActionId": "CATNiHoKn66p3bkcNs",
                      "createdDate": "2020-05-07T10:17:56+00:00",
                      "name": "Fair Credit Reporting Claim",
                      "object": "CauseOfAction"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/CauseOfAction"
                }
              }
            },
            "description": "Success"
          },
          "404": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleNotFoundResource": {
                    "value": {
                      "code": "UN404",
                      "details": "causeOfActionGroupId resource you were looking for doesn't exist.",
                      "message": "RESOURCE_NOT_FOUND",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if the resource is not found."
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "INTERNAL_SERVER_ERROR": {
                    "$ref": "#/components/examples/INTERNAL_SERVER_ERROR"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if an error occurs while retrieving the data."
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "CauseOfAction Object for the given causeOfActionId.",
        "tags": [
          "Court Standards API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [
        {
          "description": "causeOfActionId",
          "examples": {
            "HTTP200-sampleFoundResource": {
              "summary": "sampleFoundResource",
              "value": "CATNoLU7sWaGjWtkBx"
            },
            "HTTP404-sampleNotFoundResource": {
              "summary": "sampleNotFoundResource",
              "value": "CSSSoLU7sWaGjWtkBx"
            }
          },
          "in": "path",
          "name": "causeOfActionId",
          "required": true,
          "schema": {
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          }
        }
      ],
      "x-api-name": "CauseOfActionByIdAPI",
      "x-unicourt-tag": "CourtStandardsAPIs"
    },
    "/masterData/causeOfActionAdditionalData": {
      "get": {
        "description": "Returns CauseOfActionAdditionaData Object.\n\n## Logical Operators\n| Connector | Description  | Example |\n| ------| ------|------|\n| **AND** |Find data containing all connected terms.|**google AND facebook**|\n| **OR**  |Find data containing any connected term.| **order OR decision**|\n| **NOT** |Exclude data.| **google NOT apple**.|\n| **“[phrase]”** |Find an exact phrase.| **\"Google Inc”** |\n| **( … )** |Parenthesis may be used to group sets of terms of connectors.| **google (facebook OR apple)**.|\n\n### All Filter Query parameters supported for this API can be found in below schema section. Schema --> CauseOfActionAdditionalDataQueryObject\n",
        "operationId": "getCausesOfActionAdditionalData",
        "parameters": [
          {
            "description": "The URL encoded query you are searching for.\nThe query can be as simple as a keyword, but supports many additional options and filters.\nAll options are documented above.</a>\n",
            "examples": {
              "HTTP200-sampleListQuery": {
                "summary": "sampleListQuery",
                "value": "causeOfActionAdditionalDataId:\"CAADiHoKn66p3bkcNs\""
              },
              "HTTP400-sampleInvalidInputQuery": {
                "summary": "sampleInvalidInputQuery",
                "value": "causeOfActionAdditionalDaaId:\"CAADiHoKn66p3bkcNs\""
              }
            },
            "in": "query",
            "name": "q",
            "schema": {
              "maxLength": 2000,
              "minLength": 3,
              "nullable": false,
              "type": "string"
            }
          },
          {
            "$ref": "#/components/parameters/parameters-pageParam"
          },
          {
            "$ref": "#/components/parameters/parameters-sortParam"
          },
          {
            "$ref": "#/components/parameters/parameters-orderParam"
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleListQuery": {
                    "value": {
                      "causeOfActionAdditionalDataArray": [
                        {
                          "causeOfActionAdditionalDataId": "CAADiHoKn66p3bkcNs",
                          "createdDate": "2020-05-07T10:17:56+00:00",
                          "object": "CauseOfActionAdditionalData",
                          "type": "ActName",
                          "value": "Fair Credit Reporting Act"
                        }
                      ],
                      "nextPageAPI": null,
                      "object": "CauseOfActionAdditionalDataResponse",
                      "pageNumber": 1,
                      "previousPageAPI": null,
                      "totalCount": 1,
                      "totalPages": 1
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/CauseOfActionAdditionalDataResponse"
                }
              }
            },
            "description": "Success"
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleInvalidInputQuery": {
                    "$ref": "#/components/examples/SAMPLE_INVALID_INPUT_QUERY"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if the request is invalid."
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "INTERNAL_SERVER_ERROR": {
                    "$ref": "#/components/examples/INTERNAL_SERVER_ERROR"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if an error occurs while retrieving the data."
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "CauseOfActionAdditionaData Object.",
        "tags": [
          "Court Standards API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [],
      "x-api-name": "CauseOfActionAdditionalDataListAPI",
      "x-unicourt-tag": "CourtStandardsAPIs"
    },
    "/masterData/causeOfActionAdditionalData/{causeOfActionAdditionalDataId}": {
      "get": {
        "description": "CauseOfActionAdditionalData Object for the given causeOfActionAdditionalDataId.\n",
        "operationId": "getCauseOfActionAdditionalData",
        "parameters": [],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleFoundResource": {
                    "value": {
                      "causeOfActionAdditionalDataId": "CAADiHoKn66p3bkcNs",
                      "createdDate": "2020-05-07T10:17:56+00:00",
                      "object": "CauseOfActionAdditionalData",
                      "type": "ActName",
                      "value": "Fair Credit Reporting Act"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/CauseOfActionAdditionalData"
                }
              }
            },
            "description": "Success"
          },
          "404": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleNotFoundResource": {
                    "value": {
                      "code": "UN404",
                      "details": "causeOfActionAdditionalDataId resource you were looking for doesn't exist.",
                      "message": "RESOURCE_NOT_FOUND",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if the resource is not found."
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "INTERNAL_SERVER_ERROR": {
                    "$ref": "#/components/examples/INTERNAL_SERVER_ERROR"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if an error occurs while retrieving the data."
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "CauseOfActionAdditionalData Object for the given causeOfActionAdditionalDataId.",
        "tags": [
          "Court Standards API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [
        {
          "description": "causeOfActionAdditionalDataId",
          "examples": {
            "HTTP200-sampleFoundResource": {
              "summary": "sampleFoundResource",
              "value": "CAADoLU7sWaGjWtkBx"
            },
            "HTTP404-sampleNotFoundResource": {
              "summary": "sampleNotFoundResource",
              "value": "CAAAoLU7sWaGjWtkBx"
            }
          },
          "in": "path",
          "name": "causeOfActionAdditionalDataId",
          "required": true,
          "schema": {
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          }
        }
      ],
      "x-api-name": "CauseOfActionAdditionaDataByIdAPI",
      "x-unicourt-tag": "CourtStandardsAPIs"
    },
    "/masterData/causeOfActionGroup": {
      "get": {
        "description": "Returns CauseOfActionGroup Object.\n\n## Logical Operators\n| Connector | Description  | Example |\n| ------| ------|------|\n| **AND** |Find data containing all connected terms.|**google AND facebook**|\n| **OR**  |Find data containing any connected term.| **order OR decision**|\n| **NOT** |Exclude data.| **google NOT apple**.|\n| **“[phrase]”** |Find an exact phrase.| **\"Google Inc”** |\n| **( … )** |Parenthesis may be used to group sets of terms of connectors.| **google (facebook OR apple)**.|\n\n### All Filter Query parameters supported for this API can be found in below schema section. Schema --> CauseOfActionGroupQueryObject\n",
        "operationId": "getCausesOfActionGroup",
        "parameters": [
          {
            "description": "The URL encoded query you are searching for.\nThe query can be as simple as a keyword, but supports many additional options and filters.\nAll options are documented above.</a>\n",
            "examples": {
              "HTTP200-sampleListQuery": {
                "summary": "sampleListQuery",
                "value": "causeOfActionGroupId:\"CAGPiHoKn66p3bkcNs\""
              },
              "HTTP400-sampleInvalidInputQuery": {
                "summary": "sampleInvalidInputQuery",
                "value": "causeOfActionGropId:\"CAGPiHoKn66p3bkcNs\""
              }
            },
            "in": "query",
            "name": "q",
            "schema": {
              "maxLength": 2000,
              "minLength": 3,
              "nullable": false,
              "type": "string"
            }
          },
          {
            "$ref": "#/components/parameters/parameters-pageParam"
          },
          {
            "$ref": "#/components/parameters/parameters-sortParam"
          },
          {
            "$ref": "#/components/parameters/parameters-orderParam"
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleListQuery": {
                    "value": {
                      "causeOfActionGroupArray": [
                        {
                          "causeOfActionGroupId": "CAGPiHoKn66p3bkcNs",
                          "createdDate": "2020-05-07T10:17:56+00:00",
                          "name": "Consumer Credit and Unfair Debt Collection Claims",
                          "object": "CauseOfActionGroup"
                        }
                      ],
                      "nextPageAPI": null,
                      "object": "CauseOfActionGroupResponse",
                      "pageNumber": 1,
                      "previousPageAPI": null,
                      "totalCount": 1,
                      "totalPages": 1
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/CauseOfActionGroupResponse"
                }
              }
            },
            "description": "Success"
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleInvalidInputQuery": {
                    "$ref": "#/components/examples/SAMPLE_INVALID_INPUT_QUERY"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if the request is invalid."
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "INTERNAL_SERVER_ERROR": {
                    "$ref": "#/components/examples/INTERNAL_SERVER_ERROR"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if an error occurs while retrieving the data."
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "CauseOfActionGroup Object.",
        "tags": [
          "Court Standards API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [],
      "x-api-name": "CauseOfActionGroupListAPI",
      "x-unicourt-tag": "CourtStandardsAPIs"
    },
    "/masterData/causeOfActionGroup/{causeOfActionGroupId}": {
      "get": {
        "description": "CauseOfActionGroup Object for the given causeOfActionGroupId.\n",
        "operationId": "getCauseOfActionGroup",
        "parameters": [],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleFoundResource": {
                    "value": {
                      "causeOfActionGroupId": "CAGPiHoKn66p3bkcNs",
                      "createdDate": "2020-05-07T10:17:56+00:00",
                      "name": "Consumer Credit and Unfair Debt Collection Claims",
                      "object": "CauseOfActionGroup"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/CauseOfActionGroup"
                }
              }
            },
            "description": "Success"
          },
          "404": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleNotFoundResource": {
                    "value": {
                      "code": "UN404",
                      "details": "causeOfActionGroupId resource you were looking for doesn't exist.",
                      "message": "RESOURCE_NOT_FOUND",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if the resource is not found."
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "INTERNAL_SERVER_ERROR": {
                    "$ref": "#/components/examples/INTERNAL_SERVER_ERROR"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if an error occurs while retrieving the data."
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "CauseOfActionGroup Object for the given causeOfActionGroupId.",
        "tags": [
          "Court Standards API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [
        {
          "description": "causeOfActionGroupId",
          "examples": {
            "HTTP200-sampleFoundResource": {
              "summary": "sampleFoundResource",
              "value": "CAGPoLU7sWaGjWtkBx"
            },
            "HTTP404-sampleNotFoundResource": {
              "summary": "sampleNotFoundResource",
              "value": "CSTPoLU7sWaGjWtkBx"
            }
          },
          "in": "path",
          "name": "causeOfActionGroupId",
          "required": true,
          "schema": {
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          }
        }
      ],
      "x-api-name": "CauseOfActionGroupByIdAPI",
      "x-unicourt-tag": "CourtStandardsAPIs"
    },
    "/masterData/charge": {
      "get": {
        "description": "Returns Charge Object.\n\n## Logical Operators\n| Connector | Description  | Example |\n| ------| ------|------|\n| **AND** |Find data containing all connected terms.|**google AND facebook**|\n| **OR**  |Find data containing any connected term.| **order OR decision**|\n| **NOT** |Exclude data.| **google NOT apple**.|\n| **“[phrase]”** |Find an exact phrase.| **\"Google Inc”** |\n| **( … )** |Parenthesis may be used to group sets of terms of connectors.| **google (facebook OR apple)**.|\n\n### All Filter Query parameters supported for this API can be found in below schema section. Schema --> ChargeQueryObject\n",
        "operationId": "getCharges",
        "parameters": [
          {
            "description": "The URL encoded query you are searching for.\nThe query can be as simple as a keyword, but supports many additional options and filters.\nAll options are documented above.</a>\n",
            "examples": {
              "HTTP200-sampleListQuery": {
                "summary": "sampleListQuery",
                "value": "chargeId:\"CHRGoLU7sWaGjWtkBx\""
              },
              "HTTP400-sampleInvalidInputQuery": {
                "summary": "sampleInvalidInputQuery",
                "value": "charId:\"CHRGoLU7sWaGjWtkBx\""
              }
            },
            "in": "query",
            "name": "q",
            "schema": {
              "maxLength": 2000,
              "minLength": 3,
              "nullable": false,
              "type": "string"
            }
          },
          {
            "$ref": "#/components/parameters/parameters-pageParam"
          },
          {
            "$ref": "#/components/parameters/parameters-sortParam"
          },
          {
            "$ref": "#/components/parameters/parameters-orderParam"
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleListQuery": {
                    "value": {
                      "chargeArray": [
                        {
                          "chargeGroup": "Burglary",
                          "chargeGroupId": "CHGPiHoKn66p3bkcNs",
                          "chargeId": "CHRGiHoKn66p3bkcNs",
                          "createdDate": "2020-05-07T10:17:56+00:00",
                          "name": "Assault Battery",
                          "object": "Charge"
                        }
                      ],
                      "nextPageAPI": null,
                      "object": "ChargeResponse",
                      "pageNumber": 1,
                      "previousPageAPI": null,
                      "totalCount": 1,
                      "totalPages": 1
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/ChargeResponse"
                }
              }
            },
            "description": "Success"
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleInvalidInputQuery": {
                    "$ref": "#/components/examples/SAMPLE_INVALID_INPUT_QUERY"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if the request is invalid."
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "INTERNAL_SERVER_ERROR": {
                    "$ref": "#/components/examples/INTERNAL_SERVER_ERROR"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if an error occurs while retrieving the data."
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Charge Object.",
        "tags": [
          "Court Standards API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [],
      "x-api-name": "ChargeListAPI",
      "x-unicourt-tag": "CourtStandardsAPIs"
    },
    "/masterData/charge/{chargeId}": {
      "get": {
        "description": "Charge Object for the given chargeId.\n",
        "operationId": "getCharge",
        "parameters": [],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleFoundResource": {
                    "value": {
                      "chargeGroup": "Burglary",
                      "chargeGroupId": "CHGPiHoKn66p3bkcNs",
                      "chargeId": "CHRGiHoKn66p3bkcNs",
                      "createdDate": "2020-05-07T10:17:56+00:00",
                      "name": "Assault Battery",
                      "object": "Charge"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Charge"
                }
              }
            },
            "description": "Success"
          },
          "404": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleNotFoundResource": {
                    "value": {
                      "code": "UN404",
                      "details": "chargeId resource you were looking for doesn't exist.",
                      "message": "RESOURCE_NOT_FOUND",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if the resource is not found."
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "INTERNAL_SERVER_ERROR": {
                    "$ref": "#/components/examples/INTERNAL_SERVER_ERROR"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if an error occurs while retrieving the data."
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Charge Object for the given chargeId.",
        "tags": [
          "Court Standards API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [
        {
          "description": "chargeId",
          "examples": {
            "HTTP200-sampleFoundResource": {
              "summary": "sampleFoundResource",
              "value": "CHRGiHoKn66p3bkcNs"
            },
            "HTTP404-sampleNotFoundResource": {
              "summary": "sampleNotFoundResource",
              "value": "CHRGoLU7sWaGjWtqws"
            }
          },
          "in": "path",
          "name": "chargeId",
          "required": true,
          "schema": {
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          }
        }
      ],
      "x-api-name": "ChargeByIdAPI",
      "x-unicourt-tag": "CourtStandardsAPIs"
    },
    "/masterData/chargeAdditionalData": {
      "get": {
        "description": "Returns ChargeAdditionalData Object.\n\n## Logical Operators\n| Connector | Description  | Example |\n| ------| ------|------|\n| **AND** |Find data containing all connected terms.|**google AND facebook**|\n| **OR**  |Find data containing any connected term.| **order OR decision**|\n| **NOT** |Exclude data.| **google NOT apple**.|\n| **“[phrase]”** |Find an exact phrase.| **\"Google Inc”** |\n| **( … )** |Parenthesis may be used to group sets of terms of connectors.| **google (facebook OR apple)**.|\n\n### All Filter Query parameters supported for this API can be found in below schema section. Schema --> ChargeAdditionalDataQueryObject\n",
        "operationId": "getChargesAdditionalData",
        "parameters": [
          {
            "description": "The URL encoded query you are searching for.\nThe query can be as simple as a keyword, but supports many additional options and filters.\nAll options are documented above.</a>\n",
            "examples": {
              "HTTP200-sampleListQuery": {
                "summary": "sampleListQuery",
                "value": "chargeAdditionalDataId:\"CHADoLU7sWaGjWtkBx\""
              },
              "HTTP400-sampleInvalidInputQuery": {
                "summary": "sampleInvalidInputQuery",
                "value": "chargeAddId:\"CHADoLU7sWaGjWtkBx\""
              }
            },
            "in": "query",
            "name": "q",
            "schema": {
              "maxLength": 2000,
              "minLength": 3,
              "nullable": false,
              "type": "string"
            }
          },
          {
            "$ref": "#/components/parameters/parameters-pageParam"
          },
          {
            "$ref": "#/components/parameters/parameters-sortParam"
          },
          {
            "$ref": "#/components/parameters/parameters-orderParam"
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleListQuery": {
                    "value": {
                      "chargeAdditionalDataArray": [
                        {
                          "chargeAdditionalDataId": "CHADiHoKn66p3bkcNs",
                          "createdDate": "2020-05-07T10:17:56+00:00",
                          "object": "ChargeAdditionalData",
                          "type": "AgeModifier",
                          "value": "Under 21"
                        }
                      ],
                      "nextPageAPI": null,
                      "object": "ChargeAdditionalDataResponse",
                      "pageNumber": 1,
                      "previousPageAPI": null,
                      "totalCount": 1,
                      "totalPages": 1
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/ChargeAdditionalDataResponse"
                }
              }
            },
            "description": "Success"
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleInvalidInputQuery": {
                    "$ref": "#/components/examples/SAMPLE_INVALID_INPUT_QUERY"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if the request is invalid."
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "INTERNAL_SERVER_ERROR": {
                    "$ref": "#/components/examples/INTERNAL_SERVER_ERROR"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if an error occurs while retrieving the data."
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Charge Additional Data Object.",
        "tags": [
          "Court Standards API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [],
      "x-api-name": "ChargeAdditionalDataListAPI",
      "x-unicourt-tag": "CourtStandardsAPIs"
    },
    "/masterData/chargeAdditionalData/{chargeAdditionalDataId}": {
      "get": {
        "description": "Charge Additional Data Object for the given chargeAdditionalDataId.\n",
        "operationId": "getChargeAdditionalData",
        "parameters": [],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleFoundResource": {
                    "value": {
                      "chargeAdditionalDataId": "CHADiHoKn66p3bkcNs",
                      "createdDate": "2020-05-07T10:17:56+00:00",
                      "object": "ChargeAdditionalData",
                      "type": "AgeModifier",
                      "value": "Under 21"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/ChargeAdditionalData"
                }
              }
            },
            "description": "Success"
          },
          "404": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleNotFoundResource": {
                    "value": {
                      "code": "UN404",
                      "details": "chargeAdditionalDataId resource you were looking for doesn't exist.",
                      "message": "RESOURCE_NOT_FOUND",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if the resource is not found."
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "INTERNAL_SERVER_ERROR": {
                    "$ref": "#/components/examples/INTERNAL_SERVER_ERROR"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if an error occurs while retrieving the data."
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Charge Additional Data Object for the given chargeAdditionalDataId.",
        "tags": [
          "Court Standards API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [
        {
          "description": "chargeAdditionalDataId",
          "examples": {
            "HTTP200-sampleFoundResource": {
              "summary": "sampleFoundResource",
              "value": "CHADiHoKn66p3bkcNs"
            },
            "HTTP404-sampleNotFoundResource": {
              "summary": "sampleNotFoundResource",
              "value": "MTYRVRgMKueGGxRdfd"
            }
          },
          "in": "path",
          "name": "chargeAdditionalDataId",
          "required": true,
          "schema": {
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          }
        }
      ],
      "x-api-name": "ChargeAdditionalDataByIdAPI",
      "x-unicourt-tag": "CourtStandardsAPIs"
    },
    "/masterData/chargeDegree": {
      "get": {
        "description": "Returns ChargeDegree Object.\n\n## Logical Operators\n| Connector | Description  | Example |\n| ------| ------|------|\n| **AND** |Find data containing all connected terms.|**google AND facebook**|\n| **OR**  |Find data containing any connected term.| **order OR decision**|\n| **NOT** |Exclude data.| **google NOT apple**.|\n| **“[phrase]”** |Find an exact phrase.| **\"Google Inc”** |\n| **( … )** |Parenthesis may be used to group sets of terms of connectors.| **google (facebook OR apple)**.|\n\n### All Filter Query parameters supported for this API can be found in below schema section. Schema --> ChargeDegreeQueryObject\n",
        "operationId": "getChargesDegree",
        "parameters": [
          {
            "description": "The URL encoded query you are searching for.\nThe query can be as simple as a keyword, but supports many additional options and filters.\nAll options are documented above.</a>\n",
            "examples": {
              "HTTP200-sampleListQuery": {
                "summary": "sampleListQuery",
                "value": "chargeDegreeId:\"CHDGiHoKn66p3bkcNs\""
              },
              "HTTP400-sampleInvalidInputQuery": {
                "summary": "sampleInvalidInputQuery",
                "value": "chargeDegreeIdd:\"CAGPiHoKn66p3bkcNs\""
              }
            },
            "in": "query",
            "name": "q",
            "schema": {
              "maxLength": 2000,
              "minLength": 3,
              "nullable": false,
              "type": "string"
            }
          },
          {
            "$ref": "#/components/parameters/parameters-pageParam"
          },
          {
            "$ref": "#/components/parameters/parameters-sortParam"
          },
          {
            "$ref": "#/components/parameters/parameters-orderParam"
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleListQuery": {
                    "value": {
                      "chargeDegreeArray": [
                        {
                          "chargeDegreeId": "CHDGiHoKn66p3bkcNs",
                          "createdDate": "2020-05-07T10:17:56+00:00",
                          "name": "First",
                          "object": "ChargeDegree"
                        }
                      ],
                      "nextPageAPI": null,
                      "object": "ChargeDegreeResponse",
                      "pageNumber": 1,
                      "previousPageAPI": null,
                      "totalCount": 1,
                      "totalPages": 1
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/ChargeDegreeResponse"
                }
              }
            },
            "description": "Success"
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleInvalidInputQuery": {
                    "$ref": "#/components/examples/SAMPLE_INVALID_INPUT_QUERY"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if the request is invalid."
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "INTERNAL_SERVER_ERROR": {
                    "$ref": "#/components/examples/INTERNAL_SERVER_ERROR"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if an error occurs while retrieving the data."
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "ChargeDegree Object.",
        "tags": [
          "Court Standards API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [],
      "x-api-name": "ChargeDegreeListAPI",
      "x-unicourt-tag": "CourtStandardsAPIs"
    },
    "/masterData/chargeDegree/{chargeDegreeId}": {
      "get": {
        "description": "ChargeDegree Object for the given chargeDegreeId.\n",
        "operationId": "getChargeDegree",
        "parameters": [],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleFoundResource": {
                    "value": {
                      "chargeDegreeId": "CHDGiHoKn66p3bkcNs",
                      "createdDate": "2020-05-07T10:17:56+00:00",
                      "name": "First",
                      "object": "ChargeDegree"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/ChargeDegree"
                }
              }
            },
            "description": "Success"
          },
          "404": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleNotFoundResource": {
                    "value": {
                      "code": "UN404",
                      "details": "chargeDegreeId resource you were looking for doesn't exist.",
                      "message": "RESOURCE_NOT_FOUND",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if the resource is not found."
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "INTERNAL_SERVER_ERROR": {
                    "$ref": "#/components/examples/INTERNAL_SERVER_ERROR"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if an error occurs while retrieving the data."
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "ChargeDegree Object for the given chargeDegreeId.",
        "tags": [
          "Court Standards API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [
        {
          "description": "chargeDegreeId",
          "examples": {
            "HTTP200-sampleFoundResource": {
              "summary": "sampleFoundResource",
              "value": "CHDGiHoKn66p3bkcNs"
            },
            "HTTP404-sampleNotFoundResource": {
              "summary": "sampleNotFoundResource",
              "value": "CSTPoLU7sWaGjWtkBx"
            }
          },
          "in": "path",
          "name": "chargeDegreeId",
          "required": true,
          "schema": {
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          }
        }
      ],
      "x-api-name": "ChargeDegreeByIdAPI",
      "x-unicourt-tag": "CourtStandardsAPIs"
    },
    "/masterData/chargeGroup": {
      "get": {
        "description": "Returns Charge Group Object.\n\n## Logical Operators\n| Connector | Description  | Example |\n| ------| ------|------|\n| **AND** |Find data containing all connected terms.|**google AND facebook**|\n| **OR**  |Find data containing any connected term.| **order OR decision**|\n| **NOT** |Exclude data.| **google NOT apple**.|\n| **“[phrase]”** |Find an exact phrase.| **\"Google Inc”** |\n| **( … )** |Parenthesis may be used to group sets of terms of connectors.| **google (facebook OR apple)**.|\n\n### All Filter Query parameters supported for this API can be found in below schema section. Schema --> ChargeGroupQueryObject\n",
        "operationId": "getChargeGroups",
        "parameters": [
          {
            "description": "The URL encoded query you are searching for.\nThe query can be as simple as a keyword, but supports many additional options and filters.\nAll options are documented above.</a>\n",
            "examples": {
              "HTTP200-sampleListQuery": {
                "summary": "sampleListQuery",
                "value": "chargeGroupId:\"CHRGoLU7sWaGjWtkBx\""
              },
              "HTTP400-sampleInvalidInputQuery": {
                "summary": "sampleInvalidInputQuery",
                "value": "chargeGrId:\"CHRGoLU7sWaGjWtkBx\""
              }
            },
            "in": "query",
            "name": "q",
            "schema": {
              "maxLength": 2000,
              "minLength": 3,
              "nullable": false,
              "type": "string"
            }
          },
          {
            "$ref": "#/components/parameters/parameters-pageParam"
          },
          {
            "$ref": "#/components/parameters/parameters-sortParam"
          },
          {
            "$ref": "#/components/parameters/parameters-orderParam"
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleListQuery": {
                    "value": {
                      "chargeGroupArray": [
                        {
                          "chargeGroupId": "CHGPiHoKn66p3bkcNs",
                          "createdDate": "2020-05-07T10:17:56+00:00",
                          "name": "Burglary",
                          "object": "ChargeGroup"
                        }
                      ],
                      "nextPageAPI": null,
                      "object": "ChargeGroupResponse",
                      "pageNumber": 1,
                      "previousPageAPI": null,
                      "totalCount": 1,
                      "totalPages": 1
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/ChargeGroupResponse"
                }
              }
            },
            "description": "Success"
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleInvalidInputQuery": {
                    "$ref": "#/components/examples/SAMPLE_INVALID_INPUT_QUERY"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if the request is invalid."
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "INTERNAL_SERVER_ERROR": {
                    "$ref": "#/components/examples/INTERNAL_SERVER_ERROR"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if an error occurs while retrieving the data."
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Charge Group Object.",
        "tags": [
          "Court Standards API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [],
      "x-api-name": "ChargeGroupListAPI",
      "x-unicourt-tag": "CourtStandardsAPIs"
    },
    "/masterData/chargeGroup/{chargeGroupId}": {
      "get": {
        "description": "Charge Group Object for the given chargeGroupId.\n",
        "operationId": "getChargeGroup",
        "parameters": [],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleFoundResource": {
                    "value": {
                      "chargeGroupId": "CHGPiHoKn66p3bkcNs",
                      "createdDate": "2020-05-07T10:17:56+00:00",
                      "name": "Burglary",
                      "object": "ChargeGroup"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/ChargeGroup"
                }
              }
            },
            "description": "Success"
          },
          "404": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleNotFoundResource": {
                    "value": {
                      "code": "UN404",
                      "details": "chargeGroupId resource you were looking for doesn't exist.",
                      "message": "RESOURCE_NOT_FOUND",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if the resource is not found."
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "INTERNAL_SERVER_ERROR": {
                    "$ref": "#/components/examples/INTERNAL_SERVER_ERROR"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if an error occurs while retrieving the data."
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Charge Group Object for the given chargeGroupId.",
        "tags": [
          "Court Standards API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [
        {
          "description": "chargeGroupId",
          "examples": {
            "HTTP200-sampleFoundResource": {
              "summary": "sampleFoundResource",
              "value": "CHGPiHoKn66p3bkcNs"
            },
            "HTTP404-sampleNotFoundResource": {
              "summary": "sampleNotFoundResource",
              "value": "DYPoLU7sWaGjWtkBxz"
            }
          },
          "in": "path",
          "name": "chargeGroupId",
          "required": true,
          "schema": {
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          }
        }
      ],
      "x-api-name": "ChargeGroupByIdAPI",
      "x-unicourt-tag": "CourtStandardsAPIs"
    },
    "/masterData/chargeSeverity": {
      "get": {
        "description": "Returns ChargeSeverity Object.\n\n## Logical Operators\n| Connector | Description  | Example |\n| ------| ------|------|\n| **AND** |Find data containing all connected terms.|**google AND facebook**|\n| **OR**  |Find data containing any connected term.| **order OR decision**|\n| **NOT** |Exclude data.| **google NOT apple**.|\n| **“[phrase]”** |Find an exact phrase.| **\"Google Inc”** |\n| **( … )** |Parenthesis may be used to group sets of terms of connectors.| **google (facebook OR apple)**.|\n\n### All Filter Query parameters supported for this API can be found in below schema section. Schema --> ChargeSeverityQueryObject\n",
        "operationId": "getChargesSeverity",
        "parameters": [
          {
            "description": "The URL encoded query you are searching for.\nThe query can be as simple as a keyword, but supports many additional options and filters.\nAll options are documented above.</a>\n",
            "examples": {
              "HTTP200-sampleListQuery": {
                "summary": "sampleListQuery",
                "value": "chargeSeverityId:\"CHSEiHoKn66p3bkcNs\""
              },
              "HTTP400-sampleInvalidInputQuery": {
                "summary": "sampleInvalidInputQuery",
                "value": "chargeSeverityIdd:\"CAGPiHoKn66p3bkcNs\""
              }
            },
            "in": "query",
            "name": "q",
            "schema": {
              "maxLength": 2000,
              "minLength": 3,
              "nullable": false,
              "type": "string"
            }
          },
          {
            "$ref": "#/components/parameters/parameters-pageParam"
          },
          {
            "$ref": "#/components/parameters/parameters-sortParam"
          },
          {
            "$ref": "#/components/parameters/parameters-orderParam"
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleListQuery": {
                    "value": {
                      "chargeSeverityArray": [
                        {
                          "chargeSeverityId": "CHSEiHoKn66p3bkcNs",
                          "createdDate": "2020-05-07T10:17:56+00:00",
                          "name": "Felony",
                          "object": "ChargeSeverity"
                        }
                      ],
                      "nextPageAPI": null,
                      "object": "ChargeSeverityResponse",
                      "pageNumber": 1,
                      "previousPageAPI": null,
                      "totalCount": 1,
                      "totalPages": 1
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/ChargeSeverityResponse"
                }
              }
            },
            "description": "Success"
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleInvalidInputQuery": {
                    "$ref": "#/components/examples/SAMPLE_INVALID_INPUT_QUERY"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if the request is invalid."
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "INTERNAL_SERVER_ERROR": {
                    "$ref": "#/components/examples/INTERNAL_SERVER_ERROR"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if an error occurs while retrieving the data."
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "ChargeSeverity Object.",
        "tags": [
          "Court Standards API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [],
      "x-api-name": "ChargeSeverityListAPI",
      "x-unicourt-tag": "CourtStandardsAPIs"
    },
    "/masterData/chargeSeverity/{chargeSeverityId}": {
      "get": {
        "description": "ChargeSeverity Object for the given chargeSeverityId.\n",
        "operationId": "getChargeSeverity",
        "parameters": [],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleFoundResource": {
                    "value": {
                      "chargeSeverityId": "CHSEiHoKn66p3bkcNs",
                      "createdDate": "2020-05-07T10:17:56+00:00",
                      "name": "Felony",
                      "object": "ChargeSeverity"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/ChargeSeverity"
                }
              }
            },
            "description": "Success"
          },
          "404": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleNotFoundResource": {
                    "value": {
                      "code": "UN404",
                      "details": "chargeSeverityId resource you were looking for doesn't exist.",
                      "message": "RESOURCE_NOT_FOUND",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if the resource is not found."
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "INTERNAL_SERVER_ERROR": {
                    "$ref": "#/components/examples/INTERNAL_SERVER_ERROR"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if an error occurs while retrieving the data."
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "ChargeSeverity Object for the given chargeSeverityId.",
        "tags": [
          "Court Standards API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [
        {
          "description": "chargeSeverityId",
          "examples": {
            "HTTP200-sampleFoundResource": {
              "summary": "sampleFoundResource",
              "value": "CHSEiHoKn66p3bkcNs"
            },
            "HTTP404-sampleNotFoundResource": {
              "summary": "sampleNotFoundResource",
              "value": "CSTPoLU7sWaGjWtkBx"
            }
          },
          "in": "path",
          "name": "chargeSeverityId",
          "required": true,
          "schema": {
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          }
        }
      ],
      "x-api-name": "ChargeSeverityByIdAPI",
      "x-unicourt-tag": "CourtStandardsAPIs"
    },
    "/masterData/court": {
      "get": {
        "description": "Returns the court information.\n\n## Logical Operators\n| Connector | Description  | Example |\n| ------| ------|------|\n        | **AND** |Find data containing all connected terms.|**google AND facebook**|\n| **OR**  |Find data containing any connected term.| **order OR decision**|\n| **NOT** |Exclude data.| **google NOT apple**.|\n| **“[phrase]”** |Find an exact phrase.| **\"Google Inc”** |\n| **( … )** |Parenthesis may be used to group sets of terms of connectors.| **google (facebook OR apple)**.|\n\n### All Filter Query parameters supported for this API can be found in below schema section. Schema --> CourtQueryObject\n",
        "operationId": "getCourts",
        "parameters": [
          {
            "description": "The URL encoded query you are searching for.\nThe query can be as simple as a keyword, but supports many additional options and filters.\nAll options are documented above.</a>\n",
            "examples": {
              "HTTP200-sampleListQuery": {
                "summary": "sampleListQuery",
                "value": "courtId:\"CORThSxcef8eGUSkuC\""
              },
              "HTTP400-sampleInvalidInputQuery": {
                "summary": "sampleInvalidInputQuery",
                "value": "courtId:\"CORThSxcef8eGUSkuC\" AND name:Charlotte County Court)"
              }
            },
            "in": "query",
            "name": "q",
            "schema": {
              "maxLength": 2000,
              "minLength": 3,
              "nullable": false,
              "type": "string"
            }
          },
          {
            "$ref": "#/components/parameters/parameters-pageParam"
          },
          {
            "$ref": "#/components/parameters/parameters-sortParam"
          },
          {
            "$ref": "#/components/parameters/parameters-orderParam"
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleListQuery": {
                    "value": {
                      "courtArray": [
                        {
                          "additionalLevels": null,
                          "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORThSxcef8eGUSkuC/appealCourts",
                          "container": null,
                          "containerType": null,
                          "courtId": "CORThSxcef8eGUSkuC",
                          "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORThSxcef8eGUSkuC/courtLocations",
                          "courtServiceStatusAPI": null,
                          "courtSystemId": "COSY4vuCtGQeAmdDdN",
                          "courtTypeId": "COTPm8jjc2PAydpFhq",
                          "createdDate": "2022-03-28T04:57:57+00:00",
                          "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORThSxcef8eGUSkuC/jurisdictionGeo",
                          "name": "Charlotte County Court",
                          "nameAka": "Charlotte County Court of Florida",
                          "object": "Court",
                          "system": "Florida County Courts",
                          "type": "State"
                        }
                      ],
                      "nextPageAPI": null,
                      "object": "CourtResponse",
                      "pageNumber": 1,
                      "previousPageAPI": null,
                      "totalCount": 1,
                      "totalPages": 1
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/CourtResponse"
                }
              }
            },
            "description": "Success"
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleInvalidInputQuery": {
                    "$ref": "#/components/examples/SAMPLE_INVALID_INPUT_QUERY"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if the request is invalid."
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "INTERNAL_SERVER_ERROR": {
                    "$ref": "#/components/examples/INTERNAL_SERVER_ERROR"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if an error occurs while retrieving the data."
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Court Objects.",
        "tags": [
          "Court Standards API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [],
      "x-api-name": "CourtListAPI",
      "x-unicourt-tag": "CourtStandardsAPIs"
    },
    "/masterData/court/{courtId}": {
      "get": {
        "description": "Returns court information for given courtId.\n",
        "operationId": "getCourt",
        "parameters": [],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleFoundResource": {
                    "value": {
                      "additionalLevels": null,
                      "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORThSxcef8eGUSkuC/appealCourts",
                      "container": null,
                      "containerType": null,
                      "courtId": "CORThSxcef8eGUSkuC",
                      "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORThSxcef8eGUSkuC/courtLocations",
                      "courtServiceStatusAPI": null,
                      "courtSystemId": "COSY4vuCtGQeAmdDdN",
                      "courtTypeId": "COTPm8jjc2PAydpFhq",
                      "createdDate": "2022-03-28T04:57:57+00:00",
                      "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORThSxcef8eGUSkuC/jurisdictionGeo",
                      "name": "Charlotte County Court",
                      "nameAka": "Charlotte County Court of Florida",
                      "object": "Court",
                      "system": "Florida County Courts",
                      "type": "State"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Court"
                }
              }
            },
            "description": "Success"
          },
          "404": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleNotFoundResource": {
                    "value": {
                      "code": "UN404",
                      "details": "courtId resource you were looking for doesn't exist.",
                      "message": "RESOURCE_NOT_FOUND",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if the resource is not found."
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "INTERNAL_SERVER_ERROR": {
                    "$ref": "#/components/examples/INTERNAL_SERVER_ERROR"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if an error occurs while retrieving the data."
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Court Object for given courtId.",
        "tags": [
          "Court Standards API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [
        {
          "description": "courtId",
          "examples": {
            "HTTP200-sampleFoundResource": {
              "summary": "sampleFoundResource",
              "value": "CORThSxcef8eGUSkuC"
            },
            "HTTP404-sampleNotFoundResource": {
              "summary": "sampleNotFoundResource",
              "value": "CORThSxcef8eGUSkqw"
            }
          },
          "in": "path",
          "name": "courtId",
          "required": true,
          "schema": {
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          }
        }
      ],
      "x-api-name": "CourtByIdAPI",
      "x-unicourt-tag": "CourtStandardsAPIs"
    },
    "/masterData/court/{courtId}/appealCourts": {
      "get": {
        "description": "Returns Appeal Court Objects for given courtId.\n",
        "operationId": "getAppealCourtsForCourt",
        "parameters": [
          {
            "description": "Page number.\n- minimum: 1\n- maximum: 100\n",
            "examples": {
              "HTTP200-sampleFoundResource": {
                "summary": "sampleFoundResource",
                "value": 1
              },
              "HTTP400-sampleInvalidInputQuery": {
                "summary": "sampleInvalidInputQuery",
                "value": -1
              },
              "HTTP404-sampleNotFoundResource": {
                "summary": "sampleNotFoundResource",
                "value": 1
              }
            },
            "in": "query",
            "name": "pageNumber",
            "schema": {
              "example": 1,
              "maximum": 100,
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "Sort field.",
            "examples": {
              "HTTP200-sampleFoundResource": {
                "summary": "sampleFoundResource",
                "value": "name"
              },
              "HTTP400-sampleInvalidInputQuery": {
                "summary": "sampleInvalidInputQuery",
                "value": "name"
              },
              "HTTP404-sampleNotFoundResource": {
                "summary": "sampleNotFoundResource",
                "value": "name"
              }
            },
            "in": "query",
            "name": "sort",
            "schema": {
              "default": "name",
              "enum": [
                "name"
              ],
              "example": "name",
              "type": "string"
            }
          },
          {
            "description": "Sort order.",
            "examples": {
              "HTTP200-sampleFoundResource": {
                "summary": "sampleFoundResource",
                "value": "asc"
              },
              "HTTP400-sampleInvalidInputQuery": {
                "summary": "sampleInvalidInputQuery",
                "value": "asc"
              },
              "HTTP404-sampleNotFoundResource": {
                "summary": "sampleNotFoundResource",
                "value": "asc"
              }
            },
            "in": "query",
            "name": "order",
            "schema": {
              "default": "asc",
              "enum": [
                "asc",
                "desc"
              ],
              "example": "asc",
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleFoundResource": {
                    "value": {
                      "courtArray": [
                        {
                          "additionalLevels": null,
                          "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTCPT5Su5cuaNzGJ/appealCourts",
                          "container": "2",
                          "containerType": "District",
                          "courtId": "CORTCPT5Su5cuaNzGJ",
                          "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTCPT5Su5cuaNzGJ/courtLocations",
                          "courtServiceStatusAPI": null,
                          "courtSystemId": "COSYfxcrESDUwb78GM",
                          "courtTypeId": "COTPm8jjc2PAydpFhq",
                          "createdDate": "2022-03-28T04:55:44+00:00",
                          "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTCPT5Su5cuaNzGJ/jurisdictionGeo",
                          "name": "Second District Court of Appeal",
                          "nameAka": "Second District Court of Appeal of Florida",
                          "object": "Court",
                          "system": "Florida Courts of Appeal",
                          "type": "State"
                        }
                      ],
                      "nextPageAPI": null,
                      "object": "CourtResponse",
                      "pageNumber": 1,
                      "previousPageAPI": null,
                      "totalCount": 2,
                      "totalPages": 1
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/CourtResponse"
                }
              }
            },
            "description": "Success"
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleInvalidInputQuery": {
                    "$ref": "#/components/examples/SAMPLE_INVALID_INPUT_QUERY"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if the request is invalid."
          },
          "404": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleNotFoundResource": {
                    "value": {
                      "code": "UN404",
                      "details": "courtId resource you were looking for doesn't exist.",
                      "message": "RESOURCE_NOT_FOUND",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if the resource is not found."
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "INTERNAL_SERVER_ERROR": {
                    "$ref": "#/components/examples/INTERNAL_SERVER_ERROR"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if an error occurs while retrieving the data."
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Appeal Court Objects for given courtId.",
        "tags": [
          "Court Standards API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [
        {
          "description": "courtId",
          "examples": {
            "HTTP200-sampleFoundResource": {
              "summary": "sampleFoundResource",
              "value": "CORThSxcef8eGUSkuC"
            },
            "HTTP400-sampleInvalidInputQuery": {
              "summary": "sampleInvalidInputQuery",
              "value": "CORThSxcef8eGUSkuC"
            },
            "HTTP404-sampleNotFoundResource": {
              "summary": "sampleNotFoundResource",
              "value": "CORThSxcef8eGUSkqw"
            }
          },
          "in": "path",
          "name": "courtId",
          "required": true,
          "schema": {
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          }
        }
      ],
      "x-api-name": "AppealCourtsForCourtByIdAPI",
      "x-unicourt-tag": "CourtStandardsAPIs"
    },
    "/masterData/court/{courtId}/courtLocations": {
      "get": {
        "description": "Contains the Court Location Object for given courtId.\n",
        "operationId": "getCourtLocationsForCourt",
        "parameters": [
          {
            "description": "Page number.\n- minimum: 1\n- maximum: 100\n",
            "examples": {
              "HTTP200-sampleFoundResource": {
                "summary": "sampleFoundResource",
                "value": 1
              },
              "HTTP400-sampleInvalidInputQuery": {
                "summary": "sampleInvalidInputQuery",
                "value": -1
              },
              "HTTP404-sampleNotFoundResource": {
                "summary": "sampleNotFoundResource",
                "value": 1
              }
            },
            "in": "query",
            "name": "pageNumber",
            "schema": {
              "example": 1,
              "maximum": 100,
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "Sort field.",
            "examples": {
              "HTTP200-sampleFoundResource": {
                "summary": "sampleFoundResource",
                "value": "name"
              },
              "HTTP400-sampleInvalidInputQuery": {
                "summary": "sampleInvalidInputQuery",
                "value": "name"
              },
              "HTTP404-sampleNotFoundResource": {
                "summary": "sampleNotFoundResource",
                "value": "name"
              }
            },
            "in": "query",
            "name": "sort",
            "schema": {
              "default": "name",
              "enum": [
                "name"
              ],
              "example": "name",
              "type": "string"
            }
          },
          {
            "description": "Sort order.",
            "examples": {
              "HTTP200-sampleFoundResource": {
                "summary": "sampleFoundResource",
                "value": "asc"
              },
              "HTTP400-sampleInvalidInputQuery": {
                "summary": "sampleInvalidInputQuery",
                "value": "asc"
              },
              "HTTP404-sampleNotFoundResource": {
                "summary": "sampleNotFoundResource",
                "value": "asc"
              }
            },
            "in": "query",
            "name": "order",
            "schema": {
              "default": "asc",
              "enum": [
                "asc",
                "desc"
              ],
              "example": "asc",
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleFoundResource": {
                    "value": {
                      "courtLocationArray": [
                        {
                          "city": "Punta Gorda",
                          "courtLocationId": "COLO9g3fhYM4bmxveA",
                          "courtServiceStatusAPI": null,
                          "courtsForCourtLocationAPI": "https://enterpriseapi.unicourt.com/masterData/courtLocation/COLO9g3fhYM4bmxveA/courts",
                          "createdDate": "2022-03-28T04:57:57+00:00",
                          "name": "Charlotte County Courthouse",
                          "object": "CourtLocation",
                          "stateName": "Florida",
                          "streetAddress1": "350 East Marion Avenue",
                          "streetAddress2": null
                        }
                      ],
                      "nextPageAPI": null,
                      "object": "CourtLocationResponse",
                      "pageNumber": 1,
                      "previousPageAPI": null,
                      "totalCount": 1,
                      "totalPages": 1
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/CourtLocationResponse"
                }
              }
            },
            "description": "Success"
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleInvalidInputQuery": {
                    "$ref": "#/components/examples/SAMPLE_INVALID_INPUT_QUERY"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if the request is invalid."
          },
          "404": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleNotFoundResource": {
                    "value": {
                      "code": "UN404",
                      "details": "courtId resource you were looking for doesn't exist.",
                      "message": "RESOURCE_NOT_FOUND",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if the resource is not found."
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "INTERNAL_SERVER_ERROR": {
                    "$ref": "#/components/examples/INTERNAL_SERVER_ERROR"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if an error occurs while retrieving the data."
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Associated Court Location for given courtId.",
        "tags": [
          "Court Standards API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [
        {
          "description": "courtId",
          "examples": {
            "HTTP200-sampleFoundResource": {
              "summary": "sampleFoundResource",
              "value": "CORThSxcef8eGUSkuC"
            },
            "HTTP400-sampleInvalidInputQuery": {
              "summary": "sampleInvalidInputQuery",
              "value": "CORThSxcef8eGUSkuC"
            },
            "HTTP404-sampleNotFoundResource": {
              "summary": "sampleNotFoundResource",
              "value": "COTThSxcef8eGUSkqw"
            }
          },
          "in": "path",
          "name": "courtId",
          "required": true,
          "schema": {
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          }
        }
      ],
      "x-api-name": "CourtLocationsForCourtByIdAPI",
      "x-unicourt-tag": "CourtStandardsAPIs"
    },
    "/masterData/court/{courtId}/jurisdictionGeo": {
      "get": {
        "description": "Returns Jurisdiction Geo Objects for given courtId.\n",
        "operationId": "getJurisdictionGeoForCourt",
        "parameters": [
          {
            "description": "Page number.\n- minimum: 1\n- maximum: 100\n",
            "examples": {
              "HTTP200-sampleFoundResource": {
                "summary": "sampleFoundResource",
                "value": 1
              },
              "HTTP400-sampleInvalidInputQuery": {
                "summary": "sampleInvalidInputQuery",
                "value": -1
              },
              "HTTP404-sampleNotFoundResource": {
                "summary": "sampleNotFoundResource",
                "value": 1
              }
            },
            "in": "query",
            "name": "pageNumber",
            "schema": {
              "example": 1,
              "maximum": 100,
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "Sort field.",
            "examples": {
              "HTTP200-sampleFoundResource": {
                "summary": "sampleFoundResource",
                "value": "state"
              },
              "HTTP400-sampleInvalidInputQuery": {
                "summary": "sampleInvalidInputQuery",
                "value": "state"
              },
              "HTTP404-sampleNotFoundResource": {
                "summary": "sampleNotFoundResource",
                "value": "state"
              }
            },
            "in": "query",
            "name": "sort",
            "schema": {
              "default": "state",
              "enum": [
                "state"
              ],
              "example": "state",
              "type": "string"
            }
          },
          {
            "description": "Sort order.",
            "examples": {
              "HTTP200-sampleFoundResource": {
                "summary": "sampleFoundResource",
                "value": "asc"
              },
              "HTTP400-sampleInvalidInputQuery": {
                "summary": "sampleInvalidInputQuery",
                "value": "asc"
              },
              "HTTP404-sampleNotFoundResource": {
                "summary": "sampleNotFoundResource",
                "value": "asc"
              }
            },
            "in": "query",
            "name": "order",
            "schema": {
              "default": "asc",
              "enum": [
                "asc",
                "desc"
              ],
              "example": "asc",
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleFoundResource": {
                    "value": {
                      "jurisdictionGeoArray": [
                        {
                          "city": null,
                          "country": "United States of America",
                          "county": "Charlotte",
                          "courtsForJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/masterData/jurisdictionGeo/JUGO8s7HvM84dLvVMu/courts?pageNumber=1",
                          "createdDate": "2022-03-28T04:57:57+00:00",
                          "fipsCode": "12015",
                          "jurisdictionGeoId": "JUGO8s7HvM84dLvVMu",
                          "object": "JurisdictionGeo",
                          "state": "Florida",
                          "zipCodeArray": []
                        }
                      ],
                      "nextPageAPI": null,
                      "object": "JurisdictionGeoResponse",
                      "pageNumber": 1,
                      "previousPageAPI": null,
                      "totalCount": 1,
                      "totalPages": 1
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/JurisdictionGeoResponse"
                }
              }
            },
            "description": "Success"
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleInvalidInputQuery": {
                    "$ref": "#/components/examples/SAMPLE_INVALID_INPUT_QUERY"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if the request is invalid."
          },
          "404": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleNotFoundResource": {
                    "value": {
                      "code": "UN404",
                      "details": "courtId resource you were looking for doesn't exist.",
                      "message": "RESOURCE_NOT_FOUND",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if the resource is not found."
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "INTERNAL_SERVER_ERROR": {
                    "$ref": "#/components/examples/INTERNAL_SERVER_ERROR"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if an error occurs while retrieving the data."
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Jurisdiction Geo Objects for given courtId.",
        "tags": [
          "Court Standards API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [
        {
          "description": "courtId",
          "examples": {
            "HTTP200-sampleFoundResource": {
              "summary": "sampleFoundResource",
              "value": "CORThSxcef8eGUSkuC"
            },
            "HTTP400-sampleInvalidInputQuery": {
              "summary": "sampleInvalidInputQuery",
              "value": "CORThSxcef8eGUSkuC"
            },
            "HTTP404-sampleNotFoundResource": {
              "summary": "sampleNotFoundResource",
              "value": "CORThSxcef8eGUSkqw"
            }
          },
          "in": "path",
          "name": "courtId",
          "required": true,
          "schema": {
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          }
        }
      ],
      "x-api-name": "JurisdictionGeoForCourtByIdAPI",
      "x-unicourt-tag": "CourtStandardsAPIs"
    },
    "/masterData/courtLocation": {
      "get": {
        "description": "Returns the Courthouse Object.\n\n## Logical Operators\n| Connector | Description  | Example |\n| ------| ------|------|\n| **AND** |Find data containing all connected terms.|**google AND facebook**|\n| **OR**  |Find data containing any connected term.| **order OR decision**|\n| **NOT** |Exclude data.| **google NOT apple**.|\n| **“[phrase]”** |Find an exact phrase.| **\"Google Inc”** |\n| **( … )** |Parenthesis may be used to group sets of terms of connectors.| **google (facebook OR apple)**.|\n\n### All Filter Query parameters supported for this API can be found in below schema section. Schema --> CourtLocationQueryObject\n",
        "operationId": "getCourtLocations",
        "parameters": [
          {
            "description": "The URL encoded query you are searching for.\nThe query can be as simple as a keyword, but supports many additional options and filters.\nAll options are documented above.</a>\n",
            "examples": {
              "HTTP200-sampleListQuery": {
                "summary": "sampleListQuery",
                "value": "courtLocationId:\"COLO9g3fhYM4bmxveA\""
              },
              "HTTP400-sampleInvalidInputQuery": {
                "summary": "sampleInvalidInputQuery",
                "value": "courtLocationd:\"COLO9g3fhYM4bmxveA\""
              }
            },
            "in": "query",
            "name": "q",
            "schema": {
              "maxLength": 2000,
              "minLength": 3,
              "nullable": false,
              "type": "string"
            }
          },
          {
            "$ref": "#/components/parameters/parameters-pageParam"
          },
          {
            "$ref": "#/components/parameters/parameters-sortParam"
          },
          {
            "$ref": "#/components/parameters/parameters-orderParam"
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleListQuery": {
                    "value": {
                      "courtLocationArray": [
                        {
                          "city": "Punta Gorda",
                          "courtLocationId": "COLO9g3fhYM4bmxveA",
                          "courtServiceStatusAPI": null,
                          "courtsForCourtLocationAPI": "https://enterpriseapi.unicourt.com/masterData/courtLocation/COLO9g3fhYM4bmxveA/courts",
                          "createdDate": "2022-03-28T04:57:57+00:00",
                          "name": "Charlotte County Courthouse",
                          "object": "CourtLocation",
                          "stateName": "Florida",
                          "streetAddress1": "350 East Marion Avenue",
                          "streetAddress2": null
                        }
                      ],
                      "nextPageAPI": null,
                      "object": "CourtLocationResponse",
                      "pageNumber": 1,
                      "previousPageAPI": null,
                      "totalCount": 1,
                      "totalPages": 1
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/CourtLocationResponse"
                }
              }
            },
            "description": "Success"
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleInvalidInputQuery": {
                    "$ref": "#/components/examples/SAMPLE_INVALID_INPUT_QUERY"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if the request is invalid."
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "INTERNAL_SERVER_ERROR": {
                    "$ref": "#/components/examples/INTERNAL_SERVER_ERROR"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if an error occurs while retrieving the data."
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Courthouse Object.",
        "tags": [
          "Court Standards API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [],
      "x-api-name": "CourtLocationListAPI",
      "x-unicourt-tag": "CourtStandardsAPIs"
    },
    "/masterData/courtLocation/{courtLocationId}": {
      "get": {
        "description": "Contains the Court Location Object.\n",
        "operationId": "getCourtLocation",
        "parameters": [],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleFoundResource": {
                    "value": {
                      "city": "Los Angeles",
                      "courtLocationId": "COLOV75AKgqMqnfVhM",
                      "courtServiceStatusAPI": null,
                      "courtsForCourtLocationAPI": "https://enterpriseapi.unicourt.com/masterData/courtLocation/COLOV75AKgqMqnfVhM/courts",
                      "createdDate": "2022-03-28T04:55:34+00:00",
                      "name": "Airport Courthouse",
                      "object": "CourtLocation",
                      "stateName": "California",
                      "streetAddress1": "11701 South La Cienega Blvd",
                      "streetAddress2": null
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/CourtLocation"
                }
              }
            },
            "description": "Success"
          },
          "404": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleNotFoundResource": {
                    "value": {
                      "code": "UN404",
                      "details": "courtLocationId resource you were looking for doesn't exist.",
                      "message": "RESOURCE_NOT_FOUND",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if the resource is not found."
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "INTERNAL_SERVER_ERROR": {
                    "$ref": "#/components/examples/INTERNAL_SERVER_ERROR"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if an error occurs while retrieving the data."
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Courthouse Object for given Court Location Id.",
        "tags": [
          "Court Standards API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [
        {
          "description": "courtLocationId",
          "examples": {
            "HTTP200-sampleFoundResource": {
              "summary": "sampleFoundResource",
              "value": "COLOV75AKgqMqnfVhM"
            },
            "HTTP404-sampleNotFoundResource": {
              "summary": "sampleNotFoundResource",
              "value": "LOLOV75AKgqMqnfVhM"
            }
          },
          "in": "path",
          "name": "courtLocationId",
          "required": true,
          "schema": {
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          }
        }
      ],
      "x-api-name": "CourtLocationByIdAPI",
      "x-unicourt-tag": "CourtStandardsAPIs"
    },
    "/masterData/courtLocation/{courtLocationId}/courts": {
      "get": {
        "description": "Returns Associated Court for given Court Location.\n",
        "operationId": "getCourtsForCourtLocation",
        "parameters": [
          {
            "description": "Page number.\n- minimum: 1\n- maximum: 100\n",
            "examples": {
              "HTTP200-sampleFoundResource": {
                "summary": "sampleFoundResource",
                "value": 1
              },
              "HTTP400-sampleInvalidInputQuery": {
                "summary": "sampleInvalidInputQuery",
                "value": -1
              },
              "HTTP404-sampleNotFoundResource": {
                "summary": "sampleNotFoundResource",
                "value": 1
              }
            },
            "in": "query",
            "name": "pageNumber",
            "schema": {
              "example": 1,
              "maximum": 100,
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "Sort field.",
            "examples": {
              "HTTP200-sampleFoundResource": {
                "summary": "sampleFoundResource",
                "value": "name"
              },
              "HTTP400-sampleInvalidInputQuery": {
                "summary": "sampleInvalidInputQuery",
                "value": "name"
              },
              "HTTP404-sampleNotFoundResource": {
                "summary": "sampleNotFoundResource",
                "value": "name"
              }
            },
            "in": "query",
            "name": "sort",
            "schema": {
              "default": "name",
              "enum": [
                "name"
              ],
              "example": "name",
              "type": "string"
            }
          },
          {
            "description": "Sort order.",
            "examples": {
              "HTTP200-sampleFoundResource": {
                "summary": "sampleFoundResource",
                "value": "asc"
              },
              "HTTP400-sampleInvalidInputQuery": {
                "summary": "sampleInvalidInputQuery",
                "value": "asc"
              },
              "HTTP404-sampleNotFoundResource": {
                "summary": "sampleNotFoundResource",
                "value": "asc"
              }
            },
            "in": "query",
            "name": "order",
            "schema": {
              "default": "asc",
              "enum": [
                "asc",
                "desc"
              ],
              "example": "asc",
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleFoundResource": {
                    "value": {
                      "courtArray": [
                        {
                          "additionalLevels": null,
                          "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/appealCourts",
                          "container": null,
                          "containerType": null,
                          "courtId": "CORTV4vCEaKrhystBz",
                          "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/courtLocations",
                          "courtServiceStatusAPI": null,
                          "courtSystemId": "COSYACHBdMewtaG5DY",
                          "courtTypeId": "COTPm8jjc2PAydpFhq",
                          "createdDate": "2022-03-28T04:55:33+00:00",
                          "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/jurisdictionGeo",
                          "name": "Los Angeles County Superior Court",
                          "nameAka": "Los Angeles County Superior Court of California",
                          "object": "Court",
                          "system": "California Superior Courts",
                          "type": "State"
                        }
                      ],
                      "nextPageAPI": null,
                      "object": "CourtResponse",
                      "pageNumber": 1,
                      "previousPageAPI": null,
                      "totalCount": 1,
                      "totalPages": 1
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/CourtResponse"
                }
              }
            },
            "description": "Success"
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleInvalidInputQuery": {
                    "$ref": "#/components/examples/SAMPLE_INVALID_INPUT_QUERY"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if the request is invalid."
          },
          "404": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleNotFoundResource": {
                    "value": {
                      "code": "UN404",
                      "details": "courtLocationId resource you were looking for doesn't exist.",
                      "message": "RESOURCE_NOT_FOUND",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if the resource is not found."
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "INTERNAL_SERVER_ERROR": {
                    "$ref": "#/components/examples/INTERNAL_SERVER_ERROR"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if an error occurs while retrieving the data."
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Associated Court for given Court Location.",
        "tags": [
          "Court Standards API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [
        {
          "description": "courtLocationId",
          "examples": {
            "HTTP200-sampleFoundResource": {
              "summary": "sampleFoundResource",
              "value": "COLOV75AKgqMqnfVhM"
            },
            "HTTP400-sampleInvalidInputQuery": {
              "summary": "sampleInvalidInputQuery",
              "value": "COLOV75AKgqMqnfVhM"
            },
            "HTTP404-sampleNotFoundResource": {
              "summary": "sampleNotFoundResource",
              "value": "LOLOV75AKgqMqnfVhM"
            }
          },
          "in": "path",
          "name": "courtLocationId",
          "required": true,
          "schema": {
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          }
        }
      ],
      "x-api-name": "CourtsForCourtLocationByIdAPI",
      "x-unicourt-tag": "CourtStandardsAPIs"
    },
    "/masterData/courtServiceStatus": {
      "get": {
        "description": "Returns Court Service Status Object.\n\n## Logical Operators\n| Connector | Description  | Example |\n| ------| ------|------|\n| **AND** |Find data containing all connected terms.|**google AND facebook**|\n| **OR**  |Find data containing any connected term.| **order OR decision**|\n| **NOT** |Exclude data.| **google NOT apple**.|\n| **“[phrase]”** |Find an exact phrase.| **\"Google Inc”** |\n| **( … )** |Parenthesis may be used to group sets of terms of connectors.| **google (facebook OR apple)**.|\n\n### All Filter Query parameters supported for this API can be found in below schema section. Schema --> CourtServiceStatusQueryObject\n",
        "operationId": "getCourtsServiceStatus",
        "parameters": [
          {
            "description": "The URL encoded query you are searching for.\nThe query can be as simple as a keyword, but supports many additional options and filters.\nAll options are documented above.</a>\n",
            "examples": {
              "HTTP200-sampleListQuery": {
                "summary": "sampleListQuery",
                "value": "courtServiceStatusId: \"CTSSf45fd1bd792e97\""
              },
              "HTTP400-sampleInvalidInputQuery": {
                "summary": "sampleInvalidInputQuery",
                "value": "courtServiceStatusIId: \"CRSCV4vCEaKrhystBz\""
              }
            },
            "in": "query",
            "name": "q",
            "schema": {
              "maxLength": 2000,
              "minLength": 3,
              "nullable": false,
              "type": "string"
            }
          },
          {
            "$ref": "#/components/parameters/parameters-pageParam"
          },
          {
            "$ref": "#/components/parameters/parameters-sortParam"
          },
          {
            "$ref": "#/components/parameters/parameters-orderParam"
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleListQuery": {
                    "value": {
                      "courtServiceStatusArray": [
                        {
                          "caseClassIdArray": [
                            "CSCL5gVt3ajESiCq6c",
                            "CSCL6U8qZ7ecuPisiq",
                            "CSCLNjbKTN7Yfo2wdb"
                          ],
                          "caseDocumentOrderServiceStatus": {
                            "object": "ServiceStatus",
                            "serviceDetails": "notAcceptingDocOrders",
                            "serviceStatusDownDetails": {
                              "details": null,
                              "eta": null,
                              "object": "ServiceStatusDownDetails",
                              "reason": "underMaintenance"
                            },
                            "serviceUp": false
                          },
                          "caseTrackServiceStatus": {
                            "object": "ServiceStatus",
                            "serviceDetails": "acceptingCaseTrack",
                            "serviceStatusDownDetails": null,
                            "serviceUp": true
                          },
                          "caseUpdateServiceStatus": {
                            "object": "ServiceStatus",
                            "serviceDetails": "acceptingCaseUpdates",
                            "serviceStatusDownDetails": null,
                            "serviceUp": true
                          },
                          "courtIdArray": [
                            "CORTV4aEeXrmSPoLiX",
                            "CORTVLdvVHX9TRtjaG",
                            "CORTc6yA9LdueEeq6s",
                            "CORTgrvCyVcfQvx7fZ",
                            "CORThhL89U8NwCp6Hi",
                            "CORTiZhKezviB4476p"
                          ],
                          "courtLocationIdArray": [
                            "COLO2q2ypwMmLHioSP",
                            "COLOAXm4reiUk5BMzu",
                            "COLODVmYbdxMMtgCMD",
                            "COLOVuCx3nmaHVfDkg",
                            "COLObFyxCXi2Vz9gfk",
                            "COLOns6m5hVkmSMPGk"
                          ],
                          "courtServiceStatusId": "CTSSf45fd1bd792e97",
                          "object": "CourtServiceStatus",
                          "serviceStatusAsOn": "2023-02-22T12:52:25+00:00"
                        }
                      ],
                      "nextPageAPI": null,
                      "object": "CourtServiceStatusResponse",
                      "pageNumber": 1,
                      "previousPageAPI": null,
                      "totalCount": 1,
                      "totalPages": 1
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/CourtServiceStatusResponse"
                }
              }
            },
            "description": "Success"
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleInvalidInputQuery": {
                    "$ref": "#/components/examples/SAMPLE_INVALID_INPUT_QUERY"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if the request is invalid."
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "INTERNAL_SERVER_ERROR": {
                    "$ref": "#/components/examples/INTERNAL_SERVER_ERROR"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if an error occurs while retrieving the data."
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Court Service Status Object.",
        "tags": [
          "Court Standards API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [],
      "x-api-name": "CourtServiceStatusListAPI",
      "x-unicourt-tag": "CourtStandardsAPIs"
    },
    "/masterData/courtServiceStatus/{courtServiceStatusId}": {
      "get": {
        "description": "Court Service Status Object for the given courtServiceStatusId.\n",
        "operationId": "getCourtServiceStatus",
        "parameters": [],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleFoundResource": {
                    "value": {
                      "caseClassIdArray": [
                        "CSCL5gVt3ajESiCq6c",
                        "CSCL6U8qZ7ecuPisiq",
                        "CSCLNjbKTN7Yfo2wdb"
                      ],
                      "caseDocumentOrderServiceStatus": {
                        "object": "ServiceStatus",
                        "serviceDetails": "notAcceptingDocOrders",
                        "serviceStatusDownDetails": {
                          "details": null,
                          "eta": null,
                          "object": "ServiceStatusDownDetails",
                          "reason": "underMaintenance"
                        },
                        "serviceUp": false
                      },
                      "caseTrackServiceStatus": {
                        "object": "ServiceStatus",
                        "serviceDetails": "acceptingCaseUpdates",
                        "serviceStatusDownDetails": null,
                        "serviceUp": true
                      },
                      "caseUpdateServiceStatus": {
                        "object": "ServiceStatus",
                        "serviceDetails": "acceptingCaseUpdates",
                        "serviceStatusDownDetails": null,
                        "serviceUp": true
                      },
                      "courtIdArray": [
                        "CORTV4aEeXrmSPoLiX",
                        "CORTVLdvVHX9TRtjaG",
                        "CORTc6yA9LdueEeq6s",
                        "CORTgrvCyVcfQvx7fZ",
                        "CORThhL89U8NwCp6Hi",
                        "CORTiZhKezviB4476p"
                      ],
                      "courtLocationIdArray": [
                        "COLO2q2ypwMmLHioSP",
                        "COLOAXm4reiUk5BMzu",
                        "COLODVmYbdxMMtgCMD",
                        "COLOVuCx3nmaHVfDkg",
                        "COLObFyxCXi2Vz9gfk",
                        "COLOns6m5hVkmSMPGk"
                      ],
                      "courtServiceStatusId": "CTSSf45fd1bd792e97",
                      "object": "CourtServiceStatus",
                      "serviceStatusAsOn": "2023-02-22T12:52:25+00:00"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/CourtServiceStatus"
                }
              }
            },
            "description": "Success"
          },
          "404": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleNotFoundResource": {
                    "value": {
                      "code": "UN404",
                      "details": "courtServiceStatusId resource you were looking for doesn't exist.",
                      "message": "RESOURCE_NOT_FOUND",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if the resource is not found."
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "INTERNAL_SERVER_ERROR": {
                    "$ref": "#/components/examples/INTERNAL_SERVER_ERROR"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if an error occurs while retrieving the data."
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Court Service Status Object for the given courtServiceStatusId.",
        "tags": [
          "Court Standards API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [
        {
          "description": "courtServiceStatusId",
          "examples": {
            "HTTP200-sampleFoundResource": {
              "summary": "sampleFoundResource",
              "value": "CTSSf45fd1bd792e97"
            },
            "HTTP404-sampleNotFoundResource": {
              "summary": "sampleNotFoundResource",
              "value": "CTSCV4vCEaKrhystqS"
            }
          },
          "in": "path",
          "name": "courtServiceStatusId",
          "required": true,
          "schema": {
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          }
        }
      ],
      "x-api-name": "CourtServiceStatusByIdAPI",
      "x-unicourt-tag": "CourtStandardsAPIs"
    },
    "/masterData/courtSystem": {
      "get": {
        "description": "Returns the Court System Object.\n\n## Logical Operators\n| Connector | Description  | Example |\n| ------| ------|------|\n        | **AND** |Find data containing all connected terms.|**google AND facebook**|\n| **OR**  |Find data containing any connected term.| **order OR decision**|\n| **NOT** |Exclude data.| **google NOT apple**.|\n| **“[phrase]”** |Find an exact phrase.| **\"Google Inc”** |\n| **( … )** |Parenthesis may be used to group sets of terms of connectors.| **google (facebook OR apple)**.|\n\n### All Filter Query parameters supported for this API can be found in below schema section. Schema --> CourtSystemQueryObject\n",
        "operationId": "getCourtSystems",
        "parameters": [
          {
            "description": "The URL encoded query you are searching for.\nThe query can be as simple as a keyword, but supports many additional options and filters.\nAll options are documented above.</a>\n",
            "examples": {
              "HTTP200-sampleListQuery": {
                "summary": "sampleListQuery",
                "value": "courtSystemId:\"COSY4vuCtGQeAmdDdN\""
              },
              "HTTP400-sampleInvalidInputQuery": {
                "summary": "sampleInvalidInputQuery",
                "value": "courtSysmId:\"COSY4vuCtGQeAmdDdN\""
              }
            },
            "in": "query",
            "name": "q",
            "schema": {
              "maxLength": 2000,
              "minLength": 3,
              "nullable": false,
              "type": "string"
            }
          },
          {
            "$ref": "#/components/parameters/parameters-pageParam"
          },
          {
            "$ref": "#/components/parameters/parameters-sortParam"
          },
          {
            "$ref": "#/components/parameters/parameters-orderParam"
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleListQuery": {
                    "value": {
                      "courtSystemArray": [
                        {
                          "courtSystemId": "COSY4vuCtGQeAmdDdN",
                          "courtType": "State",
                          "courtTypeId": "COTPm8jjc2PAydpFhq",
                          "createdDate": "2022-03-28T04:55:51+00:00",
                          "name": "Florida County Courts",
                          "object": "CourtSystem"
                        }
                      ],
                      "nextPageAPI": null,
                      "object": "CourtSystemResponse",
                      "pageNumber": 1,
                      "previousPageAPI": null,
                      "totalCount": 1,
                      "totalPages": 1
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/CourtSystemResponse"
                }
              }
            },
            "description": "Success"
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleInvalidInputQuery": {
                    "$ref": "#/components/examples/SAMPLE_INVALID_INPUT_QUERY"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if the request is invalid."
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "INTERNAL_SERVER_ERROR": {
                    "$ref": "#/components/examples/INTERNAL_SERVER_ERROR"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if an error occurs while retrieving the data."
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Court System Objects.",
        "tags": [
          "Court Standards API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [],
      "x-api-name": "CourtSystemListAPI",
      "x-unicourt-tag": "CourtStandardsAPIs"
    },
    "/masterData/courtSystem/{courtSystemId}": {
      "get": {
        "description": "Contains the Court System object.\n",
        "operationId": "getCourtSystem",
        "parameters": [],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleFoundResource": {
                    "value": {
                      "courtSystemId": "COSY4vuCtGQeAmdDdN",
                      "courtType": "State",
                      "courtTypeId": "COTPm8jjc2PAydpFhq",
                      "createdDate": "2022-03-28T04:55:51+00:00",
                      "name": "Florida County Courts",
                      "object": "CourtSystem"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/CourtSystem"
                }
              }
            },
            "description": "Success"
          },
          "404": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleNotFoundResource": {
                    "value": {
                      "code": "UN404",
                      "details": "courtSystemId resource you were looking for doesn't exist.",
                      "message": "RESOURCE_NOT_FOUND",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if the resource is not found."
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "INTERNAL_SERVER_ERROR": {
                    "$ref": "#/components/examples/INTERNAL_SERVER_ERROR"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if an error occurs while retrieving the data."
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Court System Object for given courtSystemId.",
        "tags": [
          "Court Standards API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [
        {
          "description": "courtSystemId",
          "examples": {
            "HTTP200-sampleFoundResource": {
              "summary": "sampleFoundResource",
              "value": "COSY4vuCtGQeAmdDdN"
            },
            "HTTP404-sampleNotFoundResource": {
              "summary": "sampleNotFoundResource",
              "value": "COSY4vuCtGQeAmdDqe"
            }
          },
          "in": "path",
          "name": "courtSystemId",
          "required": true,
          "schema": {
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          }
        }
      ],
      "x-api-name": "CourtSystemByIdAPI",
      "x-unicourt-tag": "CourtStandardsAPIs"
    },
    "/masterData/courtType": {
      "get": {
        "description": "Returns the Court Type Object.\n\n## Logical Operators\n| Connector | Description  | Example |\n| ------| ------|------|\n        | **AND** |Find data containing all connected terms.|**google AND facebook**|\n| **OR**  |Find data containing any connected term.| **order OR decision**|\n| **NOT** |Exclude data.| **google NOT apple**.|\n| **“[phrase]”** |Find an exact phrase.| **\"Google Inc”** |\n| **( … )** |Parenthesis may be used to group sets of terms of connectors.| **google (facebook OR apple)**.|\n\n### All Filter Query parameters supported for this API can be found in below schema section. Schema --> CourtTypeQueryObject\n",
        "operationId": "getCourtTypes",
        "parameters": [
          {
            "description": "The URL encoded query you are searching for.\nThe query can be as simple as a keyword, but supports many additional options and filters.\nAll options are documented above.</a>\n",
            "examples": {
              "HTTP200-sampleListQuery": {
                "summary": "sampleListQuery",
                "value": "courtTypeId:\"COTPm8jjc2PAydpFhq\""
              },
              "HTTP400-sampleInvalidInputQuery": {
                "summary": "sampleInvalidInputQuery",
                "value": "courtTypId:\"COTPm8jjc2PAydpFhq\""
              }
            },
            "in": "query",
            "name": "q",
            "schema": {
              "maxLength": 2000,
              "minLength": 3,
              "nullable": false,
              "type": "string"
            }
          },
          {
            "$ref": "#/components/parameters/parameters-pageParam"
          },
          {
            "$ref": "#/components/parameters/parameters-sortParam"
          },
          {
            "$ref": "#/components/parameters/parameters-orderParam"
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleListQuery": {
                    "value": {
                      "courtTypeArray": [
                        {
                          "courtTypeId": "COTPm8jjc2PAydpFhq",
                          "createdDate": "2022-03-28T04:49:02+00:00",
                          "name": "State",
                          "object": "CourtType"
                        }
                      ],
                      "nextPageAPI": null,
                      "object": "CourtTypeResponse",
                      "pageNumber": 1,
                      "previousPageAPI": null,
                      "totalCount": 1,
                      "totalPages": 1
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/CourtTypeResponse"
                }
              }
            },
            "description": "Success"
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleInvalidInputQuery": {
                    "$ref": "#/components/examples/SAMPLE_INVALID_INPUT_QUERY"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if the request is invalid."
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "INTERNAL_SERVER_ERROR": {
                    "$ref": "#/components/examples/INTERNAL_SERVER_ERROR"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if an error occurs while retrieving the data."
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Court Type Objects.",
        "tags": [
          "Court Standards API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [],
      "x-api-name": "CourtTypeListAPI",
      "x-unicourt-tag": "CourtStandardsAPIs"
    },
    "/masterData/courtType/{courtTypeId}": {
      "get": {
        "description": "Contains the Court Type Object.\n",
        "operationId": "getCourtType",
        "parameters": [],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleFoundResource": {
                    "value": {
                      "courtTypeId": "COTPm8jjc2PAydpFhq",
                      "createdDate": "2022-03-28T04:49:02+00:00",
                      "name": "State",
                      "object": "CourtType"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/CourtType"
                }
              }
            },
            "description": "Success"
          },
          "404": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleNotFoundResource": {
                    "value": {
                      "code": "UN404",
                      "details": "courtTypeId resource you were looking for doesn't exist.",
                      "message": "RESOURCE_NOT_FOUND",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if the resource is not found."
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "INTERNAL_SERVER_ERROR": {
                    "$ref": "#/components/examples/INTERNAL_SERVER_ERROR"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if an error occurs while retrieving the data."
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Court Type Object for given courtTypeId.",
        "tags": [
          "Court Standards API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [
        {
          "description": "courtTypeId",
          "examples": {
            "HTTP200-sampleFoundResource": {
              "summary": "sampleFoundResource",
              "value": "COTPm8jjc2PAydpFhq"
            },
            "HTTP404-sampleNotFoundResource": {
              "summary": "sampleNotFoundResource",
              "value": "COTPm8jjc2PAydpFee"
            }
          },
          "in": "path",
          "name": "courtTypeId",
          "required": true,
          "schema": {
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          }
        }
      ],
      "x-api-name": "CourtTypeByIdAPI",
      "x-unicourt-tag": "CourtStandardsAPIs"
    },
    "/masterData/judgeType": {
      "get": {
        "description": "Returns Judge Type Object.\n\n## Logical Operators\n| Connector | Description  | Example |\n| ------| ------|------|\n| **AND** |Find data containing all connected terms.|**google AND facebook**|\n| **OR**  |Find data containing any connected term.| **order OR decision**|\n| **NOT** |Exclude data.| **google NOT apple**.|\n| **“[phrase]”** |Find an exact phrase.| **\"Google Inc”** |\n| **( … )** |Parenthesis may be used to group sets of terms of connectors.| **google (facebook OR apple)**.|\n\n### All Filter Query parameters supported for this API can be found in below schema section. Schema --> JudgeTypeQueryObject\n",
        "operationId": "getJudgeTypes",
        "parameters": [
          {
            "description": "The URL encoded query you are searching for.\nThe query can be as simple as a keyword, but supports many additional options and filters.\nAll options are documented above.</a>\n",
            "examples": {
              "HTTP200-sampleListQuery": {
                "summary": "sampleListQuery",
                "value": "judgeTypeId: \"JGTPkwrfzkDJUvxpN9\""
              },
              "HTTP400-sampleInvalidInputQuery": {
                "summary": "sampleInvalidInputQuery",
                "value": "judgeTypId: \"JGTPkwrfzkDJUvxpN9\""
              }
            },
            "in": "query",
            "name": "q",
            "schema": {
              "maxLength": 2000,
              "minLength": 3,
              "nullable": false,
              "type": "string"
            }
          },
          {
            "$ref": "#/components/parameters/parameters-pageParam"
          },
          {
            "$ref": "#/components/parameters/parameters-sortParam"
          },
          {
            "$ref": "#/components/parameters/parameters-orderParam"
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleListQuery": {
                    "value": {
                      "judgeTypeArray": [
                        {
                          "createdDate": "2022-03-28T04:59:06+00:00",
                          "judgeTypeId": "JGTPkwrfzkDJUvxpN9",
                          "name": "Judge",
                          "object": "JudgeType"
                        }
                      ],
                      "nextPageAPI": null,
                      "object": "JudgeTypeResponse",
                      "pageNumber": 1,
                      "previousPageAPI": null,
                      "totalCount": 1,
                      "totalPages": 1
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/JudgeTypeResponse"
                }
              }
            },
            "description": "Success"
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleInvalidInputQuery": {
                    "$ref": "#/components/examples/SAMPLE_INVALID_INPUT_QUERY"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if the request is invalid."
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "INTERNAL_SERVER_ERROR": {
                    "$ref": "#/components/examples/INTERNAL_SERVER_ERROR"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if an error occurs while retrieving the data."
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Judge Type Object.",
        "tags": [
          "Court Standards API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [],
      "x-api-name": "JudgeTypeListAPI",
      "x-unicourt-tag": "CourtStandardsAPIs"
    },
    "/masterData/judgeType/{judgeTypeId}": {
      "get": {
        "description": "Judge Type Object for the given judgeTypeId.\n",
        "operationId": "getJudgeType",
        "parameters": [],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleFoundResource": {
                    "value": {
                      "createdDate": "2022-03-28T04:59:06+00:00",
                      "judgeTypeId": "JGTPkwrfzkDJUvxpN9",
                      "name": "Judge",
                      "object": "JudgeType"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/JudgeType"
                }
              }
            },
            "description": "Success"
          },
          "404": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleNotFoundResource": {
                    "value": {
                      "code": "UN404",
                      "details": "judgeTypeId: JGTZkwrfzkDJUvxpN9 resource you were looking for doesn't exist.",
                      "message": "RESOURCE_NOT_FOUND",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if the resource is not found."
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "INTERNAL_SERVER_ERROR": {
                    "$ref": "#/components/examples/INTERNAL_SERVER_ERROR"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if an error occurs while retrieving the data."
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Judge Type Object for the given judgeTypeId.",
        "tags": [
          "Court Standards API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [
        {
          "description": "judgeTypeId",
          "examples": {
            "HTTP200-sampleFoundResource": {
              "summary": "sampleFoundResource",
              "value": "JGTPkwrfzkDJUvxpN9"
            },
            "HTTP404-sampleNotFoundResource": {
              "summary": "sampleNotFoundResource",
              "value": "JGTZkwrfzkDJUvxpN9"
            }
          },
          "in": "path",
          "name": "judgeTypeId",
          "required": true,
          "schema": {
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          }
        }
      ],
      "x-api-name": "JudgeTypeByIdAPI",
      "x-unicourt-tag": "CourtStandardsAPIs"
    },
    "/masterData/jurisdictionGeo": {
      "get": {
        "description": "Returns the Jurisdiction Geo Object.\n\n## Logical Operators\n| Connector | Description  | Example |\n| ------| ------|------|\n| **AND** |Find data containing all connected terms.|**google AND facebook**|\n| **OR**  |Find data containing any connected term.| **order OR decision**|\n| **NOT** |Exclude data.| **google NOT apple**.|\n| **“[phrase]”** |Find an exact phrase.| **\"Google Inc”** |\n| **( … )** |Parenthesis may be used to group sets of terms of connectors.| **google (facebook OR apple)**.|\n\n### All Filter Query parameters supported for this API can be found in below schema section. Schema --> JurisdictionGeoQueryObject\n",
        "operationId": "getJurisdictionsGeo",
        "parameters": [
          {
            "description": "The URL encoded query you are searching for.\nThe query can be as simple as a keyword, but supports many additional options and filters.\nAll options are documented above.</a>\n",
            "examples": {
              "HTTP200-sampleListQuery": {
                "summary": "sampleListQuery",
                "value": "jurisdictionGeoId:\"JUGO8s7HvM84dLvVMu\""
              },
              "HTTP400-sampleInvalidInputQuery": {
                "summary": "sampleInvalidInputQuery",
                "value": "jurisdictionGed:\"JUGO8s7HvM84dLvVMu\""
              }
            },
            "in": "query",
            "name": "q",
            "schema": {
              "maxLength": 2000,
              "minLength": 3,
              "nullable": false,
              "type": "string"
            }
          },
          {
            "$ref": "#/components/parameters/parameters-pageParam"
          },
          {
            "description": "Sort field.",
            "examples": {
              "HTTP200-sampleListQuery": {
                "summary": "sampleListQuery",
                "value": "state"
              },
              "HTTP400-sampleInvalidInputQuery": {
                "summary": "sampleInvalidInputQuery",
                "value": "state"
              }
            },
            "in": "query",
            "name": "sort",
            "schema": {
              "default": "state",
              "enum": [
                "state"
              ],
              "example": "state",
              "type": "string"
            }
          },
          {
            "$ref": "#/components/parameters/parameters-orderParam"
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleListQuery": {
                    "value": {
                      "jurisdictionGeoArray": [
                        {
                          "city": null,
                          "country": "United States of America",
                          "county": "Charlotte",
                          "courtsForJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/masterData/jurisdictionGeo/JUGO8s7HvM84dLvVMu/courts?pageNumber=1",
                          "createdDate": "2022-03-28T04:57:57+00:00",
                          "fipsCode": "12015",
                          "jurisdictionGeoId": "JUGO8s7HvM84dLvVMu",
                          "object": "JurisdictionGeo",
                          "state": "Florida",
                          "zipCodeArray": []
                        }
                      ],
                      "nextPageAPI": null,
                      "object": "JurisdictionGeoResponse",
                      "pageNumber": 1,
                      "previousPageAPI": null,
                      "totalCount": 1,
                      "totalPages": 1
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/JurisdictionGeoResponse"
                }
              }
            },
            "description": "Success"
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleInvalidInputQuery": {
                    "$ref": "#/components/examples/SAMPLE_INVALID_INPUT_QUERY"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if the request is invalid."
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "INTERNAL_SERVER_ERROR": {
                    "$ref": "#/components/examples/INTERNAL_SERVER_ERROR"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if an error occurs while retrieving the data."
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Jurisdiction Geo Object.",
        "tags": [
          "Court Standards API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [],
      "x-api-name": "JurisdictionGeoListAPI",
      "x-unicourt-tag": "CourtStandardsAPIs"
    },
    "/masterData/jurisdictionGeo/{jurisdictionGeoId}": {
      "get": {
        "description": "Returns the Jurisdiction Geo Object for given Jurisdiction Geo Id.\n",
        "operationId": "getJurisdictionGeo",
        "parameters": [],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleFoundResource": {
                    "value": {
                      "city": null,
                      "country": "United States of America",
                      "county": "Charlotte",
                      "courtsForJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/masterData/jurisdictionGeo/JUGO8s7HvM84dLvVMu/courts?pageNumber=1",
                      "createdDate": "2022-03-28T04:57:57+00:00",
                      "fipsCode": "12015",
                      "jurisdictionGeoId": "JUGO8s7HvM84dLvVMu",
                      "object": "JurisdictionGeo",
                      "state": "Florida",
                      "zipCodeArray": []
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/JurisdictionGeo"
                }
              }
            },
            "description": "Success"
          },
          "404": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleNotFoundResource": {
                    "value": {
                      "code": "UN404",
                      "details": "jurisdictionGeoId resource you were looking for doesn't exist.",
                      "message": "RESOURCE_NOT_FOUND",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if the resource is not found."
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "INTERNAL_SERVER_ERROR": {
                    "$ref": "#/components/examples/INTERNAL_SERVER_ERROR"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if an error occurs while retrieving the data."
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Jurisdiction Geo Object for given Jurisdiction Geo Id.",
        "tags": [
          "Court Standards API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [
        {
          "description": "jurisdictionGeoId",
          "examples": {
            "HTTP200-sampleFoundResource": {
              "summary": "sampleFoundResource",
              "value": "JUGO8s7HvM84dLvVMu"
            },
            "HTTP404-sampleNotFoundResource": {
              "summary": "sampleNotFoundResource",
              "value": "JUGO8s7HvM84dLvVpp"
            }
          },
          "in": "path",
          "name": "jurisdictionGeoId",
          "required": true,
          "schema": {
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          }
        }
      ],
      "x-api-name": "JurisdictionGeoByIdAPI",
      "x-unicourt-tag": "CourtStandardsAPIs"
    },
    "/masterData/jurisdictionGeo/{jurisdictionGeoId}/courts": {
      "get": {
        "description": "Returns Associated Court for given Jurisdiction Geo.\n",
        "operationId": "getCourtsForJurisdictionGeo",
        "parameters": [
          {
            "description": "Page number.\n- minimum: 1\n- maximum: 100\n",
            "examples": {
              "HTTP200-sampleFoundResource": {
                "summary": "sampleFoundResource",
                "value": 1
              },
              "HTTP400-sampleInvalidInputQuery": {
                "summary": "sampleInvalidInputQuery",
                "value": -1
              },
              "HTTP404-sampleNotFoundResource": {
                "summary": "sampleNotFoundResource",
                "value": 1
              }
            },
            "in": "query",
            "name": "pageNumber",
            "schema": {
              "example": 1,
              "maximum": 100,
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "Sort field.",
            "examples": {
              "HTTP200-sampleFoundResource": {
                "summary": "sampleFoundResource",
                "value": "name"
              },
              "HTTP400-sampleInvalidInputQuery": {
                "summary": "sampleInvalidInputQuery",
                "value": "name"
              },
              "HTTP404-sampleNotFoundResource": {
                "summary": "sampleNotFoundResource",
                "value": "name"
              }
            },
            "in": "query",
            "name": "sort",
            "schema": {
              "default": "name",
              "enum": [
                "name"
              ],
              "example": "name",
              "type": "string"
            }
          },
          {
            "description": "Sort order.",
            "examples": {
              "HTTP200-sampleFoundResource": {
                "summary": "sampleFoundResource",
                "value": "asc"
              },
              "HTTP400-sampleInvalidInputQuery": {
                "summary": "sampleInvalidInputQuery",
                "value": "asc"
              },
              "HTTP404-sampleNotFoundResource": {
                "summary": "sampleNotFoundResource",
                "value": "asc"
              }
            },
            "in": "query",
            "name": "order",
            "schema": {
              "default": "asc",
              "enum": [
                "asc",
                "desc"
              ],
              "example": "asc",
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleFoundResource": {
                    "value": {
                      "courtArray": [
                        {
                          "additionalLevels": null,
                          "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORThSxcef8eGUSkuC/appealCourts",
                          "container": null,
                          "containerType": null,
                          "courtId": "CORThSxcef8eGUSkuC",
                          "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORThSxcef8eGUSkuC/courtLocations",
                          "courtServiceStatusAPI": null,
                          "courtSystemId": "COSY4vuCtGQeAmdDdN",
                          "courtTypeId": "COTPm8jjc2PAydpFhq",
                          "createdDate": "2022-03-28T04:57:57+00:00",
                          "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORThSxcef8eGUSkuC/jurisdictionGeo",
                          "name": "Charlotte County Court",
                          "nameAka": "Charlotte County Court of Florida",
                          "object": "Court",
                          "system": "Florida County Courts",
                          "type": "State"
                        }
                      ],
                      "nextPageAPI": null,
                      "object": "CourtResponse",
                      "pageNumber": 1,
                      "previousPageAPI": null,
                      "totalCount": 2,
                      "totalPages": 1
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/CourtResponse"
                }
              }
            },
            "description": "Success"
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleInvalidInputQuery": {
                    "$ref": "#/components/examples/SAMPLE_INVALID_INPUT_QUERY"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if the request is invalid."
          },
          "404": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleNotFoundResource": {
                    "value": {
                      "code": "UN404",
                      "details": "jurisdictionGeoId resource you were looking for doesn't exist.",
                      "message": "RESOURCE_NOT_FOUND",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if the resource is not found."
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "INTERNAL_SERVER_ERROR": {
                    "$ref": "#/components/examples/INTERNAL_SERVER_ERROR"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if an error occurs while retrieving the data."
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Associated Court for given Jurisdiction Geo.",
        "tags": [
          "Court Standards API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [
        {
          "description": "jurisdictionGeoId",
          "examples": {
            "HTTP200-sampleFoundResource": {
              "summary": "sampleFoundResource",
              "value": "JUGO8s7HvM84dLvVMu"
            },
            "HTTP400-sampleInvalidInputQuery": {
              "summary": "sampleInvalidInputQuery",
              "value": "JUGO8s7HvM84dLvVMu"
            },
            "HTTP404-sampleNotFoundResource": {
              "summary": "sampleNotFoundResource",
              "value": "JUGO8s7HvM84dLvVmm"
            }
          },
          "in": "path",
          "name": "jurisdictionGeoId",
          "required": true,
          "schema": {
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          }
        }
      ],
      "x-api-name": "CourtsForJurisdictionGeoByIdAPI",
      "x-unicourt-tag": "CourtStandardsAPIs"
    },
    "/masterData/partyRole": {
      "get": {
        "description": "Returns Party Role Object.\n\n## Logical Operators\n| Connector | Description  | Example |\n| ------| ------|------|\n| **AND** |Find data containing all connected terms.|**google AND facebook**|\n| **OR**  |Find data containing any connected term.| **order OR decision**|\n| **NOT** |Exclude data.| **google NOT apple**.|\n| **“[phrase]”** |Find an exact phrase.| **\"Google Inc”** |\n| **( … )** |Parenthesis may be used to group sets of terms of connectors.| **google (facebook OR apple)**.|\n\n### All Filter Query parameters supported for this API can be found in below schema section. Schema --> PartyRoleQueryObject\n",
        "operationId": "getPartyRoles",
        "parameters": [
          {
            "description": "The URL encoded query you are searching for.\nThe query can be as simple as a keyword, but supports many additional options and filters.\nAll options are documented above.</a>\n",
            "examples": {
              "HTTP200-sampleListQuery": {
                "summary": "sampleListQuery",
                "value": "partyRoleId: \"PTYRVRgMKueGmhnxRN\""
              },
              "HTTP400-sampleInvalidInputQuery": {
                "summary": "sampleInvalidInputQuery",
                "value": "partyRolId: \"PTYRVRgMKueGmhnxRN\""
              }
            },
            "in": "query",
            "name": "q",
            "schema": {
              "maxLength": 2000,
              "minLength": 3,
              "nullable": false,
              "type": "string"
            }
          },
          {
            "$ref": "#/components/parameters/parameters-pageParam"
          },
          {
            "$ref": "#/components/parameters/parameters-sortParam"
          },
          {
            "$ref": "#/components/parameters/parameters-orderParam"
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleListQuery": {
                    "value": {
                      "nextPageAPI": null,
                      "object": "PartyRoleResponse",
                      "pageNumber": 1,
                      "partyRoleArray": [
                        {
                          "createdDate": "2022-03-28T04:58:56+00:00",
                          "description": null,
                          "name": "Administrator",
                          "object": "PartyRole",
                          "partyRoleGroup": "Participant",
                          "partyRoleGroupId": "PTYGZPUbQam7EQqkoN",
                          "partyRoleId": "PTYRVRgMKueGmhnxRN"
                        }
                      ],
                      "previousPageAPI": null,
                      "totalCount": 1,
                      "totalPages": 1
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/PartyRoleResponse"
                }
              }
            },
            "description": "Success"
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleInvalidInputQuery": {
                    "$ref": "#/components/examples/SAMPLE_INVALID_INPUT_QUERY"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if the request is invalid."
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "INTERNAL_SERVER_ERROR": {
                    "$ref": "#/components/examples/INTERNAL_SERVER_ERROR"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if an error occurs while retrieving the data."
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Party Role Object.",
        "tags": [
          "Court Standards API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [],
      "x-api-name": "PartyRoleListAPI",
      "x-unicourt-tag": "CourtStandardsAPIs"
    },
    "/masterData/partyRole/{partyRoleId}": {
      "get": {
        "description": "Returns Party Role Object for given Party Role Id.\n",
        "operationId": "getPartyRole",
        "parameters": [],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleFoundResource": {
                    "value": {
                      "createdDate": "2022-03-28T04:58:56+00:00",
                      "description": null,
                      "name": "Administrator",
                      "object": "PartyRole",
                      "partyRoleGroup": "Participant",
                      "partyRoleGroupId": "PTYGZPUbQam7EQqkoN",
                      "partyRoleId": "PTYRVRgMKueGmhnxRN"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/PartyRole"
                }
              }
            },
            "description": "Success"
          },
          "404": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleNotFoundResource": {
                    "value": {
                      "code": "UN404",
                      "details": "partyRoleId resource you were looking for doesn't exist.",
                      "message": "RESOURCE_NOT_FOUND",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if the resource is not found."
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "INTERNAL_SERVER_ERROR": {
                    "$ref": "#/components/examples/INTERNAL_SERVER_ERROR"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if an error occurs while retrieving the data."
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Party Role Object.",
        "tags": [
          "Court Standards API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [
        {
          "description": "partyRoleId",
          "examples": {
            "HTTP200-sampleFoundResource": {
              "summary": "samplePartyRoleIdQuery",
              "value": "PTYRVRgMKueGmhnxRN"
            },
            "HTTP404-sampleNotFoundResource": {
              "summary": "samplePartyRoleIdNotFoundQuery",
              "value": "MTYRVRgMKueGGxRsde"
            }
          },
          "in": "path",
          "name": "partyRoleId",
          "required": true,
          "schema": {
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          }
        }
      ],
      "x-api-name": "PartyRoleByIdAPI",
      "x-unicourt-tag": "CourtStandardsAPIs"
    },
    "/masterData/partyRoleGroup": {
      "get": {
        "description": "Returns Party Role Group Object.\n\n## Logical Operators\n| Connector | Description  | Example |\n| ------| ------|------|\n| **AND** |Find data containing all connected terms.|**google AND facebook**|\n| **OR**  |Find data containing any connected term.| **order OR decision**|\n| **NOT** |Exclude data.| **google NOT apple**.|\n| **“[phrase]”** |Find an exact phrase.| **\"Google Inc”** |\n| **( … )** |Parenthesis may be used to group sets of terms of connectors.| **google (facebook OR apple)**.|\n\n### All Filter Query parameters supported for this API can be found in below schema section. Schema --> PartyRoleGroupQueryObject\n",
        "operationId": "getPartyRoleGroups",
        "parameters": [
          {
            "description": "The URL encoded query you are searching for.\nThe query can be as simple as a keyword, but supports many additional options and filters.\nAll options are documented above.</a>\n",
            "examples": {
              "HTTP200-sampleListQuery": {
                "summary": "sampleListQuery",
                "value": "partyRoleGroupId: \"PTYGBnjxbx6tKNfVEP\""
              },
              "HTTP400-sampleInvalidInputQuery": {
                "summary": "sampleInvalidInputQuery",
                "value": "partyRoleGroId: \"PTYGBnjxbx6tKNfVEP\""
              }
            },
            "in": "query",
            "name": "q",
            "schema": {
              "maxLength": 2000,
              "minLength": 3,
              "nullable": false,
              "type": "string"
            }
          },
          {
            "$ref": "#/components/parameters/parameters-pageParam"
          },
          {
            "$ref": "#/components/parameters/parameters-sortParam"
          },
          {
            "$ref": "#/components/parameters/parameters-orderParam"
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleListQuery": {
                    "value": {
                      "nextPageAPI": null,
                      "object": "PartyRoleGroupResponse",
                      "pageNumber": 1,
                      "partyRoleGroupArray": [
                        {
                          "createdDate": "2022-03-28T04:58:56+00:00",
                          "description": null,
                          "name": "Party Offensive",
                          "object": "PartyRoleGroup",
                          "partyRoleGroupId": "PTYGBnjxbx6tKNfVEP"
                        }
                      ],
                      "previousPageAPI": null,
                      "totalCount": 1,
                      "totalPages": 1
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/PartyRoleGroupResponse"
                }
              }
            },
            "description": "Success"
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleInvalidInputQuery": {
                    "$ref": "#/components/examples/SAMPLE_INVALID_INPUT_QUERY"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if the request is invalid."
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "INTERNAL_SERVER_ERROR": {
                    "$ref": "#/components/examples/INTERNAL_SERVER_ERROR"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if an error occurs while retrieving the data."
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Party Role Group Object.",
        "tags": [
          "Court Standards API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [],
      "x-api-name": "PartyRoleGroupListAPI",
      "x-unicourt-tag": "CourtStandardsAPIs"
    },
    "/masterData/partyRoleGroup/{partyRoleGroupId}": {
      "get": {
        "description": "Returns Party Role Group Object for given Party Role Group Id.\n",
        "operationId": "getPartyRoleGroup",
        "parameters": [],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleFoundResource": {
                    "value": {
                      "createdDate": "2022-03-28T04:58:56+00:00",
                      "description": null,
                      "name": "Party Offensive",
                      "object": "PartyRoleGroup",
                      "partyRoleGroupId": "PTYGBnjxbx6tKNfVEP"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/PartyRoleGroup"
                }
              }
            },
            "description": "Success"
          },
          "404": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleNotFoundResource": {
                    "value": {
                      "code": "UN404",
                      "details": "partyRoleGroupId resource you were looking for doesn't exist.",
                      "message": "RESOURCE_NOT_FOUND",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if the resource is not found."
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "INTERNAL_SERVER_ERROR": {
                    "$ref": "#/components/examples/INTERNAL_SERVER_ERROR"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if an error occurs while retrieving the data."
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Party Role Group Object.",
        "tags": [
          "Court Standards API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [
        {
          "description": "partyRoleGroupId",
          "examples": {
            "HTTP200-sampleFoundResource": {
              "summary": "sampleFoundResource",
              "value": "PTYGBnjxbx6tKNfVEP"
            },
            "HTTP404-sampleNotFoundResource": {
              "summary": "sampleNotFoundResource",
              "value": "PTYGBnjxbx6tKaaQVE"
            }
          },
          "in": "path",
          "name": "partyRoleGroupId",
          "required": true,
          "schema": {
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          }
        }
      ],
      "x-api-name": "PartyRoleGroupByIdAPI",
      "x-unicourt-tag": "CourtStandardsAPIs"
    },
    "/normAttorney/{normAttorneyId}": {
      "get": {
        "description": "The Norm Attorney API allows you to look up Attorney Details by normAttorneyId.",
        "operationId": "getNormAttorneyById",
        "parameters": [],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleAnalyticsQuery": {
                    "value": {
                      "attorneyAnalyticsAPI": {
                        "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYs4P6kDBkhKL8CF/associatedNormJudges?pageNumber=1",
                        "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYs4P6kDBkhKL8CF/associatedNormLawFirms?pageNumber=1",
                        "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYs4P6kDBkhKL8CF/associatedNormParties?pageNumber=1",
                        "caseCountAnalyticsByOpposingNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYs4P6kDBkhKL8CF/caseCountAnalyticsByOpposingNormAttorney?pageNumber=1",
                        "caseCountAnalyticsByOpposingNormLawFirmAPI": null,
                        "caseCountAnalyticsByOpposingNormPartyAPI": null,
                        "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYs4P6kDBkhKL8CF",
                        "object": "AttorneyAnalyticsAPI"
                      },
                      "barRecordArray": [
                        {
                          "admittedDate": "1980-10-21T00:00:00+00:00",
                          "barNumber": "101800",
                          "barSourceData": {
                            "administrativeActionsArray": [],
                            "admissionType": null,
                            "advancedDegreeArray": [],
                            "appellateCourtDistrict": null,
                            "appellateDivisionDepartment": null,
                            "attorneyGroup": null,
                            "authorized": null,
                            "barLawFirm": "MONTALBANO LAW LLC",
                            "barServiceClass": null,
                            "barStatusArray": [],
                            "bio": null,
                            "boardCertificationsArray": [],
                            "boardDistrict": null,
                            "circuit": null,
                            "clientsRepresentedArray": [],
                            "comments": null,
                            "committeesArray": [],
                            "courtHistoryArray": [],
                            "courtOfAdmissions": null,
                            "courtServiceEmail": null,
                            "disciplinaryHistoryArray": [],
                            "disciplineSummariesArray": [],
                            "dismissalsArray": [],
                            "district": null,
                            "employmentHistoryArray": [],
                            "expirationDate": null,
                            "feesOptionsArray": [],
                            "firmSize": null,
                            "firmWebsite": null,
                            "firstAdmittedDate": null,
                            "firstAdmittedYear": null,
                            "homeCounty": null,
                            "inGoodStanding": null,
                            "insurance": null,
                            "involvementsArray": [],
                            "judicialDistrict": null,
                            "jurisType": "A",
                            "languagesArray": [],
                            "lastRenewalDate": null,
                            "lawSchoolArray": [],
                            "legalSpecialityArray": [],
                            "licenseType": null,
                            "name": {
                              "firstName": "JOHN",
                              "lastName": "MONTALBANO",
                              "middleName": "N",
                              "name": "JOHN N MONTALBANO",
                              "prefix": null,
                              "suffix": null
                            },
                            "nextRegistration": null,
                            "nextRenewalDate": null,
                            "object": "BarSourceData",
                            "openActionStatusArray": [],
                            "otherJurisdictionArray": [],
                            "otherNameArray": [],
                            "parish": null,
                            "pendingProceedingArray": [],
                            "position": null,
                            "practiceAreaArray": [],
                            "practiceLocationArray": [],
                            "privateLawPractice": null,
                            "profileLastCertified": null,
                            "publicHearingArray": [],
                            "reasonForInactivation": null,
                            "relatedCasesArray": [],
                            "sectionsArray": [],
                            "servicesArray": [],
                            "sourceInfo": null,
                            "statewideGrievanceCommitteeHistoryArray": [],
                            "status": "ACTIVE",
                            "statusDate": null,
                            "statusHint": null,
                            "statusHistoryArray": [],
                            "tenYearDisciplineArray": [],
                            "undergraduateSchool": null,
                            "yearsOfPractice": null
                          },
                          "barSourceType": "state_bar",
                          "contact": {
                            "addressArray": [
                              {
                                "city": "WEST HARTFORD",
                                "countryCode": "US",
                                "countryName": "UNITED STATES OF AMERICA",
                                "firstFetchDate": "2019-10-14T00:00:00+00:00",
                                "isVisible": false,
                                "lastFetchDate": "2021-04-29T01:46:07+00:00",
                                "latitude": null,
                                "longitude": null,
                                "object": "Address",
                                "stateCode": "CT",
                                "stateName": "CONNECTICUT",
                                "streetAddress1": "81 SOUTH MAIN STREET",
                                "streetAddress2": "SUITE 1-A",
                                "zip": "06107",
                                "zip4": null
                              },
                              {
                                "city": "WEST HARTFORD",
                                "countryCode": "US",
                                "countryName": "UNITED STATES OF AMERICA",
                                "firstFetchDate": "2023-02-08T07:24:53+00:00",
                                "isVisible": true,
                                "lastFetchDate": "2023-02-08T07:24:53+00:00",
                                "latitude": null,
                                "longitude": null,
                                "object": "Address",
                                "stateCode": "CT",
                                "stateName": "CONNECTICUT",
                                "streetAddress1": "81 SOUTH MAIN STREET",
                                "streetAddress2": "SUITE 1",
                                "zip": "06107",
                                "zip4": null
                              }
                            ],
                            "emailArray": [],
                            "object": "Contact",
                            "phoneNumberArray": [
                              {
                                "firstFetchDate": "2019-10-14T00:00:00+00:00",
                                "isVisible": true,
                                "lastFetchDate": "2023-02-08T07:24:53+00:00",
                                "object": "Phone",
                                "phoneNumber": "(860) 519-5400",
                                "phoneType": "PHONE"
                              }
                            ]
                          },
                          "firstFetchDate": "2019-10-14T00:00:00+00:00",
                          "inactivationDate": null,
                          "lastFetchDate": "2023-02-08T07:24:53+00:00",
                          "lastFetchDateWithUpdates": "2023-02-08T07:24:53+00:00",
                          "object": "BarRecord",
                          "stateCode": "CT",
                          "status": "Active"
                        }
                      ],
                      "caseAnalyticsAPI": {
                        "caseCountAnalyticsByAreaOfLawAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByAreaOfLaw?q=normAttorneyId:NATYs4P6kDBkhKL8CF&pageNumber=1",
                        "caseCountAnalyticsByCaseClassAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByCaseClass?q=normAttorneyId:NATYs4P6kDBkhKL8CF&pageNumber=1",
                        "caseCountAnalyticsByCaseTypeAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByCaseType?q=normAttorneyId:NATYs4P6kDBkhKL8CF&pageNumber=1",
                        "caseCountAnalyticsByCaseTypeGroupAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByCaseTypeGroup?q=normAttorneyId:NATYs4P6kDBkhKL8CF&pageNumber=1",
                        "caseCountAnalyticsByCourtAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByCourt?q=normAttorneyId:NATYs4P6kDBkhKL8CF&pageNumber=1",
                        "caseCountAnalyticsByCourtLocationAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByCourtLocation?q=normAttorneyId:NATYs4P6kDBkhKL8CF&pageNumber=1",
                        "caseCountAnalyticsByCourtSystemAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByCourtSystem?q=normAttorneyId:NATYs4P6kDBkhKL8CF&pageNumber=1",
                        "caseCountAnalyticsByCourtTypeAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByCourtType?q=normAttorneyId:NATYs4P6kDBkhKL8CF&pageNumber=1",
                        "caseCountAnalyticsByJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByJurisdictionGeo?q=normAttorneyId:NATYs4P6kDBkhKL8CF&pageNumber=1",
                        "caseCountAnalyticsByPartyRoleAPI": null,
                        "caseCountAnalyticsByPartyRoleGroupAPI": null,
                        "object": "CaseAnalyticsAPI",
                        "totalCases": 1
                      },
                      "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCevLxhaevGgY3DR",
                      "firstName": "JOHN",
                      "hasAssociatedPublicData": true,
                      "lastName": "MONTALBANO",
                      "middleName": "N",
                      "name": "JOHN N MONTALBANO",
                      "normAttorneyId": "NATYs4P6kDBkhKL8CF",
                      "object": "NormAttorney",
                      "similarNormAttorneyArray": [
                        {
                          "barRecordPreviewArray": [
                            {
                              "barNumber": "352028",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "MA"
                            }
                          ],
                          "name": "JOHN N MONTALBANO",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYrdWgA75Z6TjzGb",
                          "normAttorneyId": "NATYrdWgA75Z6TjzGb",
                          "normAttorneySimilarityScore": 0.16,
                          "object": "SimilarNormAttorney"
                        }
                      ]
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/NormAttorney"
                }
              }
            },
            "description": "OK"
          },
          "404": {
            "content": {
              "application/json": {
                "examples": {
                  "sample404AnalyticsQuery": {
                    "value": {
                      "code": "UN404",
                      "details": "Normalised Attorney Not Found",
                      "message": "RESOURCE_NOT_FOUND",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Not Found"
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "example-1": {
                    "value": {
                      "code": "UN500",
                      "details": "Has encountered a situation which needs to be handled.",
                      "message": "INTERNAL_SERVER_ERROR",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Internal Server Error"
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Norm Attorney Details.",
        "tags": [
          "Attorney Analytics API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [
        {
          "description": "Norm ID of Attorney. \n  - minimum: 18\n  - maximum: 18\n",
          "examples": {
            "HTTP200-sampleAnalyticsQuery": {
              "summary": "sampleAnalyticsQuery",
              "value": "NATYs4P6kDBkhKL8CF"
            },
            "HTTP404-sample404AnalyticsQuery": {
              "summary": "sample404AnalyticsQuery",
              "value": "NATYY29p7857UoyJJ1"
            }
          },
          "in": "path",
          "name": "normAttorneyId",
          "required": true,
          "schema": {
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          }
        }
      ],
      "x-api-name": "NormAttorneyAPI",
      "x-unicourt-tag": "AttorneyAnalyticsAPIs"
    },
    "/normAttorney/{normAttorneyId}/associatedNormJudges": {
      "get": {
        "description": "Returns a list of Judges faced by the Attorney.\n## Terms and Connectors\n| Connector | Schema   | Description  | Example |\n| ------| ------| ------|------|\n| **AND** ||Find analytics containing all connected terms. The word AND does not have to be capitalized.|**courtId:\"CORTV4vCEaKrhystBz\"  AND  courtLocationId:\"COLO6b82CkRqS846hx\"**|\n| **IN()** || Allows you to specify multiple values, for a limit of up to 10.| **courtId IN (\"CORTV4vCEaKrhystBz\", \"CORTKQiA4LJuv54tEj\")**|\n| **courtId** | Multiple Ids Allowed |Find Analytics for a particular Court Object. | **courtId:\"CORTV4vCEaKrhystBz\"** |\n| **courtSystemId** | Multiple Ids Allowed  |Find Analytics for a particular Court System Object. | **courtSystemId:\"COSYACHBdMewtaG5DY\"** |\n| **courtTypeId** | Multiple Ids Allowed |Find Analytics for a particular Court Type Object. | **courtTypeId:\"COTPm8jjc2PAydpFhq\"** |\n| **courtLocationId** | Multiple Ids Allowed  |Find Analytics for a particular Court Location Object. | **courtLocationId:\"COLO6b82CkRqS846hx\"** |\n| **caseTypeId** | Multiple Ids Allowed  |Find Analytics for a particular Case Type Object. | **caseTypeId:\"CTYPATMYyaJekdgj2c\"** |\n| **caseTypeGroupId** | Multiple Ids Allowed  |Find Analytics for a particular Case Type Group Object. | **caseTypeGroupId:\"CTYG8gZ6hPRKhhYi4Y\"** |\n| **areaOfLawId** | Multiple Ids Allowed  |Find Analytics for a particular Area Of Law Object. | **areaOfLawId:\"AOFL2UxEWfVmTPMyqf\"** |\n| **caseClassId** | Multiple Ids Allowed  |Find Analytics for a particular Case Class Category Object. | **caseClassId:\"CSCLNjbKTN7Yfo2wdb\"** |\n| **caseFiledDate** | Single Allowed |Find Analytics within a particular date range. | **caseFiledDate:[2018-05-08T00:00:00+00:00TO2019-05-08T00:00:00+00:00]** |\n| **JurisdictionGeo** | Multiple filters Allowed |Find Analytics within a particular Jurisdiction Geo. | **(JurisdictionGeo:(state:\"California\"))** |\n| **confidenceScore** | Single Allowed |Find Analytics for a given ConfidenceScore  | **confidenceScore>=0.5** |\n| **bestMatch** | Single Allowed |True if the normEntity has the highest Confidence Score of all possible normEntities | **bestMatch:true** |\n<br>\n## Example Query\nQuery to get all judges associated with attorney with norm id NATYfwmXwRHS279WPY of all cases with case type id CTYPATMYyaJekdgj2c and  case filed date between Jan 1st, 2017 to Nov 30th,2021<br>\nq=caseTypeId:\"CTYPATMYyaJekdgj2c\" AND caseFiledDate:[2017-01-01T00:00:00+00:00TO2021-11-30T00:00:00+00:00]\n<br><br>\n",
        "operationId": "getNormJudgesAssociatedWithNormAttorney",
        "parameters": [
          {
            "description": "The URL encoded query you are searching for. The query can be as simple as a keyword, but supports many additional options and filters. All options are documented above.",
            "examples": {
              "HTTP200-modifiedValue": {
                "summary": "Default value",
                "value": ""
              },
              "HTTP200-sampleAnalyticsQuery": {
                "summary": "sampleAnalyticsQuery",
                "value": "caseTypeId:\"CTYPATMYyaJekdgj2c\" AND caseFiledDate:[2017-01-01T00:00:00+00:00TO2021-11-30T00:00:00+00:00]"
              },
              "HTTP400-sample400AnalyticsQuery": {
                "summary": "sample400AnalyticsQuery",
                "value": "caseTypeId:\"CTYPATMYyaJekdgj2c\" AND caseFiledDate:[2018-01-01T00:00:00+00:00TO2021-11-3000:00:00+00:00]"
              },
              "HTTP404-sample404AnalyticsQuery": {
                "summary": "sample404AnalyticsQuery",
                "value": "caseTypeId:\"CTYPATMYy1Jekdgj2c\" AND caseFiledDate:[2018-01-01T00:00:00+00:00TO2021-11-30T00:00:00+00:00]"
              }
            },
            "in": "query",
            "name": "q",
            "schema": {
              "maxLength": 2048,
              "nullable": false,
              "type": "string"
            }
          },
          {
            "$ref": "#/components/parameters/AnalyticsPageParam"
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleAnalyticsQuery": {
                    "value": {
                      "associatedNormJudgeArray": [
                        {
                          "caseCount": 752,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCTPv9UcxV2CD7y7",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-12T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-10-02T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "GARRETT",
                          "lastName": "WONG",
                          "middleName": "L.",
                          "name": "GARRETT L. WONG",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDJc8CdRtk2Z9Urd",
                          "normJudgeId": "NJUDJc8CdRtk2Z9Urd",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 314,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC6Lzyxr2XKUh9ob",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-03-27T00:00:00+00:00",
                            "lastCaseFiledDate": "2017-11-15T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "THOMAS",
                          "lastName": "LONG",
                          "middleName": null,
                          "name": "LONG THOMAS B",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDbhvsJtLXNLDKGm",
                          "normJudgeId": "NJUDbhvsJtLXNLDKGm",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 314,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC4D2oWHPJe8WKeR",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-03-27T00:00:00+00:00",
                            "lastCaseFiledDate": "2017-11-15T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "THOMAS",
                          "lastName": "LONG",
                          "middleName": "D.",
                          "name": "LONG THOMAS D",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDs6tspKwTsH4PEU",
                          "normJudgeId": "NJUDs6tspKwTsH4PEU",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 249,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCcSrKirqZKq7izD",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-12T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-11-24T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "SAMUEL",
                          "lastName": "FENG",
                          "middleName": "K.",
                          "name": "SAMUEL K. FENG",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDoUAPpnJv6Y9Vrf",
                          "normJudgeId": "NJUDoUAPpnJv6Y9Vrf",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 227,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCRsAdJRjTK9EPwf",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-04T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-10-15T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "ROBERT",
                          "lastName": "TAFOYA",
                          "middleName": null,
                          "name": "ROBERT TAFOYA",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDWBrSm96mNQiAdZ",
                          "normJudgeId": "NJUDWBrSm96mNQiAdZ",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 227,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC6bsKpMcxgboKud",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-04T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-10-15T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "ROBERT",
                          "lastName": "TAFOYA",
                          "middleName": "S.",
                          "name": "ROBERT S. TAFOYA",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDyP83vrUyriWBop",
                          "normJudgeId": "NJUDyP83vrUyriWBop",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 217,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCFRonNj63rfNeCd",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-05-11T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-04-13T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "STEPHEN",
                          "lastName": "BENSON",
                          "middleName": "E.",
                          "name": "STEPHEN E. BENSON",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDGBXamVbBSSgZNy",
                          "normJudgeId": "NJUDGBXamVbBSSgZNy",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 217,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCJ2ahxZfnrbihZj",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-05-11T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-04-13T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "STEPHEN",
                          "lastName": "BENSON",
                          "middleName": "E",
                          "name": "STEPHEN E BENSON",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDpNgoQk8LTBGMfd",
                          "normJudgeId": "NJUDpNgoQk8LTBGMfd",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 208,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCKBLmp3mefAGtVt",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-05-11T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-12-09T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "TAMARA",
                          "lastName": "MOSBARGER",
                          "middleName": "L.",
                          "name": "MOSBARGER TAMARA L",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUD27h9eiQYLjrcR4",
                          "normJudgeId": "NJUD27h9eiQYLjrcR4",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 208,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC3H26NZA5mJTtBk",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-05-11T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-12-09T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "TAMARA",
                          "lastName": "MOSBARGER",
                          "middleName": "L.",
                          "name": "TAMARA L. MOSBARGER",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDBCUNVtEFPfnVq6",
                          "normJudgeId": "NJUDBCUNVtEFPfnVq6",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 108,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCZ8toafj5L7nmVC",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-12T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-09-25T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "TERI",
                          "lastName": "JACKSON",
                          "middleName": "L.",
                          "name": "TERI L. JACKSON",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDGo5JE68Bc9gRZH",
                          "normJudgeId": "NJUDGo5JE68Bc9gRZH",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 80,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCfdRCojvxhts4FH",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-12-06T00:00:00+00:00",
                            "lastCaseFiledDate": "2019-06-27T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "JEFFREY",
                          "lastName": "BRAND",
                          "middleName": null,
                          "name": "BRAND JEFFREY",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDPZFLHr6GF4v3Cs",
                          "normJudgeId": "NJUDPZFLHr6GF4v3Cs",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 80,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCajQvSZTt4b9hrC",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-12-06T00:00:00+00:00",
                            "lastCaseFiledDate": "2019-06-27T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "JEFFREY",
                          "lastName": "BRAND",
                          "middleName": null,
                          "name": "JEFFREY BRAND",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDovzyUjhvMQ6wB9",
                          "normJudgeId": "NJUDovzyUjhvMQ6wB9",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 58,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC7zTiL6wx6AutX3",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-12-06T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-10-02T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "VICTORIA",
                          "lastName": "KOLAKOWSKI",
                          "middleName": null,
                          "name": "KOLAKOWSKI VICTORIA",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDMKqcDxNtxp82zb",
                          "normJudgeId": "NJUDMKqcDxNtxp82zb",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 58,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCkqHkyqcincw6Q3",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-12-06T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-10-02T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "VICTORIA",
                          "lastName": "KOLAKOWSKI",
                          "middleName": null,
                          "name": "VICTORIA KOLAKOWSKI",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDUTxrfv5mtS8LDS",
                          "normJudgeId": "NJUDUTxrfv5mtS8LDS",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 42,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC5UYrFUg344P5oA",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-19T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-04-14T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "GRACIELA",
                          "lastName": "FREIXES",
                          "middleName": "L.",
                          "name": "FREIXES GRACIELA L",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUD3SNsKALeLqwE2z",
                          "normJudgeId": "NJUD3SNsKALeLqwE2z",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 42,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCioWbEqqu3VjdTP",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-19T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-04-14T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "GRACIELA",
                          "lastName": "FREIXES",
                          "middleName": null,
                          "name": "FREIXES GRACIELA F",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDsFYNsR9gVcHM2y",
                          "normJudgeId": "NJUDsFYNsR9gVcHM2y",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 37,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCiGUP3YuabEjKCz",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-03-21T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-12-10T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "JACQUELINE",
                          "lastName": "STERN",
                          "middleName": "M",
                          "name": "JACQUELINE M STERN",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUD6yvmpLjsHScehx",
                          "normJudgeId": "NJUD6yvmpLjsHScehx",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 37,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC56q6C32YVNQgMN",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-03-21T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-12-10T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "JACQUELINE",
                          "lastName": "STERN",
                          "middleName": "M.",
                          "name": "JACQUELINE M. STERN",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDFUyuvzm6f7pLq9",
                          "normJudgeId": "NJUDFUyuvzm6f7pLq9",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 34,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCekmAFbVhXKRmwL",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-02-16T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-12-07T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "TIMOTHY",
                          "lastName": "CASSERLY",
                          "middleName": "M",
                          "name": "TIMOTHY M CASSERLY",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDeJjkwHn3fAiwvt",
                          "normJudgeId": "NJUDeJjkwHn3fAiwvt",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 34,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC2EhpBQLDVBRi2N",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-02-16T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-12-07T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "TIMOTHY",
                          "lastName": "CASSERLY",
                          "middleName": "M.",
                          "name": "CASSERLY TIMOTHY M",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDqz8C9zbzv8rUKy",
                          "normJudgeId": "NJUDqz8C9zbzv8rUKy",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 32,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCE8m4zgx7Pi3D57",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-07-19T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-04-20T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "ANN",
                          "lastName": "PARK",
                          "middleName": "H.",
                          "name": "ANN H. PARK",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDT7jCZyFNeLGpRq",
                          "normJudgeId": "NJUDT7jCZyFNeLGpRq",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 31,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCNiyXhjahhF2ZGT",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-07-03T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-10-06T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "CARTER",
                          "lastName": "HOLLY",
                          "middleName": "P.",
                          "name": "CARTER P. HOLLY",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUD26fS5HHwwKk6ps",
                          "normJudgeId": "NJUD26fS5HHwwKk6ps",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 31,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC89MQAoVkbrbhUa",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-07-03T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-10-06T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "CARTER",
                          "lastName": "HOLLY",
                          "middleName": null,
                          "name": "CARTER HOLLY",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDegBjHBEXzFXfjp",
                          "normJudgeId": "NJUDegBjHBEXzFXfjp",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 30,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC2HnK7cXA6wPdcQ",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-09-22T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-01-19T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "MICHAEL",
                          "lastName": "CANDELA",
                          "middleName": null,
                          "name": "MICHAEL CANDELA",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUD7N2s85xQRHsdyu",
                          "normJudgeId": "NJUD7N2s85xQRHsdyu",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 30,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCi5LTM9bZwkE7GE",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-09-22T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-01-19T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "MICHAEL",
                          "lastName": "CANDELA",
                          "middleName": "P.",
                          "name": "MICHAEL P. CANDELA",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDZFvumwWXzJVhQD",
                          "normJudgeId": "NJUDZFvumwWXzJVhQD",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 30,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCh9rdrX69UidzwQ",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-05-08T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-10-05T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "ROGER",
                          "lastName": "ROSS",
                          "middleName": null,
                          "name": "ROGER ROSS",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDmhA6T7XZT5yaiW",
                          "normJudgeId": "NJUDmhA6T7XZT5yaiW",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 29,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCfD347tEbjKGH5Q",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-03-21T00:00:00+00:00",
                            "lastCaseFiledDate": "2019-01-15T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "EARL",
                          "lastName": "MAAS",
                          "middleName": "H.",
                          "name": "EARL H. MAAS III",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDDyZU3Fc8mGVGMc",
                          "normJudgeId": "NJUDDyZU3Fc8mGVGMc",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 29,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC3UUBQCqrufPBq5",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2020-04-06T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-04-15T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "ROBERT",
                          "lastName": "SCHUIT",
                          "middleName": "J.",
                          "name": "ROBERT J. SCHUIT",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDEoqEtC3kQRbCGk",
                          "normJudgeId": "NJUDEoqEtC3kQRbCGk",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 29,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCVDqYgMhPbzF5Nb",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-03-21T00:00:00+00:00",
                            "lastCaseFiledDate": "2019-01-15T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "EARL",
                          "lastName": "MAAS",
                          "middleName": "H",
                          "name": "EARL H MAAS III",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDT7tQUsT6naf8qa",
                          "normJudgeId": "NJUDT7tQUsT6naf8qa",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 28,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCEqK657C6KLesbd",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-03-21T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-01-23T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "RONALD",
                          "lastName": "FRAZIER",
                          "middleName": "F",
                          "name": "RONALD F FRAZIER",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDCbN9wkmkj3SDbw",
                          "normJudgeId": "NJUDCbN9wkmkj3SDbw",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 28,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCNpsThdDz2ZFnQH",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-09-07T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-10-15T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "JOSE",
                          "lastName": "BENAVIDES",
                          "middleName": "R.",
                          "name": "JOSE R. BENAVIDES",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDWfLoQKqXdSuwaY",
                          "normJudgeId": "NJUDWfLoQKqXdSuwaY",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 28,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCVVRqeL4WYam82R",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-09-07T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-10-15T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "JOSE",
                          "lastName": "BENAVIDES",
                          "middleName": null,
                          "name": "JOSE BENAVIDES",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDYyEwxnMPxG8Ngy",
                          "normJudgeId": "NJUDYyEwxnMPxG8Ngy",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 28,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCEokYXEaRJtjgr2",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-03-21T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-01-23T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "RONALD",
                          "lastName": "FRAZIER",
                          "middleName": "F.",
                          "name": "FRAZIER RONALD F",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDsbK9UrVyusMris",
                          "normJudgeId": "NJUDsbK9UrVyusMris",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 25,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC2kTPYH8rNR94T5",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-06-26T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-07-16T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "KIMBERLY",
                          "lastName": "COLWELL",
                          "middleName": null,
                          "name": "KIMBERLY COLWELL",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDKadqfDmqZnXTLn",
                          "normJudgeId": "NJUDKadqfDmqZnXTLn",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 25,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCcoBYV5JvfXPoUn",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-06-26T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-07-16T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "KIMBERLY",
                          "lastName": "COLWELL",
                          "middleName": "E.",
                          "name": "KIMBERLY E. COLWELL",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDudzgSHdc5VYDB5",
                          "normJudgeId": "NJUDudzgSHdc5VYDB5",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 24,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCHMhJihF2N2Di4b",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2019-02-06T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-02-28T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "CHARLES",
                          "lastName": "BURCH",
                          "middleName": "BEN",
                          "name": "CHARLES BEN BURCH",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDU922xbm8QNNzxm",
                          "normJudgeId": "NJUDU922xbm8QNNzxm",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 23,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCKvX6SFsZ9syyPn",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-10T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-02-27T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "KENNETH",
                          "lastName": "PRITCHARD",
                          "middleName": null,
                          "name": "KENNETH PRITCHARD",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDLDtWFwSScXQQsb",
                          "normJudgeId": "NJUDLDtWFwSScXQQsb",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 23,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCYKp8c3Uv9D5LL7",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-10T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-02-27T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "KENNETH",
                          "lastName": "PRITCHARD",
                          "middleName": "G.",
                          "name": "KENNETH G. PRITCHARD",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDPR79zCQoimxvKe",
                          "normJudgeId": "NJUDPR79zCQoimxvKe",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 23,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCHqZgMCCPdCwNTd",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-09-20T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-09-28T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "WILLIAM",
                          "lastName": "STEWART",
                          "middleName": "D.",
                          "name": "WILLIAM D. STEWART",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDRWCXV6GkdFuoU9",
                          "normJudgeId": "NJUDRWCXV6GkdFuoU9",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 22,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCkemR2QtQLPYExd",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-08-07T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-10-01T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "BARBARA",
                          "lastName": "KRONLUND",
                          "middleName": "A.",
                          "name": "BARBARA A. KRONLUND",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDe6BuEBzbzjnZGi",
                          "normJudgeId": "NJUDe6BuEBzbzjnZGi",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 22,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCWGLh4zcp3wCRRf",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-08-07T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-10-01T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "BARBARA",
                          "lastName": "KRONLUND",
                          "middleName": null,
                          "name": "BARBARA KRONLUND",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDgiMCiiZupirf8c",
                          "normJudgeId": "NJUDgiMCiiZupirf8c",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 20,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCMmS3kQLjoNMavf",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-23T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-10-19T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "ETHAN",
                          "lastName": "SCHULMAN",
                          "middleName": "P.",
                          "name": "ETHAN P. SCHULMAN",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUD5EDLpBrMCDdPSV",
                          "normJudgeId": "NJUD5EDLpBrMCDdPSV",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 16,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCbCRdwWL3yDWp4Y",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-05-26T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-01-03T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "MARY",
                          "lastName": "ARAND",
                          "middleName": null,
                          "name": "MARY ARAND",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDF5WbqGSsBefww6",
                          "normJudgeId": "NJUDF5WbqGSsBefww6",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 16,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCDYU9Pg9T52FPYX",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-05-26T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-01-03T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "MARY",
                          "lastName": "ARAND",
                          "middleName": "E.",
                          "name": "MARY E. ARAND",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDNnHK5WTmvSSDJj",
                          "normJudgeId": "NJUDNnHK5WTmvSSDJj",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 16,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC2CLG5KTs9cbrT8",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-05-26T00:00:00+00:00",
                            "lastCaseFiledDate": "2017-12-26T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "THEODORE",
                          "lastName": "ZAYNER",
                          "middleName": "C.",
                          "name": "THEODORE C. ZAYNER",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDbazfnqmvNsGZDC",
                          "normJudgeId": "NJUDbazfnqmvNsGZDC",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 16,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCYxuLDZvUr6Hqrn",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-05-26T00:00:00+00:00",
                            "lastCaseFiledDate": "2017-12-26T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "THEODORE",
                          "lastName": "ZAYNER",
                          "middleName": null,
                          "name": "THEODORE ZAYNER",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDuZmzXVGUxXk9oT",
                          "normJudgeId": "NJUDuZmzXVGUxXk9oT",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 15,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC2d2fzzTghuNpyT",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-04T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-09-21T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "RICHARD",
                          "lastName": "DUBOIS",
                          "middleName": "H.",
                          "name": "RICHARD H. DUBOIS",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUD9uiosuxdiSZKQx",
                          "normJudgeId": "NJUD9uiosuxdiSZKQx",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 15,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCifT9ECkPqeqRBf",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-08-28T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-10-02T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "GEORGE",
                          "lastName": "ABDALLAH",
                          "middleName": null,
                          "name": "GEORGE ABDALLAH",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDCJzSMxUzDVRKA4",
                          "normJudgeId": "NJUDCJzSMxUzDVRKA4",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 15,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCdMcssUf6cmCCqs",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-08-28T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-10-02T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "GEORGE",
                          "lastName": "ABDALLAH",
                          "middleName": "J.",
                          "name": "GEORGE J. ABDALLAH JR.",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDSg8koqSoH5qUZx",
                          "normJudgeId": "NJUDSg8koqSoH5qUZx",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 14,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCidJHmT3ewhcCp6",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-05-08T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-08-24T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "ELIZABETH",
                          "lastName": "HUMPHREYS",
                          "middleName": null,
                          "name": "ELIZABETH HUMPHREYS",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDCWgUocgWtXu3qE",
                          "normJudgeId": "NJUDCWgUocgWtXu3qE",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 14,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCoVSHgFdKSDPGGK",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-05-26T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-09-21T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "SUNIL",
                          "lastName": "KULKARNI",
                          "middleName": "R.",
                          "name": "SUNIL R. KULKARNI",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDLz5NXZPkrnwRDE",
                          "normJudgeId": "NJUDLz5NXZPkrnwRDE",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 14,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCWU9v5wPzNN8pPx",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2020-04-15T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-08-25T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "JEROLD",
                          "lastName": "TURNER",
                          "middleName": null,
                          "name": "JEROLD TURNER",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDgq3CspLNRsJ6eV",
                          "normJudgeId": "NJUDgq3CspLNRsJ6eV",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 12,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCBJfCdfsKRoRp5E",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-03-22T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-03-21T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "JAMES",
                          "lastName": "STOELKER",
                          "middleName": "L.",
                          "name": "JAMES L. STOELKER",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDHGhUKBoxtDapob",
                          "normJudgeId": "NJUDHGhUKBoxtDapob",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 12,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCR87THZKTRQFRhM",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-12-05T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-10-05T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "JAYNE",
                          "lastName": "LEE",
                          "middleName": null,
                          "name": "JAYNE LEE",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDbiZDMHjmc4AKro",
                          "normJudgeId": "NJUDbiZDMHjmc4AKro",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 12,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCa9ngPLmvDnNXkG",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-05-08T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-03-12T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "MICHAEL",
                          "lastName": "MULVIHILL",
                          "middleName": "J.",
                          "name": "MICHAEL J. MULVIHILL",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDiWeZ7SghbSofJs",
                          "normJudgeId": "NJUDiWeZ7SghbSofJs",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 11,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCWFiLu8Jphpboon",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-03-22T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-08-26T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "MAUREEN",
                          "lastName": "FOLAN",
                          "middleName": "A.",
                          "name": "MAUREEN A. FOLAN",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUD5xqU89XGXHj78x",
                          "normJudgeId": "NJUD5xqU89XGXHj78x",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 11,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC7JHnPTqux3VoEk",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-02-01T00:00:00+00:00",
                            "lastCaseFiledDate": "2019-05-13T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "HAROLD",
                          "lastName": "KAHN",
                          "middleName": "E.",
                          "name": "HAROLD E. KAHN",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDMcndwT4bRVpQ6u",
                          "normJudgeId": "NJUDMcndwT4bRVpQ6u",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 11,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCciavQC6VoqQSf6",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-07-24T00:00:00+00:00",
                            "lastCaseFiledDate": "2017-10-16T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "AMY",
                          "lastName": "YERKEY",
                          "middleName": null,
                          "name": "AMY YERKEY",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDrhNUmmp5zmMbVK",
                          "normJudgeId": "NJUDrhNUmmp5zmMbVK",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 10,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC6W2TyknKcCQb4g",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-08-28T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-09-18T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "W.",
                          "lastName": "SCOTT",
                          "middleName": "STEPHEN",
                          "name": "W. STEPHEN SCOTT",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDM97Nqa2UTRwp7c",
                          "normJudgeId": "NJUDM97Nqa2UTRwp7c",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 10,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCVFEYBiHAKiBbHM",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-04T00:00:00+00:00",
                            "lastCaseFiledDate": "2017-06-21T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "V.",
                          "lastName": "SWOPE",
                          "middleName": "RAYMOND",
                          "name": "V. RAYMOND SWOPE",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDSssuBdPYz9yHor",
                          "normJudgeId": "NJUDSssuBdPYz9yHor",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 10,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCVWFw5MDyCY5meF",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-04-05T00:00:00+00:00",
                            "lastCaseFiledDate": "2017-08-28T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "LINDA",
                          "lastName": "LOFTHUS",
                          "middleName": null,
                          "name": "LINDA LOFTHUS",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDrNLU68YDrMCkST",
                          "normJudgeId": "NJUDrNLU68YDrMCkST",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 10,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC2DLJmkGZv9U6Dc",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-04-05T00:00:00+00:00",
                            "lastCaseFiledDate": "2017-08-28T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "LINDA",
                          "lastName": "LOFTHUS",
                          "middleName": "L.",
                          "name": "LINDA L. LOFTHUS",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDxDHYHfrExG8MVR",
                          "normJudgeId": "NJUDxDHYHfrExG8MVR",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 9,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCDYE3MMwKwJN3Qq",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-03-22T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-05-11T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "RALPH",
                          "lastName": "HOFER",
                          "middleName": "C.",
                          "name": "RALPH C. HOFER",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDBaNygrscKtdo4i",
                          "normJudgeId": "NJUDBaNygrscKtdo4i",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 9,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC7bMv7q7hF8DT4Z",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-03-22T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-05-10T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "PETER",
                          "lastName": "KIRWAN",
                          "middleName": "H.",
                          "name": "PETER H. KIRWAN",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDNAKqd7VocnX7pT",
                          "normJudgeId": "NJUDNAKqd7VocnX7pT",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 9,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCha66foCxGJ7EBk",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-06-26T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-12-12T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "DAVID",
                          "lastName": "WOLF",
                          "middleName": null,
                          "name": "DAVID WOLF",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDV8DAKuveabwNGr",
                          "normJudgeId": "NJUDV8DAKuveabwNGr",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 8,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRChHiEGyEE9mdG2t",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-07-23T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-11-17T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "EUMI",
                          "lastName": "LEE",
                          "middleName": null,
                          "name": "EUMI LEE",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDmgVbYWF6F8JWNZ",
                          "normJudgeId": "NJUDmgVbYWF6F8JWNZ",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 8,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCC96RizfHqmN3eS",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-07-23T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-11-17T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "EUMI",
                          "lastName": "LEE",
                          "middleName": null,
                          "name": "LEE EUMI",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDqVAzWJSB5C88DR",
                          "normJudgeId": "NJUDqVAzWJSB5C88DR",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 7,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC6VJF5v2EqoXTwz",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2019-02-05T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-03-04T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "GERARDO",
                          "lastName": "SANDOVAL",
                          "middleName": "C.",
                          "name": "GERARDO C. SANDOVAL",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDCUAitzv7Tcwy53",
                          "normJudgeId": "NJUDCUAitzv7Tcwy53",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 7,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCWwNTAVBeMBC9o4",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2020-02-05T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-10-05T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "ROBERT",
                          "lastName": "WATERS",
                          "middleName": null,
                          "name": "ROBERT WATERS",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDqaEvtanGTtHGia",
                          "normJudgeId": "NJUDqaEvtanGTtHGia",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 6,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCJVoasQnuFtiy2W",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2020-09-16T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-11-17T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "JAY",
                          "lastName": "ROBINSON",
                          "middleName": null,
                          "name": "JAY ROBINSON",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUD2D4vroFzHnNjFA",
                          "normJudgeId": "NJUD2D4vroFzHnNjFA",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 6,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCPjvbJMuS9ESJjo",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-04-17T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-02-21T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "JOSEPH",
                          "lastName": "SCOTT",
                          "middleName": "C.",
                          "name": "JOSEPH C. SCOTT",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDBggB9M2Le8Po69",
                          "normJudgeId": "NJUDBggB9M2Le8Po69",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 6,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCJ6y5Cqv8pZfmA2",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-03-17T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-08-08T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "CLIFFORD",
                          "lastName": "CRETAN",
                          "middleName": "V.",
                          "name": "CLIFFORD V. CRETAN",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDCMPbiktFEDwuba",
                          "normJudgeId": "NJUDCMPbiktFEDwuba",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 6,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCLQG3umn7smiRUf",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-08-01T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-09-17T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "HUEY",
                          "lastName": "COTTON",
                          "middleName": "P.",
                          "name": "COTTON HUEY P",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDDjiFBBA3bFw4pW",
                          "normJudgeId": "NJUDDjiFBBA3bFw4pW",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 6,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCHTLvQgSzuJBgL9",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-08-01T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-09-17T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "HUEY",
                          "lastName": "COTTON",
                          "middleName": "P.",
                          "name": "HUEY P. COTTON JR.",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDQCcHUeRdXvi7a6",
                          "normJudgeId": "NJUDQCcHUeRdXvi7a6",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 6,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC3ixvfLG6bV484v",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-12-06T00:00:00+00:00",
                            "lastCaseFiledDate": "2019-12-11T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "ROBERT",
                          "lastName": "GLUSMAN",
                          "middleName": "A.",
                          "name": "ROBERT A. GLUSMAN",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDaDK3FwMR9BaC7J",
                          "normJudgeId": "NJUDaDK3FwMR9BaC7J",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 6,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCKCi3VX8SJgmGZq",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-07-11T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-09-21T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "THANG",
                          "lastName": "BARRETT",
                          "middleName": "NGUYEN",
                          "name": "THANG NGUYEN BARRETT",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDaKrNkpQfRbBA8v",
                          "normJudgeId": "NJUDaKrNkpQfRbBA8v",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 6,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCnBV5fWYjYASFuT",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-05-10T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-07-18T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "JOHN",
                          "lastName": "GRANDSAERT",
                          "middleName": "L.",
                          "name": "JOHN L. GRANDSAERT",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDbMMUSQMiCYjykZ",
                          "normJudgeId": "NJUDbMMUSQMiCYjykZ",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 6,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCJusSMtXTjYzLnH",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-09-15T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-07-21T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "TIMOTHY",
                          "lastName": "TAYLOR",
                          "middleName": "B",
                          "name": "TIMOTHY B TAYLOR",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDc2QwyqtkCJemVS",
                          "normJudgeId": "NJUDc2QwyqtkCJemVS",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 6,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCTbemdeMmquE5RL",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2020-06-10T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-10-29T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "MARIE",
                          "lastName": "WOOD",
                          "middleName": null,
                          "name": "MARIE WOOD",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDsnUHLUMQVJGotC",
                          "normJudgeId": "NJUDsnUHLUMQVJGotC",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 6,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCiGMb758fRcdRtE",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-07-11T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-09-21T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "THANG",
                          "lastName": "BARRETT",
                          "middleName": null,
                          "name": "THANG BARRETT",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDuuKvwCSsjuFLgP",
                          "normJudgeId": "NJUDuuKvwCSsjuFLgP",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 6,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCD3Ji2UHbaTcbSA",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-20T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-07-16T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "LAURA",
                          "lastName": "MATZ",
                          "middleName": "A.",
                          "name": "LAURA A. MATZ",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDvjCpGx63br4LNj",
                          "normJudgeId": "NJUDvjCpGx63br4LNj",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 6,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCNj9mvEkJn5uVQA",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-09-15T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-07-21T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "TIMOTHY",
                          "lastName": "TAYLOR",
                          "middleName": "B.",
                          "name": "TIMOTHY B. TAYLOR",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDwpNUxYrUBmpR34",
                          "normJudgeId": "NJUDwpNUxYrUBmpR34",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 5,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCcpEmpcRNrt7Bty",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-08-07T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-11-30T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "MAURICE",
                          "lastName": "LEITER",
                          "middleName": null,
                          "name": "MAURICE LEITER",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDAKQvshAnDKjnJL",
                          "normJudgeId": "NJUDAKQvshAnDKjnJL",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 5,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCRD4xD4tCMkdJnD",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-08-15T00:00:00+00:00",
                            "lastCaseFiledDate": "2017-09-07T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "STEVEN",
                          "lastName": "DYLINA",
                          "middleName": "L.",
                          "name": "STEVEN L. DYLINA",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDHGQhMscQ5Gdsh9",
                          "normJudgeId": "NJUDHGQhMscQ5Gdsh9",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 5,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCGQ5E5L6fzfvqt8",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-08-24T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-11-13T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "DEIRDRE",
                          "lastName": "HILL",
                          "middleName": "H.",
                          "name": "HILL DEIRDRE H",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDHJwosW6h8Gq2ak",
                          "normJudgeId": "NJUDHJwosW6h8Gq2ak",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 5,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC7rMt29aa3w5iXy",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2019-12-16T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-10-19T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "MURLENE",
                          "lastName": "RANDLE",
                          "middleName": "J.",
                          "name": "MURLENE J. RANDLE",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDd5quttfprqpFRk",
                          "normJudgeId": "NJUDd5quttfprqpFRk",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 5,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRChSK5iSMbvfEVzW",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-03-06T00:00:00+00:00",
                            "lastCaseFiledDate": "2019-01-11T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "ROBERT",
                          "lastName": "DAHLQUIST",
                          "middleName": "P.",
                          "name": "ROBERT P. DAHLQUIST",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDecRYCM9CrRmTCf",
                          "normJudgeId": "NJUDecRYCM9CrRmTCf",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 5,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCaNgoA9dGrVGj7N",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2019-11-19T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-11-23T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "DAVID",
                          "lastName": "GREGORY",
                          "middleName": null,
                          "name": "DAVID GREGORY",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDjwNYKPsxowM69B",
                          "normJudgeId": "NJUDjwNYKPsxowM69B",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 5,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCnoeHFVAVycXACr",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-08-24T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-11-13T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "DEIRDRE",
                          "lastName": "HILL",
                          "middleName": null,
                          "name": "DEIRDRE HILL",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDk5iF3FzMYyExXE",
                          "normJudgeId": "NJUDk5iF3FzMYyExXE",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 5,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCKf9L9vW6er9Dti",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2020-02-28T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-11-03T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "CLARE",
                          "lastName": "MAIER",
                          "middleName": null,
                          "name": "CLARE MAIER",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDmZPUfjh5h7wMUi",
                          "normJudgeId": "NJUDmZPUfjh5h7wMUi",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 5,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCGx5wMz8A7icMCZ",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-12-26T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-07-22T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "CHRISTOPHER",
                          "lastName": "RUDY",
                          "middleName": "G.",
                          "name": "CHRISTOPHER G. RUDY",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDmiF8kvYWQCf4eG",
                          "normJudgeId": "NJUDmiF8kvYWQCf4eG",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 5,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCHrVtoQRwNkkPkM",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-03-06T00:00:00+00:00",
                            "lastCaseFiledDate": "2019-01-11T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "ROBERT",
                          "lastName": "DAHLQUIST",
                          "middleName": "P",
                          "name": "DAHLQUIST ROBERT P",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDnwqjsXmYMgCXvp",
                          "normJudgeId": "NJUDnwqjsXmYMgCXvp",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 5,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC74w2SJ5gtZ7Ytg",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2020-02-28T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-11-03T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "CLARE",
                          "lastName": "MAIER",
                          "middleName": "M.",
                          "name": "CLARE M. MAIER",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDsUdw2j6JMDVPgK",
                          "normJudgeId": "NJUDsUdw2j6JMDVPgK",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 5,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCcrCpgXhAz4nrhd",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-11-14T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-09-03T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "NANCY",
                          "lastName": "FINEMAN",
                          "middleName": "L.",
                          "name": "NANCY L. FINEMAN",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDvfuHR9YrXA3s9t",
                          "normJudgeId": "NJUDvfuHR9YrXA3s9t",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 4,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCEDYQTXdZrn6UtU",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-03-22T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-07-18T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "LISA",
                          "lastName": "NOVAK",
                          "middleName": "A.",
                          "name": "LISA A. NOVAK",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUD2qUQ3hWCweG4we",
                          "normJudgeId": "NJUD2qUQ3hWCweG4we",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 4,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCV6im2SmacfWVp5",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-09-06T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-01-24T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "EDDIE",
                          "lastName": "STURGEON",
                          "middleName": "C.",
                          "name": "EDDIE C. STURGEON",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDA6YEhcHvWJiw7X",
                          "normJudgeId": "NJUDA6YEhcHvWJiw7X",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 4,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC2x8fMfacNybCen",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-09-06T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-01-24T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "EDDIE",
                          "lastName": "STURGEON",
                          "middleName": "C",
                          "name": "STURGEON EDDIE C",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDDJcwQYbfekhLZZ",
                          "normJudgeId": "NJUDDJcwQYbfekhLZZ",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 4,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC9UnfGBJc4LaESn",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2020-11-03T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-11-03T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "JOHN",
                          "lastName": "DEVINE",
                          "middleName": null,
                          "name": "JOHN DEVINE",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDDSnrCKKjCPPiCN",
                          "normJudgeId": "NJUDDSnrCKKjCPPiCN",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 4,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCfXCRa7UtZMZzwX",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2019-01-22T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-11-17T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "STEPHEN",
                          "lastName": "KAUS",
                          "middleName": null,
                          "name": "STEPHEN KAUS",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDDkHNWndubNk3r7",
                          "normJudgeId": "NJUDDkHNWndubNk3r7",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        }
                      ],
                      "nextPageAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYfwmXwRHS279WPY/associatedNormJudges?pageNumber=2&q=caseTypeId%3A%22CTYPATMYyaJekdgj2c%22+AND+caseFiledDate%3A%5B2017-01-01T00%3A00%3A00%2B00%3A00TO2021-11-30T00%3A00%3A00%2B00%3A00%5D",
                      "previousPageAPI": null,
                      "totalCount": 251,
                      "totalPages": 3
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/AssociatedNormJudgeResponse"
                }
              }
            },
            "description": "OK"
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "sample400AnalyticsQuery": {
                    "value": {
                      "code": "UN400",
                      "details": "caseFiledDate is not in a required format",
                      "message": "INVALID_INPUT",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Bad Request"
          },
          "404": {
            "content": {
              "application/json": {
                "examples": {
                  "sample404AnalyticsQuery": {
                    "value": {
                      "code": "UN404",
                      "details": "caseTypeId not found",
                      "message": "RESOURCE_NOT_FOUND",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Not Found"
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "example-1": {
                    "value": {
                      "code": "UN500",
                      "details": "Has encountered a situation which needs to be handled.",
                      "message": "INTERNAL_SERVER_ERROR",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Internal Server Error"
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Judges faced by the Attorney.",
        "tags": [
          "Attorney Analytics API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [
        {
          "description": "Norm ID of Attorney. \n  - minimum: 18\n  - maximum: 18\n",
          "examples": {
            "HTTP200-sampleAnalyticsQuery": {
              "summary": "sampleAnalyticsQuery",
              "value": "NATYfwmXwRHS279WPY"
            },
            "HTTP400-sample400AnalyticsQuery": {
              "summary": "sample400AnalyticsQuery",
              "value": "NATYY29p78c7UoyJJ1"
            },
            "HTTP404-sample404AnalyticsQuery": {
              "summary": "sample404AnalyticsQuery",
              "value": "NATYY29p7857UoyJJ1"
            }
          },
          "in": "path",
          "name": "normAttorneyId",
          "required": true,
          "schema": {
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          }
        }
      ],
      "x-api-name": "AssociatedNormJudgesForNormAttorneyAPI",
      "x-unicourt-tag": "AttorneyAnalyticsAPIs"
    },
    "/normAttorney/{normAttorneyId}/associatedNormLawFirms": {
      "get": {
        "description": "Returns a list of Law Firms the norm Attorney has worked for.\n## Terms and Connectors\n| Connector | Schema   | Description  | Example |\n| ------| ------| ------|------|\n| **AND** ||Find analytics containing all connected terms. The word AND does not have to be capitalized.|**courtId:\"CORTV4vCEaKrhystBz\"  AND  courtLocationId:\"COLO6b82CkRqS846hx\"**|\n| **IN()** || Allows you to specify multiple values, for a limit of up to 10.| **courtId IN (\"CORTV4vCEaKrhystBz\", \"CORTKQiA4LJuv54tEj\")**|\n| **courtId** | Multiple Ids Allowed |Find Analytics for a particular Court Object. | **courtId:\"CORTV4vCEaKrhystBz\"** |\n| **courtSystemId** | Multiple Ids Allowed  |Find Analytics for a particular Court System Object. | **courtSystemId:\"COSYACHBdMewtaG5DY\"** |\n| **courtTypeId** | Multiple Ids Allowed  |Find Analytics for a particular Court Type Object. | **courtTypeId:\"COTPm8jjc2PAydpFhq\"** |\n| **courtLocationId** | Multiple Ids Allowed  |Find Analytics for a particular Court Location Object. | **courtLocationId:\"COLO6b82CkRqS846hx\"** |\n| **caseTypeId** | Multiple Ids Allowed  |Find Analytics for a particular Case Type Object. | **caseTypeId:\"CTYPATMYyaJekdgj2c\"** |\n| **caseTypeGroupId** | Multiple Ids Allowed  |Find Analytics for a particular Case Type Group Object. | **caseTypeGroupId:\"CTYG8gZ6hPRKhhYi4Y\"** |\n| **areaOfLawId** | Multiple Ids Allowed  |Find Analytics for a particular Area Of Law Object. | **areaOfLawId:\"AOFL2UxEWfVmTPMyqf\"** |\n| **caseClassId** | Multiple Ids Allowed  |Find Analytics for a particular Case Class Category Object. | **caseClassId:\"CSCLNjbKTN7Yfo2wdb\"** |\n| **partyRoleId** | Multiple Ids Allowed  |Find Analytics for a particular Party Type Object. | **partyRoleId:\"PTYRiP8nMgPxBsPc5i\"** |\n| **partyRoleGroupId** | Multiple Ids Allowed  |Find Analytics for a particular Party Type Group Object. | **partyRoleGroupId:\"PTYGBnjxbx6tKNfVEP\"** |\n| **attorneyPartyRoleId** | Multiple Ids Allowed  |Find Analytics for a particular Attorney Party Type Object. | **attorneyPartyRoleId:\"PTYRiP8nMgPxBsPc5i\"** |\n| **attorneyPartyRoleGroupId** | Multiple Ids Allowed  |Find Analytics for a particular Attorney Party Type Group Object. | **attorneyPartyRoleGroupId:\"PTYGBnjxbx6tKNfVEP\"** |\n| **caseFiledDate** | Single Allowed  |Find Analytics within a particular date range. | **caseFiledDate:[2018-05-08T00:00:00+00:00TO2019-05-08T00:00:00+00:00]** |\n| **JurisdictionGeo** | Multiple Ids Allowed  |Find Analytics within a particular Jurisdiction Geo. | **(JurisdictionGeo:(state:\"California\"))** |\n| **confidenceScore** | Single Allowed |Find Analytics for a given ConfidenceScore  | **confidenceScore>=0.5** |\n| **bestMatch** | Single Allowed |True if the normEntity has the highest Confidence Score of all possible normEntities | **bestMatch:true** |\n<br>\n## Example Query\nQuery to get all LawFirms associated with attorney with norm id NATYfwmXwRHS279WPY of all cases with case type id CTYPATMYyaJekdgj2c and  case filed date between Jan 1st, 2017 to Nov 30th,2021<br>\nq=caseTypeId:\"CTYPATMYyaJekdgj2c\" AND caseFiledDate:[2017-01-01T00:00:00+00:00TO2021-11-30T00:00:00+00:00]\n<br><br>\n",
        "operationId": "getNormLawFirmsAssociatedWithNormAttorney",
        "parameters": [
          {
            "description": "The URL encoded query you are searching for. The query can be as simple as a keyword, but supports many additional options and filters. All options are documented above.",
            "examples": {
              "HTTP200-modifiedValue": {
                "summary": "Default value",
                "value": ""
              },
              "HTTP200-sampleAnalyticsQuery": {
                "summary": "sampleAnalyticsQuery",
                "value": "caseTypeId:\"CTYPATMYyaJekdgj2c\" AND caseFiledDate:[2017-01-01T00:00:00+00:00TO2021-11-30T00:00:00+00:00]"
              },
              "HTTP400-sample400AnalyticsQuery": {
                "summary": "sample400AnalyticsQuery",
                "value": "caseTypeId:\"CTYPATMYyaJekdgj2c\" AND caseFiledDate:[2018-01-01T00:00:00+00:00TO2021-11-3000:00:00+00:00]"
              },
              "HTTP404-sample404AnalyticsQuery": {
                "summary": "sample404AnalyticsQuery",
                "value": "caseTypeId:\"CTYPATMYy1Jekdgj2c\" AND caseFiledDate:[2018-01-01T00:00:00+00:00TO2021-11-30T00:00:00+00:00]"
              }
            },
            "in": "query",
            "name": "q",
            "schema": {
              "maxLength": 2048,
              "nullable": false,
              "type": "string"
            }
          },
          {
            "$ref": "#/components/parameters/AnalyticsPageParam"
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleAnalyticsQuery": {
                    "value": {
                      "associatedNormLawFirmArray": [
                        {
                          "caseCount": 9302,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCKmcgG9346VxHQp",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-03T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-10-29T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "HUNT & HENRIQUES, INC.",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGYevnGAWWENhEQ9",
                          "normLawFirmId": "NORGYevnGAWWENhEQ9",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "03859431",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 82,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCWeGNxsDj3JbBrM",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-05-05T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-04-14T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "MANDARICH LAW GROUP, L.L.P.",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGTDJbwMuJaoP6GB",
                          "normLawFirmId": "NORGTDJbwMuJaoP6GB",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "1319646",
                              "stateCode": "NV"
                            },
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "PF001410139",
                              "stateCode": "MO"
                            },
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "202010301001",
                              "stateCode": "CA"
                            },
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "5425532",
                              "stateCode": "NY"
                            }
                          ]
                        },
                        {
                          "caseCount": 34,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCbkvJw9p9GoZW4h",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-08-04T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-10-29T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "MIDLAND FUNDING L.L.C.",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGDiJQPjeed2mtvx",
                          "normLawFirmId": "NORGDiJQPjeed2mtvx",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "200801710065",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 34,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCiZvyg4cyAw5h5z",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-08-30T00:00:00+00:00",
                            "lastCaseFiledDate": "2017-08-30T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "LAW OFFICE OF ROBIN GROSS (PROF. CORP)",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGb6mgFbLuDfhMg9",
                          "normLawFirmId": "NORGb6mgFbLuDfhMg9",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "02728216",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 24,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCUVQk3wS9Jxg5cG",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-08-29T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-09-21T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "QUALL CARDOT L.L.P.",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGvg8zvoym28D3D6",
                          "normLawFirmId": "NORGvg8zvoym28D3D6",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "202014338001",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 20,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCGMmMWTos2FGfXg",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2020-06-03T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-06-04T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "LEADER-PICONE & YOUNG, L.L.P.",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGZZxpRvd6Gz8eDX",
                          "normLawFirmId": "NORGZZxpRvd6Gz8eDX",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "201998105004",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 16,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCfy4YRrEBqmEnEk",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-04-03T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-09-21T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "LAW OFFICE OF HARRIS & ZIDE, L.L.P.",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGVZZJWPJpfCAr6p",
                          "normLawFirmId": "NORGVZZJWPJpfCAr6p",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "202002016016",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 13,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCAA2cAgGaRkHubX",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2019-03-08T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-07-08T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "SHASTA PORTFOLIO ASSOCIATES L.L.C.",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGJZWceBM2famVx9",
                          "normLawFirmId": "NORGJZWceBM2famVx9",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "201908010739",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 13,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCYDvWBfm9VjEFNs",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2019-03-08T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-07-08T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "ENERGY PORTFOLIO ASSOCIATES L.L.C.",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGKu9PCVPDXKdXbu",
                          "normLawFirmId": "NORGKu9PCVPDXKdXbu",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "201713710521",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 13,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCVk48Y4gmfpXcaH",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-04T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-07-03T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "KENOSIAN & MIELE, L.L.P.",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGNfy5Ca84arywvw",
                          "normLawFirmId": "NORGNfy5Ca84arywvw",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "202006140004",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 13,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCdFDYX7GFdWYAor",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2019-03-08T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-07-08T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "PARAMETRIC PORTFOLIO ASSOCIATES L.L.C.",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGWtwZKxBkfmJ9u4",
                          "normLawFirmId": "NORGWtwZKxBkfmJ9u4",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "201315110252",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 13,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRChARuK7QDBCozFf",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2019-03-08T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-07-08T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "PORTFOLIO REALTY ASSOCIATES, L.P.",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGcBsSQNBiiLxqsV",
                          "normLawFirmId": "NORGcBsSQNBiiLxqsV",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "B99000000208",
                              "stateCode": "FL"
                            },
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "199331400014",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 13,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCbNpM5SPHYc6JXJ",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2019-03-08T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-07-08T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "CARIBFORNIA PORTFOLIO ASSOCIATES L.L.C.",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGpUnpSZ8AzStNXq",
                          "normLawFirmId": "NORGpUnpSZ8AzStNXq",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "201700510477",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 13,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCPfaAyW6fooAjnj",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-07-16T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-07-23T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "WALKER, WRIGHT, TYLER & WARD L.L.P.",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGr9Qx2ocZm5fPVt",
                          "normLawFirmId": "NORGr9Qx2ocZm5fPVt",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "201996362002",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 13,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCjiMtHLv4NKtaso",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2019-03-08T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-07-08T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "PORTFOLIO RECOVERY ASSOCIATES, L.L.C.",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGrPmQyLdx9NGHcT",
                          "normLawFirmId": "NORGrPmQyLdx9NGHcT",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "200413310140",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 13,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCJx8hdyVHzFLU6V",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2019-03-08T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-07-08T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "CONSERVATIVE PORTFOLIO ASSOCIATES",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGvqEg3wWMbvMnzg",
                          "normLawFirmId": "NORGvqEg3wWMbvMnzg",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "03497817",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 13,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCELQsD4cqgu5KH3",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2019-03-08T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-07-08T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "PARAMETRIC PORTFOLIO ASSOCIATES, INC.",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGwJXq4yuDfoGFNw",
                          "normLawFirmId": "NORGwJXq4yuDfoGFNw",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "01104578",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 11,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCJ525SfvdCtHFdV",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2019-02-19T00:00:00+00:00",
                            "lastCaseFiledDate": "2019-03-06T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "TERRY A. DUREE, INC.",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORG67iWrxRvGjZe9h",
                          "normLawFirmId": "NORG67iWrxRvGjZe9h",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "01075373",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 11,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCK4aZFbWiWDSTfY",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-05-31T00:00:00+00:00",
                            "lastCaseFiledDate": "2019-08-13T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "NIVINSKUS LAW GROUP, A LAW CORPORATION",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGFkshfCEd6ohH7n",
                          "normLawFirmId": "NORGFkshfCEd6ohH7n",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "01652820",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 10,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCCtLRGFboxoCmNL",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-05-08T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-09-21T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "FULTON, FRIEDMAN, & GULLACE, L.L.P.",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGJE26Ct7oWE994A",
                          "normLawFirmId": "NORGJE26Ct7oWE994A",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "202010097002",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 9,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCoYSoJQp6jMJiyk",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-09-24T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-11-28T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "KIMBALL, TIREY & ST. JOHN, L.L.P.",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGUWqUYz5A5s9Qk8",
                          "normLawFirmId": "NORGUWqUYz5A5s9Qk8",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "202006137001",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 8,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCE72ChkejxinJwc",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-10-16T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-11-13T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "BIRD, MARELLA, BOXER, WOLPERT, NESSIM, DROOKS, LINCENBERG & RHOW, A PROFESSIONAL CORPORATION",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGWvbEnU9XXuMVwa",
                          "normLawFirmId": "NORGWvbEnU9XXuMVwa",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "01168107",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 8,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCFPD7aVmNTqriYH",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-03-29T00:00:00+00:00",
                            "lastCaseFiledDate": "2019-09-05T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "BREWER & BREWER L.L.P.",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGpZQCktHk3kDbsz",
                          "normLawFirmId": "NORGpZQCktHk3kDbsz",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "202014360004",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 7,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCYESKcdLVHRKQG8",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-03-22T00:00:00+00:00",
                            "lastCaseFiledDate": "2019-04-24T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "PHANCAO & SHAFFER, L.L.P.",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGYja5jwkggL26Sc",
                          "normLawFirmId": "NORGYja5jwkggL26Sc",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "202004308008",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 6,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCgyvinRMd9254hG",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-08-14T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-08-20T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "CHOLAKIAN & ASSOCIATES, A PROFESSIONAL CORPORATION",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORG7VmmAdhFDGMJ5v",
                          "normLawFirmId": "NORG7VmmAdhFDGMJ5v",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "02078278",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 6,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCF3Dkhzwc6AsbDy",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2019-08-27T00:00:00+00:00",
                            "lastCaseFiledDate": "2019-10-24T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "HEMAR, ROUSSO & HEALD, L.L.P.",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGg3Q9q2kCkFAVzw",
                          "normLawFirmId": "NORGg3Q9q2kCkFAVzw",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "201998197001",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 5,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCQPDtRAXJtvwB2v",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2019-10-29T00:00:00+00:00",
                            "lastCaseFiledDate": "2019-11-27T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "MILLER LAW FIRM LLP, THE",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORG5RsXFv9UNyNyXL",
                          "normLawFirmId": "NORG5RsXFv9UNyNyXL",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "202012160006",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 5,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCMzswWQ5fYBLpYo",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-04-20T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-02-15T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "GORDON & WONG LAW GROUP, P.C.",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGFKfDVBfELnR832",
                          "normLawFirmId": "NORGFKfDVBfELnR832",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "01959287",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 5,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCak6guwV8xxmSUn",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-12-26T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-01-17T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "FISHER & PHILLIPS L.L.P.",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGGPGhdZJfa37HC8",
                          "normLawFirmId": "NORGGPGhdZJfa37HC8",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "201997358001",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 5,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCgMtde4RwpKg3b7",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2019-10-29T00:00:00+00:00",
                            "lastCaseFiledDate": "2019-11-27T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "MILLER LAW FIRM LLP",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGa3UV9svzPfNMHS",
                          "normLawFirmId": "NORGa3UV9svzPfNMHS",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "201998274004",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 5,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCMRFMdffHaECC33",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2019-10-29T00:00:00+00:00",
                            "lastCaseFiledDate": "2019-11-27T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "THOMAS E. MILLER LAW CORPORATION",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGecycno9kJiscQ5",
                          "normLawFirmId": "NORGecycno9kJiscQ5",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "01572172",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 5,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCZUC42XHCzLhnbS",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2019-10-29T00:00:00+00:00",
                            "lastCaseFiledDate": "2019-11-27T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "MILLER & STEELE LAW FIRM L.L.P.",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGyKFtBT7azSxhxt",
                          "normLawFirmId": "NORGyKFtBT7azSxhxt",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "202013109003",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 4,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCbPqK42rTLS6sBM",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-06-25T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-11-01T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "INDUSTRIAL RENTALS",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORG7d79dcQx5BUza6",
                          "normLawFirmId": "NORG7d79dcQx5BUza6",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "00306918",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 4,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCXJCmLvMzruyvw2",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-08-08T00:00:00+00:00",
                            "lastCaseFiledDate": "2017-08-08T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "MEDEL LAW GROUP, A.P.C.",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGFLimQutPNyPxct",
                          "normLawFirmId": "NORGFLimQutPNyPxct",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "03437267",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 4,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCgGqbZbZ3hdy9kr",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-03-29T00:00:00+00:00",
                            "lastCaseFiledDate": "2017-09-08T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "BLEIER & COX, L.L.P.",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGZfEzC6q48vu2Ae",
                          "normLawFirmId": "NORGZfEzC6q48vu2Ae",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "202006144003",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 3,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCAMeMspKcYrioy7",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2019-08-15T00:00:00+00:00",
                            "lastCaseFiledDate": "2019-08-22T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "THE CENTER FOR DISABILITY STUDIES",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORG2ZYJm8NbaQWFkW",
                          "normLawFirmId": "NORG2ZYJm8NbaQWFkW",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "01613667",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 3,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCM2nw36jpGmeWfg",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-05-11T00:00:00+00:00",
                            "lastCaseFiledDate": "2017-05-17T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "CLERKIN, SINCLAIR & MAHFOUZ, L.L.P.",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORG5odEKsHWqrkv3i",
                          "normLawFirmId": "NORG5odEKsHWqrkv3i",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "1436186",
                              "stateCode": "NV"
                            },
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "802044645",
                              "stateCode": "TX"
                            },
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "202005281002",
                              "stateCode": "CA"
                            },
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "5587598",
                              "stateCode": "NY"
                            }
                          ]
                        },
                        {
                          "caseCount": 3,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCJkdRihp7Y583in",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2020-09-16T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-09-16T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "BROWN AND STANSBURY, INC.",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORG67BGsb8VbWDska",
                          "normLawFirmId": "NORG67BGsb8VbWDska",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "00357052",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 3,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC4DTCjh6c8eTaTq",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2019-08-15T00:00:00+00:00",
                            "lastCaseFiledDate": "2019-08-22T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "POTTER HANDY, L.L.P.",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGEYH5XZKrFXgfdX",
                          "normLawFirmId": "NORGEYH5XZKrFXgfdX",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "201998173003",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 3,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCXFP68CGHXCeTqX",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2019-08-15T00:00:00+00:00",
                            "lastCaseFiledDate": "2019-08-22T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "CENTER FOR ACCESS AND RESOURCE DEFENSE",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGQMiEGPcHBd9EzR",
                          "normLawFirmId": "NORGQMiEGPcHBd9EzR",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "03047916",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 3,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCE5E4CMzYZ63CHk",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2019-08-15T00:00:00+00:00",
                            "lastCaseFiledDate": "2019-08-22T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "THE DISABILITY CENTER",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGhWav9XXQpmpeM9",
                          "normLawFirmId": "NORGhWav9XXQpmpeM9",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "02345802",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 3,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCgxTLxYTkrn8ea9",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2019-08-15T00:00:00+00:00",
                            "lastCaseFiledDate": "2019-08-22T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "ACCESS CENTER FOR EDUCATION",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGkvRTykVtuqd4nq",
                          "normLawFirmId": "NORGkvRTykVtuqd4nq",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "02644435",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 3,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCg6oiESUYL76QWH",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-09-27T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-09-27T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "MORSE & ASSOCIATES, P.C.",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGmTsrVfuB9JKm48",
                          "normLawFirmId": "NORGmTsrVfuB9JKm48",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "00802085",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 3,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCo7GDzVevNJvmbJ",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2019-05-21T00:00:00+00:00",
                            "lastCaseFiledDate": "2019-05-21T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "DOWNS & ASSOCIATES L.L.C.",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGqNqKeMuGqzY8zn",
                          "normLawFirmId": "NORGqNqKeMuGqzY8zn",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "201218410081",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 3,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCEiPvP9oA5fXctv",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-09-27T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-09-27T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "MORSE AND ASSOCIATES, INC.",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGyKU3tKbBsqpqnY",
                          "normLawFirmId": "NORGyKU3tKbBsqpqnY",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "00676535",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCYmnZ2tnoCUvoV5",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-09-21T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-09-21T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "LAW OFFICES OF NADER A. NADER, A.P.C.",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORG37U82aKM5ciSM5",
                          "normLawFirmId": "NORG37U82aKM5ciSM5",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "04026191",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCXEKEhAPCkAZWUi",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-02-08T00:00:00+00:00",
                            "lastCaseFiledDate": "2017-12-04T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "BLAU KEANE LAW GROUP, PROFESSIONAL CORPORATION",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORG3HhsQemRGnkZHf",
                          "normLawFirmId": "NORG3HhsQemRGnkZHf",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "02939232",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCbMia5hJg2YkGaX",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-09-17T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-09-20T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "ACCESS APPLIANCE SERVICES INC.",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORG4WyLc4VNrrexki",
                          "normLawFirmId": "NORG4WyLc4VNrrexki",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "03152818",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC4EdgeMWYAm56Q7",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-07-14T00:00:00+00:00",
                            "lastCaseFiledDate": "2017-07-14T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "JONES CLIFFORN, L.L.P.",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORG5SdE79sYefNniE",
                          "normLawFirmId": "NORG5SdE79sYefNniE",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "201997044001",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCmBd5mfVQWonRQ4",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-09-17T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-09-20T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "ACCESS ELECTRICAL SERVICES, INC.",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORG6ordipTecPPzsE",
                          "normLawFirmId": "NORG6ordipTecPPzsE",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "04152262",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCexGBk4Tzv8xqew",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-09-17T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-09-20T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "ACCESS HEALTHCARE SERVICES, INC.",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORG9PUbLqvzm4kLLm",
                          "normLawFirmId": "NORG9PUbLqvzm4kLLm",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "03843848",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC8CnhuYXkoqgm7s",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-09-17T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-09-20T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "ACCESS CREDIT SERVICES, INC.",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGCEZNSeDo7fN6xK",
                          "normLawFirmId": "NORGCEZNSeDo7fN6xK",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "01417769",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRChU9viLhkqB6rej",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-09-17T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-09-20T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "ACCESS STAFFING SERVICES, INC.",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGCweuWs9ZDiNv5z",
                          "normLawFirmId": "NORGCweuWs9ZDiNv5z",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "02603347",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCDdA6vk39URN83r",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-09-17T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-09-20T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "ACCESS FACILITY SERVICES, INC.",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGEjSz3SNY5bTR6i",
                          "normLawFirmId": "NORGEjSz3SNY5bTR6i",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "02894847",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCTdA9HttsWyTSeh",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-09-17T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-09-20T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "ACCESS MEDICAL SERVICES, INC.",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGF3thECo2XUNPNP",
                          "normLawFirmId": "NORGF3thECo2XUNPNP",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "01735943",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCjzVsCDSDCwbyjH",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-09-17T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-09-20T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "ACCESS MERCHANT SERVICES, INC.",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGFBd9jiyW7KAzWY",
                          "normLawFirmId": "NORGFBd9jiyW7KAzWY",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "02455362",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC7PXbsbxaZLyQeD",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-07-19T00:00:00+00:00",
                            "lastCaseFiledDate": "2017-10-12T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "MCDOWELL ASSOCIATES, L.L.C.",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGHDsq3ERU43rAah",
                          "normLawFirmId": "NORGHDsq3ERU43rAah",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "200807010317",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC8gmAJLZPrixqHP",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-03-22T00:00:00+00:00",
                            "lastCaseFiledDate": "2017-03-30T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "THE LAW OFFICES OF JACOB EMRANI A PROFESSIONAL CORPORATION",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGHyd3W69Tg3R2jc",
                          "normLawFirmId": "NORGHyd3W69Tg3R2jc",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "02016404",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCAvTE5NaAG8mfCm",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2019-09-11T00:00:00+00:00",
                            "lastCaseFiledDate": "2019-09-11T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "BURKE, WILLIAMS & SORENSEN, L.L.P.",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGJQ8y7YnJouELkA",
                          "normLawFirmId": "NORGJQ8y7YnJouELkA",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "201997255001",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC3rxv8dvx2onQkH",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-09-17T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-09-20T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "ACCESS PROPERTY SERVICES, INC., A CALIFORNIA CORPORATION",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGJVWYXeBtAu6sZX",
                          "normLawFirmId": "NORGJVWYXeBtAu6sZX",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "F2092122",
                              "stateCode": "VA"
                            },
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "02003476",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCgrqwY8D2p4NMfk",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-09-17T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-09-20T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "ACCESS CAPITAL SOLUTIONS INC.",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGJxX8FHNAz92esM",
                          "normLawFirmId": "NORGJxX8FHNAz92esM",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "02780917",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCZ3oAahvMQPCbbK",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-01-30T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-02-01T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "FOX ROTHSCHILD L.L.P.",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGNbxZJvPtkdmzy7",
                          "normLawFirmId": "NORGNbxZJvPtkdmzy7",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "202006279001",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCYvauVW6Kmahb3H",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-07-19T00:00:00+00:00",
                            "lastCaseFiledDate": "2017-10-12T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "MCDOWELL ASSOCIATES, INC.",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGNkaPHYvtN64CW7",
                          "normLawFirmId": "NORGNkaPHYvtN64CW7",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "01129007",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCA9YLM8a3HY5BMm",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-09-17T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-09-20T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "ACCESS FINANCIAL SERVICES, INC.",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGQs6VjUuPL2ihUj",
                          "normLawFirmId": "NORGQs6VjUuPL2ihUj",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "03041675",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCfbrFrvb4Ttf8Eh",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-09-17T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-09-20T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "ACCESS CAPITAL INC",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGQw7pTs2LuH8Xnj",
                          "normLawFirmId": "NORGQw7pTs2LuH8Xnj",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "03697246",
                              "stateCode": "CA"
                            },
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "1055484",
                              "stateCode": "NY"
                            }
                          ]
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCTuYMzJSfkMi7nw",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-09-17T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-09-20T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "GREGORY COMMERCIAL INVESTMENTS, INC.",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGS9gDGJAZHtiSZB",
                          "normLawFirmId": "NORGS9gDGJAZHtiSZB",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "01861382",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCmtR8gmnztvNDQf",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-09-17T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-09-20T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "ACCESS LOAN SERVICES INC.",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGT8ov8j5gNXdPbk",
                          "normLawFirmId": "NORGT8ov8j5gNXdPbk",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "03595812",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCkmuRoQCFtGpDXJ",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-09-17T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-09-20T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "ACCESS CAPITAL SERVICES, INC.",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGTnz4pZFXE7jjoY",
                          "normLawFirmId": "NORGTnz4pZFXE7jjoY",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "02428387",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCHZusRNVpKM8d2S",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-09-17T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-09-20T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "ACCESS AUCTION SERVICES INC.",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGWW5B7zWchgJJSo",
                          "normLawFirmId": "NORGWW5B7zWchgJJSo",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "02710088",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC5XpWugtj3awodc",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-09-05T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-09-07T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "LAW OFFICES OF JANICE M. BANDUCCI, P.C.",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGXGotwnwVr3EGan",
                          "normLawFirmId": "NORGXGotwnwVr3EGan",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "02900147",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCD2eVnYhgM82nre",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-09-17T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-09-20T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "ACCESS POINT SERVICES INC.",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGXuZz5v9ngyTkqK",
                          "normLawFirmId": "NORGXuZz5v9ngyTkqK",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "03343732",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC3E4i8SebUzwWh7",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-09-17T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-09-20T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "SKOR RECORDS, INC.",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGY2yTaKz6m2UuvW",
                          "normLawFirmId": "NORGY2yTaKz6m2UuvW",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "02337329",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCEEfv5frqYTmZNv",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-09-17T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-09-20T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "ACCESS CAPITAL, INC.",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGabSJCYBmbtJ7Vw",
                          "normLawFirmId": "NORGabSJCYBmbtJ7Vw",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "03639154",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCTU4CTDfG2pby7m",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-10-18T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-10-25T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "HUESTON HENNIGAN L.L.P.",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGcNpCLppydabhpy",
                          "normLawFirmId": "NORGcNpCLppydabhpy",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "202015006004",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCZdSQcsUhFFodYP",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-09-17T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-09-20T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "ACCESS HOMECARE SERVICES, INC.",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGedt9RXATb5LFac",
                          "normLawFirmId": "NORGedt9RXATb5LFac",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "04005590",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCA675SASDUv3tRc",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-09-17T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-09-20T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "ACCESS INTERNET SERVICES, INC.",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGg7DLPyjxTAupfC",
                          "normLawFirmId": "NORGg7DLPyjxTAupfC",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "02742744",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCeRfrajHsDUoC7v",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-09-17T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-09-20T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "ACCESS RELOCATION SERVICES, INC.",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGgSKMNuQEbKYokY",
                          "normLawFirmId": "NORGgSKMNuQEbKYokY",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "P98000101520",
                              "stateCode": "FL"
                            },
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "02204640",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCPgLpgMCgnF4JWW",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-09-17T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-09-20T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "ACCESS LEGAL SERVICES, INC.",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGhq6xcFfXHMurwD",
                          "normLawFirmId": "NORGhq6xcFfXHMurwD",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "02625770",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCfxeLddc33Ld7sh",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-09-17T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-09-20T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "ACCESS MANAGE SERVICES INC.",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGkkzhxHUFM5NkYy",
                          "normLawFirmId": "NORGkkzhxHUFM5NkYy",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "03789491",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC98avpAojpbyrh4",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-09-17T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-09-20T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "ACCESS EDUCATIONAL SERVICES, INC.",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGoD7sieuTndZMYC",
                          "normLawFirmId": "NORGoD7sieuTndZMYC",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "03747956",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCWMsSP5oRMSEUCd",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-09-17T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-09-20T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "ACCESS LANGUAGE SERVICES, INC.",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGoGiLYseb6Af2y6",
                          "normLawFirmId": "NORGoGiLYseb6Af2y6",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "01726654",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCQdaVSjyNDJN2K4",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-07-19T00:00:00+00:00",
                            "lastCaseFiledDate": "2017-10-12T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "INDUSTRIAL AND COMMERCIAL MARKETING, INC.",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGr6PBN2vKdKubSo",
                          "normLawFirmId": "NORGr6PBN2vKdKubSo",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "00856302",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCTttsfVAAQSY8q6",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-02-01T00:00:00+00:00",
                            "lastCaseFiledDate": "2017-02-01T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "LAW OFFICE OF GRANT K. PETO, A.P.C.",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGv9jpGNhgiCFDsf",
                          "normLawFirmId": "NORGv9jpGNhgiCFDsf",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "04050190",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCiAymkh3sGQzqZW",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-03-10T00:00:00+00:00",
                            "lastCaseFiledDate": "2017-03-21T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "FIDELITY LAW GROUP, INC.",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGwewEbjp8VrmrVH",
                          "normLawFirmId": "NORGwewEbjp8VrmrVH",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "03252038",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCaRW9TZVjMYv2E6",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-09-17T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-09-20T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "ACCESS PATROL SERVICES, INC.",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGwnAfdXVkMkFu5m",
                          "normLawFirmId": "NORGwnAfdXVkMkFu5m",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "03695339",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCZBXENfcK3pbC7Q",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-09-17T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-09-20T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "ACCESS MEDIA SERVICES, INC.",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGwpsZiNEwp9xgdb",
                          "normLawFirmId": "NORGwpsZiNEwp9xgdb",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "03643926",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCfcDzgDx3P8fFXA",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-09-17T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-09-20T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "ACCESS WHEELCHAIR SERVICES, INC.",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGyRj8aNv8ktF9pC",
                          "normLawFirmId": "NORGyRj8aNv8ktF9pC",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "02045852",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCcMypVDBRW2fT2p",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-06-14T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-06-14T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "COHEN & RICHARDSON, L.L.P.",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGyYtobq76NiPoBe",
                          "normLawFirmId": "NORGyYtobq76NiPoBe",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "202009014005",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCM4FcGSP7T9sRr2",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-20T00:00:00+00:00",
                            "lastCaseFiledDate": "2017-01-20T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "SCHNADER HARRISON SEGAL & LEWIS L.L.P.",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORG2AYXUAhrqiVSxj",
                          "normLawFirmId": "NORG2AYXUAhrqiVSxj",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "201999160015",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCVauunq63ipcw5J",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-08-04T00:00:00+00:00",
                            "lastCaseFiledDate": "2017-08-04T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "ROBERT L. WEINER MASTER BROKER, INC.",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORG2GYhJF7GmRProR",
                          "normLawFirmId": "NORG2GYhJF7GmRProR",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "01160419",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCjna6Fs7eA8bpQ9",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-07-12T00:00:00+00:00",
                            "lastCaseFiledDate": "2017-07-12T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "LAW OFFICE OF ANDREW PARK, A PROFESSIONAL LAW CORPORATION",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORG2rBiLWW8PY75zb",
                          "normLawFirmId": "NORG2rBiLWW8PY75zb",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "03669920",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC7k48v5Y7G9454Q",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-03-16T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-03-16T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "LAW OFFICES GEORGE L COHN",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORG34UonZRY6EXNcG",
                          "normLawFirmId": "NORG34UonZRY6EXNcG",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "03584337",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCk9a7KvLLCeseTr",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-03-16T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-03-16T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "LAW OFFICES OF VICTOR SARGAZY",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORG3jmYbqaamQGBDb",
                          "normLawFirmId": "NORG3jmYbqaamQGBDb",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "04023349",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCGs3vLbGTxuxupQ",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-13T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-02-13T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "ARTIANO & ASSOCIATES, A PROFESSIONAL CORPORATION",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORG3tTPwkddJW3xQF",
                          "normLawFirmId": "NORG3tTPwkddJW3xQF",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "03013435",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCKL3twMK8HQFfHV",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-11-27T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-11-27T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "BRADLEY GROMBACHER L.L.P.",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORG5ffsp5zihef2iX",
                          "normLawFirmId": "NORG5ffsp5zihef2iX",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "202016231001",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCbU5BLronBVW6jX",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-13T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-02-13T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "HEYWOOD G. FRIEDMAN, A PROFESSIONAL CORPORATION",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORG63HZJsUe2F6npy",
                          "normLawFirmId": "NORG63HZJsUe2F6npy",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "01491323",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCVk5hQduboanrpN",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-11-15T00:00:00+00:00",
                            "lastCaseFiledDate": "2017-11-15T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "LAW OFFICES OF BRYAN CASTORINA P.C.",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORG9VdEoLoYu4hNrU",
                          "normLawFirmId": "NORG9VdEoLoYu4hNrU",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "03887255",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCfbSaqsWMXMumEV",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-10-10T00:00:00+00:00",
                            "lastCaseFiledDate": "2017-10-10T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "FRANK L. KUCERA & ASSOCIATES, P.C.",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGAH8pctc9KPQKRS",
                          "normLawFirmId": "NORGAH8pctc9KPQKRS",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "03230657",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCcbRTe2RUi9kV3L",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-07-12T00:00:00+00:00",
                            "lastCaseFiledDate": "2017-07-12T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "LAW OFFICE OF ANDREW WOLFF, P.C.",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGCF8dkrFc8EWbRz",
                          "normLawFirmId": "NORGCF8dkrFc8EWbRz",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "03448737",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCafP3rTSpbZ8qbS",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-04-19T00:00:00+00:00",
                            "lastCaseFiledDate": "2017-04-19T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "LAW OFFICES OF STUART A KATZ, P.C.",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGEg85SvTpAvU6TZ",
                          "normLawFirmId": "NORGEg85SvTpAvU6TZ",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "03868698",
                              "stateCode": "CA"
                            }
                          ]
                        }
                      ],
                      "nextPageAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYfwmXwRHS279WPY/associatedNormLawFirms?pageNumber=2&q=caseTypeId%3A%22CTYPATMYyaJekdgj2c%22+AND+caseFiledDate%3A%5B2017-01-01T00%3A00%3A00%2B00%3A00TO2021-11-30T00%3A00%3A00%2B00%3A00%5D",
                      "previousPageAPI": null,
                      "totalCount": 142,
                      "totalPages": 2
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/AssociatedNormLawFirmResponse"
                }
              }
            },
            "description": "OK"
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "sample400AnalyticsQuery": {
                    "value": {
                      "code": "UN400",
                      "details": "caseFiledDate is not in a required format",
                      "message": "INVALID_INPUT",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Bad Request"
          },
          "404": {
            "content": {
              "application/json": {
                "examples": {
                  "sample404AnalyticsQuery": {
                    "value": {
                      "code": "UN404",
                      "details": "caseTypeId not found",
                      "message": "RESOURCE_NOT_FOUND",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Not Found"
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "example-1": {
                    "value": {
                      "code": "UN500",
                      "details": "Has encountered a situation which needs to be handled.",
                      "message": "INTERNAL_SERVER_ERROR",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Internal Server Error"
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Law Firms the attorney has worked for.",
        "tags": [
          "Attorney Analytics API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [
        {
          "description": "Norm ID of Attorney. \n  - minimum: 18\n  - maximum: 18\n",
          "examples": {
            "HTTP200-sampleAnalyticsQuery": {
              "summary": "sampleAnalyticsQuery",
              "value": "NATYfwmXwRHS279WPY"
            },
            "HTTP400-sample400AnalyticsQuery": {
              "summary": "sample400AnalyticsQuery",
              "value": "NATYY29p78c7UoyJ1J"
            },
            "HTTP404-sample404AnalyticsQuery": {
              "summary": "sample404AnalyticsQuery",
              "value": "NATYY29p7857Uo1yJJ"
            }
          },
          "in": "path",
          "name": "normAttorneyId",
          "required": true,
          "schema": {
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          }
        }
      ],
      "x-api-name": "AssociatedNormLawFirmsForNormAttorneyAPI",
      "x-unicourt-tag": "AttorneyAnalyticsAPIs"
    },
    "/normAttorney/{normAttorneyId}/associatedNormParties": {
      "get": {
        "description": "Returns a list of Parties the Attorney has represented.\n<br><br>\n## Terms and Connectors\n| Connector | Schema   | Description  | Example |\n| ------| ------| ------|------|\n| **AND** ||Find analytics containing all connected terms. The word AND does not have to be capitalized.|**courtId:\"CORTV4vCEaKrhystBz\"  AND  courtLocationId:\"COLO6b82CkRqS846hx\"**|\n| **IN()** || Allows you to specify multiple values, for a limit of up to 10.| **courtId IN (\"CORTV4vCEaKrhystBz\", \"CORTKQiA4LJuv54tEj\")**|\n| **courtId** | Multiple Ids Allowed  |Find Analytics for a particular Court Object. | **courtId:\"CORTV4vCEaKrhystBz\"** |\n| **courtSystemId** | Multiple Ids Allowed  |Find Analytics for a particular Court System Object. | **courtSystemId:\"COSYACHBdMewtaG5DY\"** |\n| **courtTypeId** | Multiple Ids Allowed  |Find Analytics for a particular Court Type Object. | **courtTypeId:\"COTPm8jjc2PAydpFhq\"** |\n| **courtLocationId** | Multiple Ids Allowed  |Find Analytics for a particular Court Location Object. | **courtLocationId:\"COLO6b82CkRqS846hx\"** |\n| **caseTypeId** | Multiple Ids Allowed  |Find Analytics for a particular Case Type Object. | **caseTypeId:\"CTYPATMYyaJekdgj2c\"** |\n| **caseTypeGroupId** | Multiple Ids Allowed  |Find Analytics for a particular Case Type Group Object. | **caseTypeGroupId:\"CTYG8gZ6hPRKhhYi4Y\"** |\n| **areaOfLawId** | Multiple Ids Allowed  |Find Analytics for a particular Area Of Law Object. | **areaOfLawId:\"AOFL2UxEWfVmTPMyqf\"** |\n| **caseClassId** | Multiple Ids Allowed  |Find Analytics for a particular Case Class Category Object. | **caseClassId:\"CSCLNjbKTN7Yfo2wdb\"** |\n| **partyRoleId** | Multiple Ids Allowed  |Find Analytics for a particular Party Type Object. | **partyRoleId:\"PTYRiP8nMgPxBsPc5i\"** |\n| **partyRoleGroupId** | Multiple Ids Allowed  |Find Analytics for a particular Party Type Group Object. | **partyRoleGroupId:\"PTYGBnjxbx6tKNfVEP\"** |\n| **attorneyPartyRoleId** | Multiple Ids Allowed  |Find Analytics for a particular Attorney Party Type Object. | **attorneyPartyRoleId:\"PTYRiP8nMgPxBsPc5i\"** |\n| **attorneyPartyRoleGroupId** | Multiple Ids Allowed  |Find Analytics for a particular Attorney Party Type Group Object.. | **attorneyPartyRoleGroupId:\"PTYGBnjxbx6tKNfVEP\"** |\n| **caseFiledDate** | Single Allowed   |Find Analytics within a particular date range. | **caseFiledDate:[2018-05-08T00:00:00+00:00TO2019-05-08T00:00:00+00:00]** |\n| **JurisdictionGeo** | Multiple Ids Allowed  |Find Analytics within a particular Jurisdiction Geo. | **(JurisdictionGeo:(state:\"California\"))** |\n| **confidenceScore** | Single Allowed |Find Analytics for a given ConfidenceScore  | **confidenceScore>=0.5** |\n| **bestMatch** | Single Allowed |True if the normEntity has the highest Confidence Score of all possible normEntities | **bestMatch:true** |\n<br>\n## Example Query\nQuery to get all parties associated with attorney with norm id NATYfwmXwRHS279WPY of all cases with case type id CTYPATMYyaJekdgj2c and  case filed date between Jan 1st, 2017 to Nov 30th,2021<br>\nq=caseTypeId:\"CTYPATMYyaJekdgj2c\" AND caseFiledDate:[2017-01-01T00:00:00+00:00TO2021-11-30T00:00:00+00:00]\n<br><br>\n",
        "operationId": "getNormPartiesAssociatedWithNormAttorney",
        "parameters": [
          {
            "description": "The URL encoded query you are searching for. The query can be as simple as a keyword, but supports many additional options and filters. All options are documented above.",
            "examples": {
              "HTTP200-modifiedValue": {
                "summary": "Default value",
                "value": ""
              },
              "HTTP200-sampleAnalyticsQuery": {
                "summary": "sampleAnalyticsQuery",
                "value": "caseTypeId:\"CTYPATMYyaJekdgj2c\" AND caseFiledDate:[2017-01-01T00:00:00+00:00TO2021-11-30T00:00:00+00:00]"
              },
              "HTTP400-sample400AnalyticsQuery": {
                "summary": "sample400AnalyticsQuery",
                "value": "caseTypeId:\"CTYPATMYyaJekdgj2c\" AND caseFiledDate:[2018-01-01T00:00:00+00:00TO2021-11-3000:00:00+00:00]"
              },
              "HTTP404-sample404AnalyticsQuery": {
                "summary": "sample404AnalyticsQuery",
                "value": "caseTypeId:\"CTYPATMYy1Jekdgj2c\" AND caseFiledDate:[2018-01-01T00:00:00+00:00TO2021-11-30T00:00:00+00:00]"
              }
            },
            "in": "query",
            "name": "q",
            "schema": {
              "maxLength": 2048,
              "nullable": false,
              "type": "string"
            }
          },
          {
            "$ref": "#/components/parameters/AnalyticsPageParam"
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleAnalyticsQuery": {
                    "value": {
                      "associatedNormPartyArray": [
                        {
                          "caseCount": 3864,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCEUZAqAgQskeuPe",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-05T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-11-25T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "PORTFOLIO RECOVERY ASSOCIATES, L.L.C.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGrPmQyLdx9NGHcT",
                          "normPartyId": "NORGrPmQyLdx9NGHcT",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "200413310140",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 3801,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCBrqPSm9DST6btS",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-05T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-11-25T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "PORTFOLIO ASSOCIATES, INC.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGCJ2HBiSjcTuW3V",
                          "normPartyId": "NORGCJ2HBiSjcTuW3V",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "01875567",
                              "stateCode": "CA"
                            },
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "F99000002780",
                              "stateCode": "FL"
                            }
                          ]
                        },
                        {
                          "caseCount": 3801,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCEbPjGTEmA4wXJp",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-05T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-11-25T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "PORTFOLIO REALTY ASSOCIATES, L.P.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGcBsSQNBiiLxqsV",
                          "normPartyId": "NORGcBsSQNBiiLxqsV",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "B99000000208",
                              "stateCode": "FL"
                            },
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "199331400014",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 3800,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCY4qoVbRqYXy85Y",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-05T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-11-25T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "PORTFOLIO RECOVERY SERVICES INC.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGXX6jhQwzhVEuuv",
                          "normPartyId": "NORGXX6jhQwzhVEuuv",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "03486146",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 3800,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCPEZww9wrR6ySY6",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-05T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-11-25T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "PORTFOLIO RECOVERY MANAGEMENT GROUP INC.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGybh4QVJRZxa8f6",
                          "normPartyId": "NORGybh4QVJRZxa8f6",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "02924349",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 911,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCAWmAKQLvEbknrK",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-17T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-10-19T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "CITIBANK SERVICE CORPORATION",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGMZSznvVjGpUrn7",
                          "normPartyId": "NORGMZSznvVjGpUrn7",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "00544188",
                              "stateCode": "CA"
                            },
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "F94000002939",
                              "stateCode": "FL"
                            }
                          ]
                        },
                        {
                          "caseCount": 904,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCZCMRDmymikXamr",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-03T00:00:00+00:00",
                            "lastCaseFiledDate": "2019-03-20T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "MIDLAND FUNDING L.L.C.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGDiJQPjeed2mtvx",
                          "normPartyId": "NORGDiJQPjeed2mtvx",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "200801710065",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 267,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCXUhEUnkCLsFxGj",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-06-26T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-04-16T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "MERRICK MUSICAL CORPORATION",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGXMhSyyupeb8c8k",
                          "normPartyId": "NORGXMhSyyupeb8c8k",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "01964184",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 267,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCLr8QH6ev559ekY",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-06-26T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-04-16T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "MERRICK STUDIOS CORPORATION",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGiz5Uib7shyUujr",
                          "normPartyId": "NORGiz5Uib7shyUujr",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "00774288",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 89,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCMLuULHNMkTUWJF",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2020-01-30T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-11-10T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "JPMORGAN CHASE CALIFORNIA CORPORATION",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGERs3rgNvCExTTP",
                          "normPartyId": "NORGERs3rgNvCExTTP",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "03297309",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 89,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCSGsc8sveQAKsgX",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2020-01-30T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-11-10T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "JPMORGAN CHASE HOLDINGS L.L.C.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGFwuD7zFcKPtsMT",
                          "normPartyId": "NORGFwuD7zFcKPtsMT",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "201701410144",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 89,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCGFcg69zMK5AFGE",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2020-01-30T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-11-10T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "J.P. MORGAN CHASE NATIONAL CORPORATE SERVICES, INC.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGUvmHXJzEg759XQ",
                          "normPartyId": "NORGUvmHXJzEg759XQ",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "237593",
                              "stateCode": "NY"
                            },
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "00750701",
                              "stateCode": "CA"
                            },
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "857349",
                              "stateCode": "FL"
                            }
                          ]
                        },
                        {
                          "caseCount": 89,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCRRQfjD45tvn3TC",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2020-01-30T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-11-10T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "JPMORGAN CHASE BANK, NATIONAL ASSOCIATION",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGmvQFK3inz9ZFC4",
                          "normPartyId": "NORGmvQFK3inz9ZFC4",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "04244333",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 89,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCM4cTwRjDtDoh4B",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2020-01-30T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-11-10T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "JPMORGAN CHASE & CO.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGzSg9ZXixSyfTRL",
                          "normPartyId": "NORGzSg9ZXixSyfTRL",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "271359",
                              "stateCode": "NY"
                            },
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "03830176",
                              "stateCode": "CA"
                            },
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "800140016",
                              "stateCode": "TX"
                            },
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "F02000006289",
                              "stateCode": "FL"
                            }
                          ]
                        },
                        {
                          "caseCount": 44,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCnLS8JSZ6TFiPZD",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-03-21T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-03-27T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "CAPITOL VALLEY BANK",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGJ2VbTua6be43mQ",
                          "normPartyId": "NORGJ2VbTua6be43mQ",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "02127831",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 11,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCWwsALTX4TjH3G9",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-05-08T00:00:00+00:00",
                            "lastCaseFiledDate": "2019-06-21T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "CAPITOLBANK SACRAMENTO",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORG2383ePGgNMQKmS",
                          "normPartyId": "NORG2383ePGgNMQKmS",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "00760878",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 7,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCK6BuUQLiVTJ3ES",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-04-17T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-08-26T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "CITIBANK",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGpFQKkW3Ry8hjCa",
                          "normPartyId": "NORGpFQKkW3Ry8hjCa",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "00449214",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 3,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC3CLDKqM96eaqvW",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-08-11T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-09-11T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "HUNT & HENRIQUES, INC.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGYevnGAWWENhEQ9",
                          "normPartyId": "NORGYevnGAWWENhEQ9",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "03859431",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCKd86gGoLprr9ew",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-09-28T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-09-28T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "PORTFOLIO 21",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORG6BcZYZB579FeEe",
                          "normPartyId": "NORG6BcZYZB579FeEe",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "02180329",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCEigaxE2fjHZs6N",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-09-28T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-09-28T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "PORTFOLIO, INC.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGGo59xgUtYBJyS5",
                          "normPartyId": "NORGGo59xgUtYBJyS5",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "02633323",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCFM4uDWszB8HAaX",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-07-31T00:00:00+00:00",
                            "lastCaseFiledDate": "2017-07-31T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "MERCEDES-BENZ FINANCIAL SERVICES USA L.L.C.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGKduKPLKeDw8mDc",
                          "normPartyId": "NORGKduKPLKeDw8mDc",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "200708510018",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCfBvaA5iRhcdb6z",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-09-28T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-09-28T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "PORTFOLIO'S, INC.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGNwcCg5E4WyG87D",
                          "normPartyId": "NORGNwcCg5E4WyG87D",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "01315900",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCTtxKGEgyA6R4dn",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-09-28T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-09-28T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "PORTFOLIO L.L.C.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGWMbS2G4QQ5aVQL",
                          "normPartyId": "NORGWMbS2G4QQ5aVQL",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "199835710099",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCoRSJo9XiA6HTUU",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-09-28T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-09-28T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "PORTFOLIOS, LTD.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGWd5oDiaRLtuhv7",
                          "normPartyId": "NORGWd5oDiaRLtuhv7",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "00656645",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCbuGJejHWFC2Shw",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-09-28T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-09-28T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "PORTFOLIO, ETC., INC.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGm9h3XvJdX7UjEb",
                          "normPartyId": "NORGm9h3XvJdX7UjEb",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "02313737",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC2LCgXPTqK4dTiV",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-07-31T00:00:00+00:00",
                            "lastCaseFiledDate": "2017-07-31T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "MERCEDES-BENZ USA, L.L.C.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGnD89e7x9pjsCkY",
                          "normPartyId": "NORGnD89e7x9pjsCkY",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "200015210035",
                              "stateCode": "CA"
                            }
                          ]
                        }
                      ],
                      "nextPageAPI": null,
                      "previousPageAPI": null,
                      "totalCount": 26,
                      "totalPages": 1
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/AssociatedNormPartyResponse"
                }
              }
            },
            "description": "OK"
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "sample400AnalyticsQuery": {
                    "value": {
                      "code": "UN400",
                      "details": "caseFiledDate is not in a required format",
                      "message": "INVALID_INPUT",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Bad Request"
          },
          "404": {
            "content": {
              "application/json": {
                "examples": {
                  "sample404AnalyticsQuery": {
                    "value": {
                      "code": "UN404",
                      "details": "caseTypeId not found",
                      "message": "RESOURCE_NOT_FOUND",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Not Found"
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "example-1": {
                    "value": {
                      "code": "UN500",
                      "details": "Has encountered a situation which needs to be handled.",
                      "message": "INTERNAL_SERVER_ERROR",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Internal Server Error"
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Parties Represented By the Attorney.",
        "tags": [
          "Attorney Analytics API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [
        {
          "description": "Norm ID of Attorney. \n  - minimum: 18\n  - maximum: 18\n",
          "examples": {
            "HTTP200-sampleAnalyticsQuery": {
              "summary": "sampleAnalyticsQuery",
              "value": "NATYfwmXwRHS279WPY"
            },
            "HTTP400-sample400AnalyticsQuery": {
              "summary": "sample400AnalyticsQuery",
              "value": "NATYY29p78c7UoyJ1J"
            },
            "HTTP404-sample404AnalyticsQuery": {
              "summary": "sample404AnalyticsQuery",
              "value": "NATYY29p7857Uo1yJJ"
            }
          },
          "in": "path",
          "name": "normAttorneyId",
          "required": true,
          "schema": {
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          }
        }
      ],
      "x-api-name": "AssociatedNormPartiesForNormAttorneyAPI",
      "x-unicourt-tag": "AttorneyAnalyticsAPIs"
    },
    "/normAttorney/{normAttorneyId}/caseCountAnalyticsByOpposingNormAttorney": {
      "get": {
        "description": "Returns Case Analytics by Attorney.\n## Terms and Connectors\n| Connector | Schema   | Description  | Example |\n| ------| ------| ------|------|\n| **AND** ||Find analytics containing all connected terms. The word AND does not have to be capitalized.|**courtId:\"CORTV4vCEaKrhystBz\" AND courtLocationId:\"COLO6b82CkRqS846hx\"**|\n| **IN()** || Allows you to specify multiple values, for a limit of up to 10.| **courtId IN (\"CORTKQiA4LJuv54tEj\",\"CORTV4vCEaKrhystBz\")**|\n| **courtId** | Multiple Ids Allowed |Find Analytics for a particular Court Object. | **courtId:\"CORTV4vCEaKrhystBz\"** |\n| **courtSystemId** | Multiple Ids Allowed |Find Analytics for a particular Court System Object. | **courtSystemId:\"COSYACHBdMewtaG5DY\"** |\n| **courtTypeId** | Multiple Ids Allowed |Find Analytics for a particular Court Type Object. | **courtTypeId:\"COTPm8jjc2PAydpFhq\"** |\n| **courtLocationId** | Multiple Ids Allowed |Find Analytics for a particular Court Location Object. | **courtLocationId:\"COLO6b82CkRqS846hx\"** |\n| **caseTypeId** | Multiple Ids Allowed |Find Analytics for a particular Case Type Object. | **caseTypeId:\"CTYPATMYyaJekdgj2c\"** |\n| **caseTypeGroupId** | Multiple Ids Allowed |Find Analytics for a particular Case Type Group Object. | **caseTypeGroupId:\"CTYG8gZ6hPRKhhYi4Y\"** |\n| **areaOfLawId** | Multiple Ids Allowed |Find Analytics for a particular Area Of Law Object. | **areaOfLawId:\"AOFL2UxEWfVmTPMyqf\"** |\n| **caseClassId** | Multiple Ids Allowed |Find Analytics for a particular Case Class Category Object. | **caseClassId:\"CSCLNjbKTN7Yfo2wdb\"** |\n| **partyRoleId** | Multiple Ids Allowed |Find Analytics for a particular Party Type Object. | **partyRoleId:\"PTYRiP8nMgPxBsPc5i\"** |\n| **partyRoleGroupId** | Multiple Ids Allowed |Find Analytics for a particular Party Type Group Object. | **partyRoleGroupId:\"PTYGBnjxbx6tKNfVEP\"** |\n| **attorneyPartyRoleId** | Multiple Ids Allowed |Find Analytics for a particular Attorney Party Type Object. | **attorneyPartyRoleId:\"PTYRiP8nMgPxBsPc5i\"** |\n| **attorneyPartyRoleGroupId** | Multiple Ids Allowed |Find Analytics for a particular Attorney Party Type Group Object. | **attorneyPartyRoleGroupId:\"PTYGBnjxbx6tKNfVEP\"** |\n| **normPartyId** | Single Allowed  |Find Analytics for a particular Party Object. | **normPartyId:\"NORGrPmQyLdx9NGHcT\"** |\n| **normLawFirmId** | Single Allowed |Find Analytics for a particular Norm LawFirm Object. | **normLawFirmId:\"NORGrPmQyLdx9NGHcT\"** |\n| **normJudgeId** | Single Allowed |Find Analytics for a particular Judge Object. | **normJudgeId:\"NJUDT7jCZyFNeLGpRq\"** |\n| **caseFiledDate** | Single Allowed |Find Analytics within a particular date range. | **caseFiledDate:[2018-05-08T00:00:00+00:00TO2019-05-08T00:00:00+00:00]** |\n| **JurisdictionGeo** | Multiple filters Allowed |Find Analytics within a particular Jurisdiction Geo. | **(JurisdictionGeo:(state:\"California\"))** |\n| **confidenceScore** | Single Allowed |Find Analytics for a given ConfidenceScore  | **confidenceScore>=0.5** |\n| **bestMatch** | Single Allowed |True if the normEntity has the highest Confidence Score of all possible normEntities | **bestMatch:true** |\n<br>\n## Example Query\nQuery to get case count grouped by norm attorney with norm id NATYY29p78c7UoyJJ of all cases with case type id CTYPATMYyaJekdgj2c and filed between Jan 1st, 2017 to Nov 30th,2021<br>\nq=caseTypeId:\"CTYPATMYyaJekdgj2c\" AND caseFiledDate:[2017-01-01T00:00:00+00:00TO2021-11-30T00:00:00+00:00]\n",
        "operationId": "getCaseCountAnalyticsByOpposingNormAttorneyForANormAttorney",
        "parameters": [
          {
            "description": "The URL encoded query you are searching for. The query can be as simple as a keyword, but supports many additional options and filters. All options are documented above.",
            "examples": {
              "HTTP200-modifiedValue": {
                "summary": "Default value",
                "value": ""
              },
              "HTTP200-sampleAnalyticsQuery": {
                "summary": "sampleAnalyticsQuery",
                "value": "caseTypeId:\"CTYPATMYyaJekdgj2c\" AND caseFiledDate:[2017-01-01T00:00:00+00:00TO2021-11-30T00:00:00+00:00]"
              },
              "HTTP400-sample400AnalyticsQuery": {
                "summary": "sample400AnalyticsQuery",
                "value": "caseTypeId:\"CTYPATMYyaJekdgj2c\" AND caseFiledDate:[2018-01-01T00:00:00+00:00TO2021-11-3000:00:00+00:00]"
              },
              "HTTP404-sample404AnalyticsQuery": {
                "summary": "sample404AnalyticsQuery",
                "value": "caseTypeId:\"CTYPATMYy1Jekdgj2c\" AND caseFiledDate:[2018-01-01T00:00:00+00:00TO2021-11-30T00:00:00+00:00]"
              }
            },
            "in": "query",
            "name": "q",
            "schema": {
              "maxLength": 2048,
              "nullable": false,
              "type": "string"
            }
          },
          {
            "$ref": "#/components/parameters/AnalyticsPageParam"
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleAnalyticsQuery": {
                    "value": {
                      "nextPageAPI": null,
                      "object": "CaseCountAnalyticsByNormAttorneyResponse",
                      "previousPageAPI": null,
                      "results": [
                        {
                          "caseCount": 79,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCVGD7vqQmDnAbSw",
                          "normAttorneyId": "NATYt7pBEH8qMXcnuF",
                          "normAttorneyName": "STANLEY ROBERT APPS",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 17,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCMAeAsatG7Br5n4",
                          "normAttorneyId": "NATYZNM8MaPKYLpLnY",
                          "normAttorneyName": "DUSTIN ARTHUR YOUNG",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 16,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCUFmCutyzZgU6S7",
                          "normAttorneyId": "NATYVkpFGJhxABu4hR",
                          "normAttorneyName": "LYNDA E. JACOBS",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 15,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCQPky4pvh3YUaZa",
                          "normAttorneyId": "NATYJ5TEKNBJXLYn6U",
                          "normAttorneyName": "TIMOTHY DANIEL DUCAR",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 10,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC6KtM39BbWwxeu2",
                          "normAttorneyId": "NATYCAzdYGQXrpd4uB",
                          "normAttorneyName": "JENNIFER LYNN TUNDER",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 9,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC4e6tmpXPW4ndHv",
                          "normAttorneyId": "NATYxjzsbWXautzYLz",
                          "normAttorneyName": "KHALIL AHMAD",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 8,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCo7LaMszbbYUa5m",
                          "normAttorneyId": "NATY2yzDmw4uoGJSDX",
                          "normAttorneyName": "ROBERT SCHOEN",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 7,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCis8r8e9AtDjSiH",
                          "normAttorneyId": "NATYCURs4yjh7EMzPn",
                          "normAttorneyName": "ROBERT LEWIS SHEPARD",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 4,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCTDmp9h24sjMmux",
                          "normAttorneyId": "NATYNT26R9CsSH2mFk",
                          "normAttorneyName": "LISA JANE ESPADA",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 4,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCBYQUazJRdjCEKV",
                          "normAttorneyId": "NATYQ3GktcgyUH4tJG",
                          "normAttorneyName": "ADAM CHRISTIAN FULLMAN",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 4,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCLgMjBZVTkVGmWU",
                          "normAttorneyId": "NATYdJXuRUTPZHS734",
                          "normAttorneyName": "JOSEPH GEORGE SWEENEY III",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 4,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCGToCwAjpfP8VBb",
                          "normAttorneyId": "NATYdiERXcgj5QutzP",
                          "normAttorneyName": "MATHEW KIDMAN HIGBEE",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 4,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCdLQ7GjtaDQvGJ2",
                          "normAttorneyId": "NATYnvfxDLU9r8vdrR",
                          "normAttorneyName": "LINDA DIANNE DEOS",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 3,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCTZ9FzRxq7rsqXY",
                          "normAttorneyId": "NATYAkDSnfdm2YCEa3",
                          "normAttorneyName": "MR. CURTIS WAYNE MOLLOY",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 3,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCBJHokZXPRhDocZ",
                          "normAttorneyId": "NATYMXai4niHbzTvUd",
                          "normAttorneyName": "CARL H STARRETT II",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 3,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCgvKJiao29pCDwf",
                          "normAttorneyId": "NATYcWv3FAaf9tyQnQ",
                          "normAttorneyName": "KEVIN SAMUEL SULLIVAN",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 3,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC6FNE9L4bxgfKXH",
                          "normAttorneyId": "NATYiQ8HqbKbGcdNX7",
                          "normAttorneyName": "ANDREW E BENZINGER",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCTiuicwpuFDkwRU",
                          "normAttorneyId": "NATY7k4XJjkJMFBHUc",
                          "normAttorneyName": "DANIEL STEPHEN MARCH",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCUSDtvtDJ5KfZME",
                          "normAttorneyId": "NATYC7USTTUNxZD6mt",
                          "normAttorneyName": "SCOTT MICHAEL GRACE",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCCGn9RuuHzLUr3h",
                          "normAttorneyId": "NATYDnCJnMwmYMDCBq",
                          "normAttorneyName": "JANALIE ANN HENRIQUES",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCZQxQM7NqchpF5T",
                          "normAttorneyId": "NATYG4T8hthK2t4jkJ",
                          "normAttorneyName": "KATHY RABII",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCaNiiEdsoBPhjYt",
                          "normAttorneyId": "NATYPR4AFus4FWzyFx",
                          "normAttorneyName": "S. DAVID KOZICH",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC9HLFPcXJJmmGsP",
                          "normAttorneyId": "NATYRmLwGUDfDS92Qz",
                          "normAttorneyName": "CHRISTOPHER JAMES PETERS",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCLKas8nRM5gjiuV",
                          "normAttorneyId": "NATYZnY8Exmoe2rWGJ",
                          "normAttorneyName": "THOMAS DOMENICO SANDS",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCmMPF3gyzGEcx2s",
                          "normAttorneyId": "NATYbh4ZYzGcF2n4je",
                          "normAttorneyName": "MIKA KODA WILBUR",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCUaEzbeKW9u6cZJ",
                          "normAttorneyId": "NATY866f6fztb8ou8H",
                          "normAttorneyName": "ADRIEANNETTE LYNN CICCONE",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCjRmMpm8c7KpLsb",
                          "normAttorneyId": "NATY9ZoXkeLZ5XzXyP",
                          "normAttorneyName": "RACHEL HAVERKORN",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC3iyffehxTcHTUc",
                          "normAttorneyId": "NATYAhx5mpJtp8F9Je",
                          "normAttorneyName": "JORDAN ACHINS SUSSMAN",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC8CffRLXNTpczjT",
                          "normAttorneyId": "NATYDWH6EvUUK2TgtD",
                          "normAttorneyName": "KARI ANNETTE RUDD",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC56mPfvp6VwyW3d",
                          "normAttorneyId": "NATYEEwmQRn2zfoy96",
                          "normAttorneyName": "KERI L. SALET",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCVts9r4NPFS8sPZ",
                          "normAttorneyId": "NATYEj6Z8ekqh6C8kR",
                          "normAttorneyName": "PAUL LAWRENCE BRISSON",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCdQXtsWnBXvKFkt",
                          "normAttorneyId": "NATYGZ3Z7e89Fvopxj",
                          "normAttorneyName": "TYNEIA GENE MERRITT",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCKeuLfi8Fy7qEnS",
                          "normAttorneyId": "NATYHHdFA3LUhD882W",
                          "normAttorneyName": "LORENDA S STERN",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC5Vfis8Hr4fyeVz",
                          "normAttorneyId": "NATYHU3NC3GZay7suP",
                          "normAttorneyName": "TRACY LEE WOOD",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC8AZ8mGjVK7V6jS",
                          "normAttorneyId": "NATYHk4zgDtiJmrCfq",
                          "normAttorneyName": "DEVIN B. JACOBSEN",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCo6b7a9wVCt7XXQ",
                          "normAttorneyId": "NATYMCjTLeD3JvXRzH",
                          "normAttorneyName": "STEPHEN THOMAS CAMMACK",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCnfVjxxQoZuQFZS",
                          "normAttorneyId": "NATYPnEvNTUoifJB9A",
                          "normAttorneyName": "DHEERAJ KUMAR SINGHAL",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCDc6QphoDr85SeV",
                          "normAttorneyId": "NATYS8ZtKbzXwxopRi",
                          "normAttorneyName": "MATTHEW CHARLES MULLHOFER",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCPgcpMWZRz4GnxE",
                          "normAttorneyId": "NATYSk58mDmkikjutN",
                          "normAttorneyName": "MICHAEL FREDERICK CARDOZA",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCC2VMHxsmYh7ayy",
                          "normAttorneyId": "NATYUN4Z8vwB5tjDxJ",
                          "normAttorneyName": "CROSBY SCOTT CONNOLLY",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCm54HghzYtMawhq",
                          "normAttorneyId": "NATYUYJG9qZpSRUp8a",
                          "normAttorneyName": "S. JENNA MORENO-CORTEZ",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC2NXSYwGjEjjYn7",
                          "normAttorneyId": "NATYUfsZBcdZyevtkk",
                          "normAttorneyName": "MR. PHILIP MAURICE GREEN",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCk3x2pwwNPENYk4",
                          "normAttorneyId": "NATYVDsHR5EV3c3b3f",
                          "normAttorneyName": "OLIVER OKEY OLUMBA",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCN5Atxo8QdEzb3A",
                          "normAttorneyId": "NATYWZ8GfRLqQUVhiK",
                          "normAttorneyName": "RYAN PAUL KNUTSON",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCPGZYJQNoAgdmYR",
                          "normAttorneyId": "NATYZF6pk6D2qhhDPm",
                          "normAttorneyName": "TARA J MACOMBER",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCbiGaZYJqPp2igU",
                          "normAttorneyId": "NATYcKASwfY6Nx8wfp",
                          "normAttorneyName": "PAMELA FRANCES KLEINKAUF",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCZiMCbyT4wqDvua",
                          "normAttorneyId": "NATYcx74g3T6L2DSo6",
                          "normAttorneyName": "MICHAEL WILLIAM RUPPRECHT",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCQFUXaywjHP52Ka",
                          "normAttorneyId": "NATYdDvuawbCCQtMU5",
                          "normAttorneyName": "SAM DEHBOZORGI",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCDneVkyGeJW5Ldw",
                          "normAttorneyId": "NATYdverG7po7Zm4w2",
                          "normAttorneyName": "MARTIN DAVID GROSS",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC8aBqZXnzxP4AGq",
                          "normAttorneyId": "NATYfNJakBA6J4MZGk",
                          "normAttorneyName": "JESSICA LUCILLE CHYLIK",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCfaY5kdEuP47kM7",
                          "normAttorneyId": "NATYfpgEum7VMprSwB",
                          "normAttorneyName": "SAL PEREZ I",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC4Pi9hpHQhkXYUZ",
                          "normAttorneyId": "NATYgekmfwEG22b3fH",
                          "normAttorneyName": "DOUGLAS JOSEPH ROSNER",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCaEYgrc6bnMu3jV",
                          "normAttorneyId": "NATYhGZXsUmSSDKvx8",
                          "normAttorneyName": "JONATHAN GREGG STEIN",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCRL6McQRdtnibCM",
                          "normAttorneyId": "NATYhnsJkpEHz7nCzp",
                          "normAttorneyName": "ANDREW KASSOUF QUAN",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCUpwYLQww2kLXnM",
                          "normAttorneyId": "NATYkgEhQ2HrduzSTd",
                          "normAttorneyName": "WILLIAM ROUDOLPH HOPKINS",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCSMKRZwF7Y3795C",
                          "normAttorneyId": "NATYnSfNFrfxhaHKdc",
                          "normAttorneyName": "HEIDI JOYA",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCVKssNdBQ2j6NtS",
                          "normAttorneyId": "NATYp3zL2KotmcMc9W",
                          "normAttorneyName": "FRANK LADA KUCERA",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCfNXKSJKwbB8jdK",
                          "normAttorneyId": "NATYpQdpij5rDUqzeg",
                          "normAttorneyName": "ANTONIO VALLA",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCcHdwDcbDVTFAe8",
                          "normAttorneyId": "NATYrJVJy7q4c9GYFr",
                          "normAttorneyName": "ROBERT JOHN SPITZ",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCGfhWRytULGvZ3g",
                          "normAttorneyId": "NATYrq8hKQhTj3ezNw",
                          "normAttorneyName": "DOUGLAS BRAM JACOBS",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCmYCo26rCEoX8iJ",
                          "normAttorneyId": "NATYskDivgRyn36PLn",
                          "normAttorneyName": "JAMES ANTHONY MICHEL",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCKo6GVFfLKiKAFV",
                          "normAttorneyId": "NATYtUmCKUNN7NoSMz",
                          "normAttorneyName": "STEPHEN PAUL REIDER",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCBN5wrhwMCGVPKs",
                          "normAttorneyId": "NATYwsW5hBqgEjCEeW",
                          "normAttorneyName": "IAN DIPAK CHOWDHURY",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCGywP66TSPWT2ZG",
                          "normAttorneyId": "NATYyJejcFoxnXBjdv",
                          "normAttorneyName": "WILLIAM JAMES CAMPBELL JR",
                          "object": "CaseCountAnalyticsByNormAttorney"
                        }
                      ],
                      "totalCaseCount": 248,
                      "totalNormAttorneyCount": 64,
                      "totalPages": 1
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/CaseCountAnalyticsByNormAttorneyResponse"
                }
              }
            },
            "description": "OK"
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "sample400AnalyticsQuery": {
                    "value": {
                      "code": "UN400",
                      "details": "caseFiledDate is not in a required format",
                      "message": "INVALID_INPUT",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Bad Request"
          },
          "404": {
            "content": {
              "application/json": {
                "examples": {
                  "sample404AnalyticsQuery": {
                    "value": {
                      "code": "UN404",
                      "details": "caseTypeId not found",
                      "message": "RESOURCE_NOT_FOUND",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Not Found"
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "example-1": {
                    "value": {
                      "code": "UN500",
                      "details": "Has encountered a situation which needs to be handled.",
                      "message": "INTERNAL_SERVER_ERROR",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Internal Server Error"
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Case Count Analytics by Opposing Norm Attorney.",
        "tags": [
          "Case Analytics API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [
        {
          "description": "Norm ID of Attorney. \n  - minimum: 18\n  - maximum: 18\n",
          "examples": {
            "HTTP200-sampleAnalyticsQuery": {
              "summary": "sampleAnalyticsQuery",
              "value": "NATYfwmXwRHS279WPY"
            },
            "HTTP400-sample400AnalyticsQuery": {
              "summary": "sample400AnalyticsQuery",
              "value": "NATYY29p78c7UoyJJ1"
            },
            "HTTP404-sample404AnalyticsQuery": {
              "summary": "sample404AnalyticsQuery",
              "value": "NATYY29p7857UoyJJ1"
            }
          },
          "in": "path",
          "name": "normAttorneyId",
          "required": true,
          "schema": {
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          }
        }
      ],
      "x-api-name": "CaseCountAnalyticsByOpposingNormAttorneyAPI",
      "x-unicourt-tag": "AttorneyAnalyticsAPIs"
    },
    "/normAttorneySearch": {
      "get": {
        "description": "### All query parameters supported for this API can be found in below schema section. Schema --> NormAttorneySearchQueryObject\n",
        "operationId": "searchNormalizedAttorneys",
        "parameters": [
          {
            "description": "The URL encoded query you are searching for.\nThe query can be as simple as a keyword, but supports many additional options and filters.</a>\n",
            "examples": {
              "HTTP200-sampleSearchQuery": {
                "summary": "sampleSearchQuery",
                "value": "normAttorneyId:\"NATYhUvNaef3b2iP8D\""
              },
              "HTTP400-sampleSearchInvalidInputQuery": {
                "summary": "sampleSearchInvalidInputQuery",
                "value": "normattorneyid:\"NATYabUuTuEiuiRzc\""
              }
            },
            "in": "query",
            "name": "q",
            "schema": {
              "maxLength": 2000,
              "minLength": 3,
              "nullable": false,
              "type": "string"
            }
          },
          {
            "$ref": "#/components/parameters/pageParam"
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleSearchQuery": {
                    "summary": "sampleSearchQuery",
                    "value": {
                      "nextPageAPI": null,
                      "normAttorneySearchId": "ASRCJxUHYsgddr4Hc5",
                      "normAttorneySearchResultArray": [
                        {
                          "firstFetchDate": "2023-02-16T13:05:35+00:00",
                          "hasAssociatedPublicData": true,
                          "lastFetchDate": "2023-02-16T13:05:35+00:00",
                          "matchedObjectArray": [
                            {
                              "highlightSnippet": "<b>NATYhUvNaef3b2iP8D</b>",
                              "matchedObjectAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYhUvNaef3b2iP8D",
                              "matchedObjectAttribute": "normAttorneyId",
                              "matchedObjectId": "NATYhUvNaef3b2iP8D",
                              "matchedObjectName": "NormAttorney",
                              "object": "MatchedObject"
                            }
                          ],
                          "name": "JOHN TONY JOHN",
                          "normAttorneyDetailsAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYhUvNaef3b2iP8D",
                          "normAttorneyId": "NATYhUvNaef3b2iP8D",
                          "object": "NormAttorneySearchResult"
                        }
                      ],
                      "object": "NormAttorneySearchResponse",
                      "pageNumber": 1,
                      "previousPageAPI": null,
                      "q": "normAttorneyId%3A%22NATYhUvNaef3b2iP8D%22",
                      "totalCount": 1,
                      "totalPages": 1
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/NormAttorneySearchResponse"
                }
              }
            },
            "description": "Success"
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleSearchInvalidInputQuery": {
                    "$ref": "#/components/examples/SAMPLE_SEARCH_INVALID_INPUT_QUERY"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Error"
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "INTERNAL_SERVER_ERROR": {
                    "$ref": "#/components/examples/INTERNAL_SERVER_ERROR"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Error"
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Attorney search.",
        "tags": [
          "Attorney Analytics API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [],
      "x-api-name": "NormalizedAttorneySearchAPI",
      "x-unicourt-tag": "AttorneyAnalyticsAPIs"
    },
    "/normAttorneySearch/{normAttorneySearchId}": {
      "get": {
        "description": "### All query parameters supported for this API can be found in below schema section. Schema --> NormAttorneySearchQueryObject\n",
        "operationId": "searchNormalizedAttorneysById",
        "parameters": [
          {
            "$ref": "#/components/parameters/pageParam"
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleSearchQuery": {
                    "summary": "sampleSearchQuery",
                    "value": {
                      "nextPageAPI": null,
                      "normAttorneySearchId": "ASRCJxUHYsgddr4Hc5",
                      "normAttorneySearchResultArray": [
                        {
                          "firstFetchDate": "2023-02-16T13:05:35+00:00",
                          "hasAssociatedPublicData": true,
                          "lastFetchDate": "2023-02-16T13:05:35+00:00",
                          "matchedObjectArray": [
                            {
                              "highlightSnippet": "<b>NATYhUvNaef3b2iP8D</b>",
                              "matchedObjectAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYhUvNaef3b2iP8D",
                              "matchedObjectAttribute": "normAttorneyId",
                              "matchedObjectId": "NATYhUvNaef3b2iP8D",
                              "matchedObjectName": "NormAttorney",
                              "object": "MatchedObject"
                            }
                          ],
                          "name": "JOHN TONY JOHN",
                          "normAttorneyDetailsAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYhUvNaef3b2iP8D",
                          "normAttorneyId": "NATYhUvNaef3b2iP8D",
                          "object": "NormAttorneySearchResult"
                        }
                      ],
                      "object": "NormAttorneySearchResponse",
                      "pageNumber": 1,
                      "previousPageAPI": null,
                      "q": "normAttorneyId%3A%22NATYhUvNaef3b2iP8D%22",
                      "totalCount": 1,
                      "totalPages": 1
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/NormAttorneySearchResponse"
                }
              }
            },
            "description": "Success"
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleInvalidPageNumberParam": {
                    "$ref": "#/components/examples/SAMPLE_SEARCH_INVALID_PAGE_NUMBER_PARAM"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Error"
          },
          "404": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleNotFoundResource": {
                    "value": {
                      "code": "UN404",
                      "details": "normAttorneySearchId resource you were looking for doesn't exist.",
                      "message": "RESOURCE_NOT_FOUND",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if the resource is not found."
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "INTERNAL_SERVER_ERROR": {
                    "$ref": "#/components/examples/INTERNAL_SERVER_ERROR"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Error"
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Norm attorney search results for a given normAttorneySearchId.",
        "tags": [
          "Attorney Analytics API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [
        {
          "description": "Norm Attorney Search information for the given normAttorneySearchId.",
          "examples": {
            "HTTP200-sampleSearchQuery": {
              "summary": "sampleSearchQuery",
              "value": "ASRCJxUHYsgddr4Hc5"
            },
            "HTTP400-sampleInvalidPageNumberParam": {
              "summary": "sampleInvalidPageNumberParam",
              "value": "ASRCJxUHYsgddr4Hc5"
            },
            "HTTP404-sampleNotFoundResource": {
              "summary": "sampleNotFoundResource",
              "value": "ASRQet7s2ZT7JjRPQg"
            }
          },
          "in": "path",
          "name": "normAttorneySearchId",
          "required": true,
          "schema": {
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          }
        }
      ],
      "x-api-name": "NormalizedAttorneySearchByIdAPI",
      "x-unicourt-tag": "AttorneyAnalyticsAPIs"
    },
    "/normJudge/{normJudgeId}": {
      "get": {
        "description": "The Judge API allows you to look up Judge Details by normJudgeId.\n",
        "operationId": "getNormJudgeById",
        "parameters": [],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleAnalyticsQuery": {
                    "value": {
                      "caseAnalyticsAPI": {
                        "caseCountAnalyticsByAreaOfLawAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByAreaOfLaw?q=normJudgeId:NJUDT7jCZyFNeLGpRq&pageNumber=1",
                        "caseCountAnalyticsByCaseClassAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByCaseClass?q=normJudgeId:NJUDT7jCZyFNeLGpRq&pageNumber=1",
                        "caseCountAnalyticsByCaseTypeAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByCaseType?q=normJudgeId:NJUDT7jCZyFNeLGpRq&pageNumber=1",
                        "caseCountAnalyticsByCaseTypeGroupAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByCaseTypeGroup?q=normJudgeId:NJUDT7jCZyFNeLGpRq&pageNumber=1",
                        "caseCountAnalyticsByCourtAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByCourt?q=normJudgeId:NJUDT7jCZyFNeLGpRq&pageNumber=1",
                        "caseCountAnalyticsByCourtLocationAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByCourtLocation?q=normJudgeId:NJUDT7jCZyFNeLGpRq&pageNumber=1",
                        "caseCountAnalyticsByCourtSystemAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByCourtSystem?q=normJudgeId:NJUDT7jCZyFNeLGpRq&pageNumber=1",
                        "caseCountAnalyticsByCourtTypeAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByCourtType?q=normJudgeId:NJUDT7jCZyFNeLGpRq&pageNumber=1",
                        "caseCountAnalyticsByJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByJurisdictionGeo?q=normJudgeId:NJUDT7jCZyFNeLGpRq&pageNumber=1",
                        "caseCountAnalyticsByPartyRoleAPI": null,
                        "caseCountAnalyticsByPartyRoleGroupAPI": null,
                        "object": "CaseAnalyticsAPI",
                        "totalCases": 67748
                      },
                      "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCZX524UqtyR7gMc",
                      "firstName": "ANN",
                      "hasAssociatedPublicData": true,
                      "judgeAnalyticsAPI": {
                        "associatedNormAttorneysAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDT7jCZyFNeLGpRq/associatedNormAttorneys?pageNumber=1",
                        "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDT7jCZyFNeLGpRq/associatedNormLawFirms?pageNumber=1",
                        "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDT7jCZyFNeLGpRq/associatedNormParties?pageNumber=1",
                        "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDT7jCZyFNeLGpRq",
                        "object": "JudgeAnalyticsAPI"
                      },
                      "judicialDataArray": [
                        {
                          "abaRatings": {
                            "rating": null,
                            "year": null
                          },
                          "aliasArray": [],
                          "bio": {
                            "birthCity": null,
                            "birthDate": null,
                            "birthState": null,
                            "deathCity": null,
                            "deathDate": null,
                            "deathState": null,
                            "ethnicity": null,
                            "politicalAffiliation": null
                          },
                          "contact": {
                            "addressArray": [
                              {
                                "city": "NORWALK",
                                "countryCode": null,
                                "countryName": "OUTSIDE US",
                                "firstFetchDate": "2020-01-22T05:46:05+00:00",
                                "isVisible": true,
                                "lastFetchDate": "2020-05-12T09:35:15+00:00",
                                "latitude": null,
                                "longitude": null,
                                "object": "Address",
                                "stateCode": "CA",
                                "stateName": "CALIFORNIA",
                                "streetAddress1": "NORWALK COURTHOUSE 12720 NORWALK BLVD.",
                                "streetAddress2": null,
                                "zip": "90650",
                                "zip4": null
                              }
                            ],
                            "emailArray": [],
                            "object": "Contact",
                            "phoneNumberArray": [
                              {
                                "firstFetchDate": "2020-01-22T05:46:05+00:00",
                                "isVisible": true,
                                "lastFetchDate": "2020-01-22T05:46:05+00:00",
                                "object": "Phone",
                                "phoneNumber": "(562) 345-3722",
                                "phoneType": "DEFAULT"
                              }
                            ]
                          },
                          "educationArray": [],
                          "firstFetchDate": "2020-01-22T05:46:05+00:00",
                          "judicialSource": {
                            "name": "Superior Court of California Los Angeles County",
                            "type": "Website",
                            "url": "https://www.lacourt.org/judicialofficers/ui/SearchResult.aspx"
                          },
                          "judicialStatus": "ACTIVE",
                          "lastFetchDate": "2020-01-22T05:46:05+00:00",
                          "lastFetchDateWithUpdates": "2020-01-22T05:46:05+00:00",
                          "nameHistoryArray": [
                            {
                              "firstName": "Ann",
                              "isVisible": true,
                              "lastName": "Park",
                              "middleName": "H.",
                              "prefix": null,
                              "suffix": null
                            }
                          ],
                          "object": "NormJudgePublicData",
                          "professionalCareerArray": [],
                          "serviceHistoryArray": [
                            {
                              "appointedBy": null,
                              "fromDate": null,
                              "fromYear": null,
                              "isVisible": true,
                              "object": "ServiceHistory",
                              "reasonForTermination": null,
                              "sourceCourt": "LOS ANGELES COUNTY SUPERIOR COURT",
                              "title": "JUDGE",
                              "toDate": null,
                              "toYear": null
                            }
                          ]
                        },
                        {
                          "abaRatings": {
                            "rating": null,
                            "year": null
                          },
                          "aliasArray": [],
                          "bio": {
                            "birthCity": null,
                            "birthDate": null,
                            "birthState": null,
                            "deathCity": null,
                            "deathDate": null,
                            "deathState": null,
                            "ethnicity": null,
                            "politicalAffiliation": null
                          },
                          "contact": {
                            "addressArray": [],
                            "emailArray": [],
                            "object": "Contact",
                            "phoneNumberArray": []
                          },
                          "educationArray": [],
                          "firstFetchDate": "2019-09-19T04:36:32+00:00",
                          "judicialSource": {
                            "name": "Ballotpedia",
                            "type": "Other",
                            "url": null
                          },
                          "judicialStatus": "CURRENT",
                          "lastFetchDate": "2020-09-18T07:25:33+00:00",
                          "lastFetchDateWithUpdates": "2020-09-18T07:25:33+00:00",
                          "nameHistoryArray": [
                            {
                              "firstName": "Ann",
                              "isVisible": true,
                              "lastName": "Park",
                              "middleName": "H.",
                              "prefix": null,
                              "suffix": null
                            }
                          ],
                          "object": "NormJudgePublicData",
                          "professionalCareerArray": [],
                          "serviceHistoryArray": [
                            {
                              "appointedBy": "Election",
                              "fromDate": null,
                              "fromYear": null,
                              "isVisible": true,
                              "object": "ServiceHistory",
                              "reasonForTermination": null,
                              "sourceCourt": "SUPERIOR COURT OF MARIPOSA COUNTY",
                              "title": "JUDGE",
                              "toDate": "2027-01-04T00:00:00+00:00",
                              "toYear": 2027
                            },
                            {
                              "appointedBy": "Election",
                              "fromDate": null,
                              "fromYear": null,
                              "isVisible": true,
                              "object": "ServiceHistory",
                              "reasonForTermination": null,
                              "sourceCourt": "SUPERIOR COURT OF LOS ANGELES COUNTY",
                              "title": "JUDGE",
                              "toDate": "2027-01-04T00:00:00+00:00",
                              "toYear": 2027
                            }
                          ]
                        }
                      ],
                      "lastName": "PARK",
                      "middleName": "H.",
                      "name": "ANN H. PARK",
                      "normJudgeId": "NJUDT7jCZyFNeLGpRq",
                      "object": "NormJudge"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/NormJudge"
                }
              }
            },
            "description": "OK"
          },
          "404": {
            "content": {
              "application/json": {
                "examples": {
                  "sample404AnalyticsQuery": {
                    "value": {
                      "code": "UN404",
                      "details": "Normalised Judge Not Found",
                      "message": "RESOURCE_NOT_FOUND",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Not Found"
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "example-1": {
                    "value": {
                      "code": "UN500",
                      "details": "Has encountered a situation which needs to be handled.",
                      "message": "INTERNAL_SERVER_ERROR",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Internal Server Error"
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Norm Judge Details.",
        "tags": [
          "Judge Analytics API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [
        {
          "description": "Norm  ID of the Judge.\n  - minimum: 18\n  - maximum: 18\n",
          "examples": {
            "HTTP200-sampleAnalyticsQuery": {
              "summary": "sampleAnalyticsQuery",
              "value": "NJUDT7jCZyFNeLGpRq"
            },
            "HTTP404-sample404AnalyticsQuery": {
              "summary": "sample404AnalyticsQuery",
              "value": "NORGrPmQyLdx9NGHcT"
            }
          },
          "in": "path",
          "name": "normJudgeId",
          "required": true,
          "schema": {
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          }
        }
      ],
      "x-api-name": "NormJudgeAPI",
      "x-unicourt-tag": "JudgeAnalyticsAPIs"
    },
    "/normJudge/{normJudgeId}/associatedNormAttorneys": {
      "get": {
        "description": "Returns a list of attorneys associated with a judge.\n## Terms and Connectors\n| Connector | Schema   | Description  | Example |\n| ------| ------| ------|------|\n| **AND** ||Find analytics containing all connected terms. The word AND does not have to be capitalized.|**courtId:\"CORTV4vCEaKrhystBz\" AND courtLocationId:\"COLO6b82CkRqS846hx\"**|\n| **IN()** || Allows you to specify multiple values, for a limit of up to 10.| **courtLocationId IN (\"COLOOY8WTHDBLL0eWv\",\"COLOItKA5pBVovpQSZ\")**|\n| **courtId** | Multiple Ids Allowed  |Find Analytics for a particular Court Object. | **courtId:\"CORTV4vCEaKrhystBz\"** |\n| **courtSystemId** | Multiple Ids Allowed  |Find Analytics for a particular Court System Object. | **courtSystemId:\"COSYACHBdMewtaG5DY\"** |\n| **courtTypeId** | Multiple Ids Allowed  |Find Analytics for a particular Court Type Object. | **courtTypeId:\"COTPm8jjc2PAydpFhq\"** |\n| **courtLocationId** | Multiple Ids Allowed  |Find Analytics for a particular Court Location Object. | **courtLocationId:\"COLO6b82CkRqS846hx\"** |\n| **caseTypeId** | Multiple Ids Allowed  |Find Analytics for a particular Case Type Object. | **caseTypeId:\"CTYPATMYyaJekdgj2c\"** |\n| **caseTypeGroupId** | Multiple Ids Allowed  |Find Analytics for a particular Case Type Group Object. | **caseTypeGroupId:\"CTYG8gZ6hPRKhhYi4Y\"** |\n| **areaOfLawId** | Multiple Ids Allowed  |Find Analytics for a particular Area Of Law Object. | **areaOfLawId:\"AOFL2UxEWfVmTPMyqf\"** |\n| **caseClassId** | Multiple Ids Allowed  |Find Analytics for a particular Case Class Category Object. | **caseClassId:\"CSCLNjbKTN7Yfo2wdb\"** |\n| **caseFiledDate** | Single Allowed |Find Analytics within a particular date range. | **caseFiledDate:[2018-05-08T00:00:00+00:00TO2019-05-08T00:00:00+00:00]** |\n| **JurisdictionGeo** | Multiple Ids Allowed  |Find Analytics within a particular Jurisdiction Geo. | **(JurisdictionGeo:(state:\"California\"))** |\n| **confidenceScore** | Single Allowed |Find Analytics for a given ConfidenceScore  | **confidenceScore>=0.5** |\n| **bestMatch** | Single Allowed |True if the normEntity has the highest Confidence Score of all possible normEntities | **bestMatch:true** |\n<br>\n## Example Query\nQuery to get all attorneys associated with judge with norm id NJUDT7jCZyFNeLGpRq of all cases with case type id CTYPATMYyaJekdgj2c and case filed date between Jan 1st, 2017 to Nov 30th,2021<br>\nq=caseTypeId:\"CTYPATMYyaJekdgj2c\" AND caseFiledDate:[2017-01-01T00:00:00+00:00TO2021-11-30T00:00:00+00:00]\n<br><br>\n",
        "operationId": "getNormAttorneysAssociatedWithNormJudge",
        "parameters": [
          {
            "description": "The URL encoded query you are searching for. The query can be as simple as a keyword, but supports many additional options and filters. All options are documented above.",
            "examples": {
              "HTTP200-modifiedValue": {
                "summary": "Default value",
                "value": ""
              },
              "HTTP200-sampleAnalyticsQuery": {
                "summary": "sampleAnalyticsQuery",
                "value": "caseTypeId:\"CTYPATMYyaJekdgj2c\" AND caseFiledDate:[2017-01-01T00:00:00+00:00TO2021-11-30T00:00:00+00:00]"
              },
              "HTTP400-sample400AnalyticsQuery": {
                "summary": "sample400AnalyticsQuery",
                "value": "caseTypeId:\"CTYPATMYyaJekdgj2c\" AND caseFiledDate:[2018-01-01T00:00:00+00:00TO2021-11-3000:00:00+00:00]"
              },
              "HTTP404-sample404AnalyticsQuery": {
                "summary": "sample404AnalyticsQuery",
                "value": "caseTypeId:\"CTYPATMYy1Jekdgj2c\" AND caseFiledDate:[2018-01-01T00:00:00+00:00TO2021-11-30T00:00:00+00:00]"
              }
            },
            "in": "query",
            "name": "q",
            "schema": {
              "maxLength": 2048,
              "nullable": false,
              "type": "string"
            }
          },
          {
            "$ref": "#/components/parameters/AnalyticsPageParam"
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleAnalyticsQuery": {
                    "value": {
                      "associatedNormAttorneyArray": [
                        {
                          "caseCount": 2298,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCNtrAJZEudbEThP",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-13T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-01-08T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "JORDAN",
                          "lastName": "COOK",
                          "middleName": "DAVID",
                          "name": "JORDAN DAVID COOK",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYp7kmEQtt8jQ3eQ",
                          "normAttorneyId": "NATYp7kmEQtt8jQ3eQ",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "179720",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 2117,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCUPHn2xmWnNKBNz",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-04-24T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-01-08T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "KERI",
                          "lastName": "SALET",
                          "middleName": "L.",
                          "name": "KERI L. SALET",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYEEwmQRn2zfoy96",
                          "normAttorneyId": "NATYEEwmQRn2zfoy96",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "318913",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 1642,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCcpuu383Debwf4S",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-18T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-01-08T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "ROBERT",
                          "lastName": "KENNARD",
                          "middleName": "SCOTT",
                          "name": "ROBERT SCOTT KENNARD",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYeuDMqQWYVXZ4JT",
                          "normAttorneyId": "NATYeuDMqQWYVXZ4JT",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "117017",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            },
                            {
                              "barNumber": "43371",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "WA"
                            }
                          ]
                        },
                        {
                          "caseCount": 1577,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCRDKmWJf8Y6Qayk",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-10-22T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-05-11T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "TODD",
                          "lastName": "SIMONSON",
                          "middleName": "CHRISTOPHER",
                          "name": "TODD CHRISTOPHER SIMONSON",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYG87cVd75Ucf3NH",
                          "normAttorneyId": "NATYG87cVd75Ucf3NH",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "224346",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 1387,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCmSpYZujvi3i39h",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2019-01-17T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-05-11T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "TODD",
                          "lastName": "SIMONSON",
                          "middleName": "CHARLES",
                          "name": "TODD CHARLES SIMONSON",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYhnBQJ2xocfEohA",
                          "normAttorneyId": "NATYhnBQJ2xocfEohA",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "203234",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 1328,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC6f4rN3NamXJCaw",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-13T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-12-30T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "CHRISTOPHER",
                          "lastName": "MANDARICH",
                          "middleName": "D",
                          "name": "CHRISTOPHER D MANDARICH",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYwaE6TJ4G39BUqh",
                          "normAttorneyId": "NATYwaE6TJ4G39BUqh",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "220693",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 985,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCgSnBwoDBnt8bNy",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-07T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-01-05T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "FLINT",
                          "lastName": "ZIDE",
                          "middleName": "COREY",
                          "name": "FLINT COREY ZIDE",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYszbut5by4KFqjn",
                          "normAttorneyId": "NATYszbut5by4KFqjn",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "160369",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 869,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCSELL73ggtbsaNR",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-01-05T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-01-06T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "JOHN",
                          "lastName": "KENOSIAN",
                          "middleName": "PAUL",
                          "name": "JOHN PAUL KENOSIAN",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYvaVnCmFSRAuSbL",
                          "normAttorneyId": "NATYvaVnCmFSRAuSbL",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "80261",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 836,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCYvDR2C7ykS9R4Z",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2019-01-25T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-02-18T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "JOSIE",
                          "lastName": "ZIMMERMANN",
                          "middleName": "SUE",
                          "name": "JOSIE SUE ZIMMERMANN",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY3TcqEy7MWhL8s2",
                          "normAttorneyId": "NATY3TcqEy7MWhL8s2",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "324511",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 836,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC2mTyvBtKq5je5V",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-04-25T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-01-06T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "THOMAS",
                          "lastName": "SEBOURN",
                          "middleName": "J",
                          "name": "THOMAS J SEBOURN",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYoBRRsvPR84FiSW",
                          "normAttorneyId": "NATYoBRRsvPR84FiSW",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "279272",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 786,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCJSxUb5aQRRkUHh",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-08T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-12-29T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "JASON",
                          "lastName": "TANG",
                          "middleName": "W.",
                          "name": "JASON W. TANG",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYoy7T73GVhHRNh3",
                          "normAttorneyId": "NATYoy7T73GVhHRNh3",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "314337",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 785,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCgrUUefu7wEFWfh",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-06T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-08-28T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "JACK",
                          "lastName": "POGOSIAN",
                          "middleName": "H.",
                          "name": "JACK H. POGOSIAN",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYxBxhpjtZGGWq4G",
                          "normAttorneyId": "NATYxBxhpjtZGGWq4G",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "305741",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 777,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRChJtnXHm2ehBGwx",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-10-23T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-01-08T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "SARKIS",
                          "lastName": "KARAYAN",
                          "middleName": "SERGO",
                          "name": "SARKIS SERGO KARAYAN",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYf8xb8JRErB3EJn",
                          "normAttorneyId": "NATYf8xb8JRErB3EJn",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "316926",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 771,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCMnvhiex4bBwWZT",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-08-31T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-12-29T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "NICHOLAS",
                          "lastName": "BABILIS",
                          "middleName": "JOHN",
                          "name": "NICHOLAS JOHN BABILIS",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYtMUk8YnQLQQDDZ",
                          "normAttorneyId": "NATYtMUk8YnQLQQDDZ",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "291676",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            },
                            {
                              "barNumber": "14942",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "UT"
                            }
                          ]
                        },
                        {
                          "caseCount": 750,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCELrw3FA8MAtR4d",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-05T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-12-29T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "RANJEET",
                          "lastName": "BRAR",
                          "middleName": "KAUR",
                          "name": "RANJEET KAUR BRAR",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYQ2t5CQTm8ohNqu",
                          "normAttorneyId": "NATYQ2t5CQTm8ohNqu",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "297142",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 744,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCoH3Rqa9aPpcPJD",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-12-03T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-11-23T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "CAMRYN",
                          "lastName": "BERK",
                          "middleName": "P.",
                          "name": "CAMRYN P. BERK",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYd63CyvSyTnXKw6",
                          "normAttorneyId": "NATYd63CyvSyTnXKw6",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "317565",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 739,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCXo6V2Pesi65DXf",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-12-04T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-07-27T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "CHRISTINE",
                          "lastName": "SIDUGUEN",
                          "middleName": "SUFEN-CHANG",
                          "name": "SIDUGUEN CHRISTINE S",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYbpfT97upBenSvg",
                          "normAttorneyId": "NATYbpfT97upBenSvg",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "240380",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 730,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCjnyvY3UnwoTgiX",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-05T00:00:00+00:00",
                            "lastCaseFiledDate": "2019-04-24T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "ELIZABETH",
                          "lastName": "BLEIER",
                          "middleName": "ANN",
                          "name": "ELIZABETH ANN BLEIER",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYUnW9nHqi2K3hHU",
                          "normAttorneyId": "NATYUnW9nHqi2K3hHU",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "81470",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 691,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC7qGbXYTRPE2Zhn",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2019-04-05T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-01-08T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "TIFFANY",
                          "lastName": "PACK",
                          "middleName": "ANNE",
                          "name": "TIFFANY ANNE PACK",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYySgsw4fFnAnoUX",
                          "normAttorneyId": "NATYySgsw4fFnAnoUX",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "323159",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 666,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCWJcgx8EsAQmGsR",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-27T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-12-10T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "LORI",
                          "lastName": "WILLIAMS",
                          "middleName": "NICOLE",
                          "name": "LORI NICOLE WILLIAMS",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYqfApDiEZvDwsxa",
                          "normAttorneyId": "NATYqfApDiEZvDwsxa",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "242985",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 660,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCUgDgVtwJusjGTC",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-10-22T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-12-16T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "ADAM",
                          "lastName": "RIVERA",
                          "middleName": "MICHAEL",
                          "name": "ADAM MICHAEL RIVERA",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYjhwxXFVwTo6iVk",
                          "normAttorneyId": "NATYjhwxXFVwTo6iVk",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "321236",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 654,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCPX6QaXfAn868Ke",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-13T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-11-30T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "DEVIN",
                          "lastName": "JACOBSEN",
                          "middleName": "B.",
                          "name": "DEVIN B. JACOBSEN",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYHk4zgDtiJmrCfq",
                          "normAttorneyId": "NATYHk4zgDtiJmrCfq",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "308722",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 640,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC3xurmtyXcjmsd9",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-04-12T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-01-06T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "CARINA",
                          "lastName": "JORDAN",
                          "middleName": "MARIE",
                          "name": "CARINA MARIE JORDAN",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYH6in6PmbyWM6Mm",
                          "normAttorneyId": "NATYH6in6PmbyWM6Mm",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "302099",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 620,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC9BfX8j4DiZHzM3",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-09T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-12-31T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "BRYANT",
                          "lastName": "BURNSTAD",
                          "middleName": "MICHAEL",
                          "name": "BRYANT MICHAEL BURNSTAD",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYx3ojtSZJ88JdPD",
                          "normAttorneyId": "NATYx3ojtSZJ88JdPD",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "297286",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 565,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCkGetvWg9zDEzGQ",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-16T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-11-30T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "EMILY",
                          "lastName": "COLLINS",
                          "middleName": "BLAKE",
                          "name": "EMILY ANNE BLAKE",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYHvD82kLpEx2vZW",
                          "normAttorneyId": "NATYHvD82kLpEx2vZW",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "311804",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 502,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC3GQf5e2DYHvBhW",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-07T00:00:00+00:00",
                            "lastCaseFiledDate": "2019-07-12T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "MICHAEL",
                          "lastName": "KAHN",
                          "middleName": "DOUGLAS",
                          "name": "MICHAEL DOUGLAS KAHN",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYfekGEc4PWKEzx8",
                          "normAttorneyId": "NATYfekGEc4PWKEzx8",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "236898",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 490,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCkYNkho2CbGt7tr",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-13T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-11-16T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "MICHAEL",
                          "lastName": "VLACHOS",
                          "middleName": "GEORGE",
                          "name": "MICHAEL GEORGE VLACHOS",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYJsbtx5UmAsF4QQ",
                          "normAttorneyId": "NATYJsbtx5UmAsF4QQ",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "312398",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            },
                            {
                              "barNumber": "52290",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "WA"
                            },
                            {
                              "barNumber": null,
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "IL"
                            },
                            {
                              "barNumber": "P80201",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "MI"
                            }
                          ]
                        },
                        {
                          "caseCount": 471,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCLpkVFixQyju4j4",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-06-21T00:00:00+00:00",
                            "lastCaseFiledDate": "2019-06-07T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "BRIAN",
                          "lastName": "WINN",
                          "middleName": "NEVINS",
                          "name": "BRIAN NEVINS WINN",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYxPSLTmwjGeuAGZ",
                          "normAttorneyId": "NATYxPSLTmwjGeuAGZ",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "86779",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 469,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC85GujSHKLzvaFH",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-13T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-12-24T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "ANGIE",
                          "lastName": "HOAR",
                          "middleName": "HONG",
                          "name": "ANGIE HONG HOAR",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYAvjGaWG92ggvLn",
                          "normAttorneyId": "NATYAvjGaWG92ggvLn",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "212152",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 458,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC4VVsAucSyuN6Cj",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-13T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-12-29T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "LAURA",
                          "lastName": "HOALST",
                          "middleName": "MCCARTHY",
                          "name": "LAURA MCCARTHY HOALST",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYFCZhsZcpHFigzc",
                          "normAttorneyId": "NATYFCZhsZcpHFigzc",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "101082",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 426,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCEf47jcnGttMrY7",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-05T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-01-07T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "DAVID",
                          "lastName": "MCGAFFEY",
                          "middleName": "C.",
                          "name": "DAVID C. MCGAFFEY",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYbEo2jauwyaQzzj",
                          "normAttorneyId": "NATYbEo2jauwyaQzzj",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "315632",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 425,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCS384RjmyHaUQz2",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-05T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-11-30T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "ANTHONY",
                          "lastName": "DIPIERO",
                          "middleName": "J",
                          "name": "ANTHONY J DIPIERO",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY2r4VdnvZzB3qeD",
                          "normAttorneyId": "NATY2r4VdnvZzB3qeD",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "268246",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 424,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCSkePoqRM7HRMiX",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-05T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-11-30T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "LISA",
                          "lastName": "HERME",
                          "middleName": "MELISSA",
                          "name": "LISA MELISSA HERME",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYVgpD4pCwhKEsko",
                          "normAttorneyId": "NATYVgpD4pCwhKEsko",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "283111",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            },
                            {
                              "barNumber": "54713",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "WA"
                            }
                          ]
                        },
                        {
                          "caseCount": 406,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCjXXVWR5dPbBmKh",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-28T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-01-07T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "LINA",
                          "lastName": "MICHAEL",
                          "middleName": "M",
                          "name": "LINA M MICHAEL",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYPmgnWrrXjUeCX5",
                          "normAttorneyId": "NATYPmgnWrrXjUeCX5",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "237842",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 401,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCYw7Fott2bfbHwr",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-07T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-12-01T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "JASON",
                          "lastName": "BURROWS",
                          "middleName": "MICHAEL",
                          "name": "MR. JASON MICHAEL BURROWS",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYWrjEe3XSAse6cg",
                          "normAttorneyId": "NATYWrjEe3XSAse6cg",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "309882",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            },
                            {
                              "barNumber": "16793",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "UT"
                            },
                            {
                              "barNumber": "16051",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "NV"
                            }
                          ]
                        },
                        {
                          "caseCount": 401,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC3LbD8v29BoVg58",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-07T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-12-01T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "JASON",
                          "lastName": "BURROWS",
                          "middleName": "MCEWING",
                          "name": "JASON MCEWING BURROWS",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYhWus6xE6VnLW4x",
                          "normAttorneyId": "NATYhWus6xE6VnLW4x",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "190159",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            },
                            {
                              "barNumber": "6920",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "NV"
                            }
                          ]
                        },
                        {
                          "caseCount": 399,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCZQmT46NL7gjjQV",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-22T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-02-06T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "PATRICK",
                          "lastName": "LAYMAN",
                          "middleName": "JAMES",
                          "name": "PATRICK JAMES LAYMAN",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYYDFV8GPE5opJJq",
                          "normAttorneyId": "NATYYDFV8GPE5opJJq",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "59643",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            },
                            {
                              "barNumber": "025612",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "OR"
                            },
                            {
                              "barNumber": "5707",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "WA"
                            }
                          ]
                        },
                        {
                          "caseCount": 384,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCitbhxPVXTAUVEx",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-04-04T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-10-24T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "MICHAEL",
                          "lastName": "BOULANGER",
                          "middleName": "RICHARD",
                          "name": "MICHAEL RICHARD BOULANGER",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYtrdpszHMXD2Rg3",
                          "normAttorneyId": "NATYtrdpszHMXD2Rg3",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "226294",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 372,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCHGdjJiRcxV6N2z",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-07T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-07-24T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "AMIT",
                          "lastName": "TANEJA",
                          "middleName": "ALEJANDRO",
                          "name": "AMIT ALEJANDRO TANEJA",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY7YmYNCkAQ6zyca",
                          "normAttorneyId": "NATY7YmYNCkAQ6zyca",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "304559",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 366,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCdnxkChhmmTkY4W",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-06T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-08-03T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "HYO",
                          "lastName": "JUNG",
                          "middleName": "JIN JULIA",
                          "name": "JUNG HYO JIN JULIA",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY4mCRumseJY2ddS",
                          "normAttorneyId": "NATY4mCRumseJY2ddS",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "316090",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 363,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC9gzoYUDqA8jAHP",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-07T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-01-04T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "TODD",
                          "lastName": "MACDOWELL",
                          "middleName": "ALFRED",
                          "name": "TODD ALFRED MACDOWELL",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYbNq9JbZUkZFapo",
                          "normAttorneyId": "NATYbNq9JbZUkZFapo",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "170651",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            },
                            {
                              "barNumber": null,
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "GA"
                            }
                          ]
                        },
                        {
                          "caseCount": 362,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC8Gx3iNJHfRZ9sa",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2019-05-16T00:00:00+00:00",
                            "lastCaseFiledDate": "2019-10-03T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "CHRISTINA",
                          "lastName": "ARNOLD",
                          "middleName": "MONTEIRO",
                          "name": "CHRISTINA MONTEIRO ARNOLD",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYkBnPCGCF9BEBey",
                          "normAttorneyId": "NATYkBnPCGCF9BEBey",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "297590",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 361,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCRvbgPvAHBMNTzf",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-05T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-09-01T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "ALEXA",
                          "lastName": "CHRISOS",
                          "middleName": "ANNE",
                          "name": "ALEXA ANNE CHRISOS",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYtKX9TGB7Saro7r",
                          "normAttorneyId": "NATYtKX9TGB7Saro7r",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "308302",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            },
                            {
                              "barNumber": "688479",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "MA"
                            }
                          ]
                        },
                        {
                          "caseCount": 349,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCFaygKFLsS7Wcfz",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-26T00:00:00+00:00",
                            "lastCaseFiledDate": "2019-02-26T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "CAROLINE",
                          "lastName": "LUTZ",
                          "middleName": "MARY",
                          "name": "CAROLINE MARY LUTZ",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYB72CF3jvZVb4Mb",
                          "normAttorneyId": "NATYB72CF3jvZVb4Mb",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "274836",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            },
                            {
                              "barNumber": null,
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "IL"
                            }
                          ]
                        },
                        {
                          "caseCount": 349,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCRWELa4fw6fdPFH",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-04-24T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-10-20T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "CHRISTOPHER",
                          "lastName": "BEYER",
                          "middleName": "ALLEN",
                          "name": "CHRISTOPHER ALLEN BEYER",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYmDPk4fhtT4Z8Jz",
                          "normAttorneyId": "NATYmDPk4fhtT4Z8Jz",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "213264",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 338,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCZyeEtdAAFKqTTV",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-05-14T00:00:00+00:00",
                            "lastCaseFiledDate": "2019-02-19T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "MISHAELA",
                          "lastName": "KIRKPATRICK",
                          "middleName": "JANIELLE",
                          "name": "MISHAELA JANIELLE KIRKPATRICK",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYzPTYE7NhjvGRtv",
                          "normAttorneyId": "NATYzPTYE7NhjvGRtv",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "24118065",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "TX"
                            },
                            {
                              "barNumber": "259765",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 324,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCZrHxKVqoJj2Ng3",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-06T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-11-14T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "JENNIFER",
                          "lastName": "WONG",
                          "middleName": "MICHELLE",
                          "name": "JENNIFER MICHELLE WONG",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYjhp6Z8vWsnbSDr",
                          "normAttorneyId": "NATYjhp6Z8vWsnbSDr",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "341634",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            },
                            {
                              "barNumber": "5327648",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "NY"
                            }
                          ]
                        },
                        {
                          "caseCount": 292,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCGipZerGxutWgoE",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-05-04T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-12-11T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "MAXWELL",
                          "lastName": "MEYERING",
                          "middleName": "R",
                          "name": "MAXWELL R MEYERING",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYGwkyVrbAEMYgHk",
                          "normAttorneyId": "NATYGwkyVrbAEMYgHk",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "316975",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 283,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCQszW4QC4bfXnfg",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2019-02-08T00:00:00+00:00",
                            "lastCaseFiledDate": "2019-06-14T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "JORDAN",
                          "lastName": "COOK",
                          "middleName": "DAVISSON",
                          "name": "JORDAN DAVISSON COOK",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYAiS8ujd78L2xyJ",
                          "normAttorneyId": "NATYAiS8ujd78L2xyJ",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "293394",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 258,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCTdQ3ButmUQmsjY",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-07T00:00:00+00:00",
                            "lastCaseFiledDate": "2019-07-12T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "STEPHANIE",
                          "lastName": "BOONE",
                          "middleName": "JO",
                          "name": "STEPHANIE JO BOONE",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYhSRux5PuemQNoi",
                          "normAttorneyId": "NATYhSRux5PuemQNoi",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "160182",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 257,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCEWRavqrm8kdJiW",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-03-09T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-12-11T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "STASIA",
                          "lastName": "RUDIMAN",
                          "middleName": "A.",
                          "name": "STASIA A. RUDIMAN",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYGtecDzWwGjAvsF",
                          "normAttorneyId": "NATYGtecDzWwGjAvsF",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "315707",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 244,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCDCt54NLTf5Bhoo",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-13T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-01-08T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "JON",
                          "lastName": "BLANDA",
                          "middleName": "OMAR",
                          "name": "JON OMAR BLANDA",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYpEcqc7TRezf8op",
                          "normAttorneyId": "NATYpEcqc7TRezf8op",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "217222",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 235,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCDrQXBbm9vSXsFw",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-05T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-11-07T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "LORI",
                          "lastName": "BRODBECK",
                          "middleName": "DENISE",
                          "name": "MS. LORI DENISE BRODBECK",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY2pvcrupQUdUTqc",
                          "normAttorneyId": "NATY2pvcrupQUdUTqc",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "24050326",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "TX"
                            },
                            {
                              "barNumber": "291116",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 228,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCNYThiBxCvJfHYB",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-08-14T00:00:00+00:00",
                            "lastCaseFiledDate": "2019-05-03T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "RAYMOND",
                          "lastName": "PATENAUDE",
                          "middleName": "ALCIDE",
                          "name": "RAYMOND ALCIDE PATENAUDE",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYsqY5SNLUC7U4qm",
                          "normAttorneyId": "NATYsqY5SNLUC7U4qm",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "128855",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 225,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCmiWiC8UWrWpULo",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2020-03-06T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-01-07T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "ADAM",
                          "lastName": "KIDD",
                          "middleName": "LEIGH",
                          "name": "ADAM LEIGH KIDD",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYYtiAeBcyg5weYL",
                          "normAttorneyId": "NATYYtiAeBcyg5weYL",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "328520",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 215,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCCU3dws3jmVrBP8",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-06T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-12-07T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "WILLIAM",
                          "lastName": "ELDER",
                          "middleName": "NORMAN",
                          "name": "WILLIAM NORMAN ELDER JR",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYMrSYGZCcnazTSx",
                          "normAttorneyId": "NATYMrSYGZCcnazTSx",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "110463",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 210,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCEaqy3KKH4Ygt6y",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-05T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-07-13T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "BROOKE",
                          "lastName": "PARK",
                          "middleName": "Y.",
                          "name": "BROOKE Y. PARK",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYcUhH5N5Piqr4w2",
                          "normAttorneyId": "NATYcUhH5N5Piqr4w2",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "314555",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 206,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCVyo5dmPWHkYqvA",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-07T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-07-13T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "JEFFERY",
                          "lastName": "MUKAI",
                          "middleName": "K",
                          "name": "JEFFERY K MUKAI",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYsncuAmKjZjQZyS",
                          "normAttorneyId": "NATYsncuAmKjZjQZyS",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "273338",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 193,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC82jVo9e2KZZD5p",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-03-05T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-01-08T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "KRISTEN",
                          "lastName": "BRINKERHOFF",
                          "middleName": "LEIGH",
                          "name": "KRISTEN LEIGH BRINKERHOFF",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYtRqoeWfiMruLZ8",
                          "normAttorneyId": "NATYtRqoeWfiMruLZ8",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "263579",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 188,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCTmFYZa9ycYwTM7",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-08-30T00:00:00+00:00",
                            "lastCaseFiledDate": "2019-08-09T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "REILEY",
                          "lastName": "EWING",
                          "middleName": "F.",
                          "name": "REILEY F. EWING",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYnCx4kKzfgq7N7z",
                          "normAttorneyId": "NATYnCx4kKzfgq7N7z",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "315094",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 187,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCJ4A72HCgdH5rQ7",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-09T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-01-05T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "PAUL",
                          "lastName": "BRISSON",
                          "middleName": "LAWRENCE",
                          "name": "PAUL LAWRENCE BRISSON",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYEj6Z8ekqh6C8kR",
                          "normAttorneyId": "NATYEj6Z8ekqh6C8kR",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "151524",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 185,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCSqHm3qqU2Jnd2H",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2019-12-20T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-09-08T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "SHANA",
                          "lastName": "METZGER",
                          "middleName": "JACQUELYN",
                          "name": "SHANA JACQUELYN METZGER",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY5LMM66YEW6rNSW",
                          "normAttorneyId": "NATY5LMM66YEW6rNSW",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "292368",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 185,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCUubyKbPWiMyhYM",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-06-20T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-08-08T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "GREGORY",
                          "lastName": "COBB",
                          "middleName": "JOHN",
                          "name": "GREGORY JOHN COBB",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYZ5k6SHMz3gsy9K",
                          "normAttorneyId": "NATYZ5k6SHMz3gsy9K",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "133328",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 177,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCjQ9ekoANgxJRmU",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-09T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-09-23T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "MATTHEW",
                          "lastName": "QUALL",
                          "middleName": "WARREN",
                          "name": "MATTHEW WARREN QUALL",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYmczNhSaUgqRVjk",
                          "normAttorneyId": "NATYmczNhSaUgqRVjk",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "183759",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 160,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCEQvrzTRLExgwZX",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-15T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-12-30T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "MICHAEL",
                          "lastName": "RAICHELSON",
                          "middleName": "HARVEY",
                          "name": "MICHAEL HARVEY RAICHELSON",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYukiYyyDyjnj2Tn",
                          "normAttorneyId": "NATYukiYyyDyjnj2Tn",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "174607",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 156,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC5rKQEPNwdvYVKD",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-13T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-11-21T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "ABRIL",
                          "lastName": "RUIZ",
                          "middleName": "FIONA",
                          "name": "RUIZ ABRIL FIONA",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYB7UKJhpX69pfzh",
                          "normAttorneyId": "NATYB7UKJhpX69pfzh",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "299586",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 155,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCHhMvBYE57ARzAw",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-09T00:00:00+00:00",
                            "lastCaseFiledDate": "2019-11-13T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "TODD",
                          "lastName": "CRAMER",
                          "middleName": "LOREN",
                          "name": "TODD LOREN CRAMER",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYH4SqtzZeKjTfdb",
                          "normAttorneyId": "NATYH4SqtzZeKjTfdb",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "157133",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 153,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCHUi3nWhVt24Tgr",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-21T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-12-17T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "THOMAS",
                          "lastName": "PRENOVOST",
                          "middleName": "JOSEPH",
                          "name": "THOMAS JOSEPH PRENOVOST JR",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYG4f9pw6nFLWMUK",
                          "normAttorneyId": "NATYG4f9pw6nFLWMUK",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "77813",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 152,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCj9o6XjXWrVvz58",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-03-28T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-01-06T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "AARON",
                          "lastName": "BALDARO",
                          "middleName": "NAPPO",
                          "name": "AARON NAPPO BALDARO",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYM33scRjs2rkt5E",
                          "normAttorneyId": "NATYM33scRjs2rkt5E",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "261156",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 142,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCdoJcPjJpvhiRSi",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2020-12-14T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-12-29T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "ROBERT",
                          "lastName": "WRIGHT",
                          "middleName": "WILLIAM",
                          "name": "ROBERT WILLIAM WRIGHT",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYq45Xuk5CVpA7oX",
                          "normAttorneyId": "NATYq45Xuk5CVpA7oX",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "276653",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 141,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCTxPW7BD2FXMM5F",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-08T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-12-28T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "JAMIE",
                          "lastName": "FORBES",
                          "middleName": "ALLISON",
                          "name": "JAMIE ALLISON FORBES",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYJJ8FgsHnXg8cz7",
                          "normAttorneyId": "NATYJJ8FgsHnXg8cz7",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "249270",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            },
                            {
                              "barNumber": "080680",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "OR"
                            }
                          ]
                        },
                        {
                          "caseCount": 141,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCccqGQ4GuQASEV7",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-08T00:00:00+00:00",
                            "lastCaseFiledDate": "2019-08-14T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "FRANKLIN",
                          "lastName": "LOVE",
                          "middleName": "JAY",
                          "name": "FRANKLIN JAY LOVE",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYNrQv5Xrjr7DqpB",
                          "normAttorneyId": "NATYNrQv5Xrjr7DqpB",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "80334",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 136,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCXA4sDph9EsWFde",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-21T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-12-29T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "LAURA",
                          "lastName": "D'ANNA",
                          "middleName": "M.",
                          "name": "LAURA M. D'ANNA",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYVcDTWPKrM6MnsZ",
                          "normAttorneyId": "NATYVcDTWPKrM6MnsZ",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "266113",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 135,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCUP55nBtTVNanWv",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-04-02T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-11-30T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "JOHN",
                          "lastName": "GOODMAN",
                          "middleName": "MICHAEL",
                          "name": "JOHN MICHAEL GOODMAN",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYaoydRajTneeZmQ",
                          "normAttorneyId": "NATYaoydRajTneeZmQ",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "147569",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            },
                            {
                              "barNumber": "1251255",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "NY"
                            }
                          ]
                        },
                        {
                          "caseCount": 134,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCYQ5PCMJJyP5rmp",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-08T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-11-21T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "KELSEY",
                          "lastName": "HANDCOCK",
                          "middleName": "RENEE",
                          "name": "KELSEY RENEE HANDCOCK",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYsXovBEwR2hdsru",
                          "normAttorneyId": "NATYsXovBEwR2hdsru",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "313063",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 132,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCkKuoz5WAQ9LkuY",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-06T00:00:00+00:00",
                            "lastCaseFiledDate": "2019-01-24T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "ANN",
                          "lastName": "DOAN",
                          "middleName": "H.",
                          "name": "ANN H. DOAN",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYEebjBmPo3sCNBt",
                          "normAttorneyId": "NATYEebjBmPo3sCNBt",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "297543",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 131,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCQrq7NBAR4anbQz",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2019-02-14T00:00:00+00:00",
                            "lastCaseFiledDate": "2019-12-04T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "JOSEPH",
                          "lastName": "HELFRICK",
                          "middleName": "GEORGE",
                          "name": "JOSEPH GEORGE HELFRICK",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYNi36cDxgLXY4tv",
                          "normAttorneyId": "NATYNi36cDxgLXY4tv",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "314258",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 130,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCbo4pqj2KDoh6Mz",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2020-02-05T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-01-08T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "CLAUDIA",
                          "lastName": "CASE",
                          "middleName": "YVETTE",
                          "name": "CLAUDIA YVETTE ESTRADA",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYafkDP4vs4dTvkR",
                          "normAttorneyId": "NATYafkDP4vs4dTvkR",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "328212",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 126,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCGkCz4hbW5kQj9h",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-22T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-01-06T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "CALVIN",
                          "lastName": "LOVE",
                          "middleName": "F.",
                          "name": "CALVIN F. LOVE",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYSVGrVShtRfFBJ7",
                          "normAttorneyId": "NATYSVGrVShtRfFBJ7",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "307493",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 126,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCCiDAend5odiiqw",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2019-04-25T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-01-08T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "RACHEL",
                          "lastName": "HANEY",
                          "middleName": "W.",
                          "name": "RACHEL W. HANEY",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYfDRAjxSzgrJ6WM",
                          "normAttorneyId": "NATYfDRAjxSzgrJ6WM",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "308259",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 120,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCbenSpRgSDbVwDn",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-05-18T00:00:00+00:00",
                            "lastCaseFiledDate": "2019-04-25T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "KAREN",
                          "lastName": "LUSIS",
                          "middleName": "ETSELL",
                          "name": "LUSIS KAREN ETSELL",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYaYpzuqkMek4LvR",
                          "normAttorneyId": "NATYaYpzuqkMek4LvR",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "272739",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            },
                            {
                              "barNumber": "44712",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "WA"
                            },
                            {
                              "barNumber": "47941",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CO"
                            }
                          ]
                        },
                        {
                          "caseCount": 115,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC6fUHmkPwExSQz7",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-03-07T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-12-30T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "SARAH",
                          "lastName": "REYNOLDS",
                          "middleName": "JANE",
                          "name": "SARAH JANE REYNOLDS",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYnGcpDtEoaDhrZw",
                          "normAttorneyId": "NATYnGcpDtEoaDhrZw",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "299510",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            },
                            {
                              "barNumber": "12853",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "NV"
                            }
                          ]
                        },
                        {
                          "caseCount": 114,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCkJFCUXj2z5BQSg",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-05-23T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-07-26T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "CHARLES",
                          "lastName": "HOEG",
                          "middleName": "RICHARD",
                          "name": "CHARLES RICHARD HOEG III",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYTQmEA9tD9KdrSn",
                          "normAttorneyId": "NATYTQmEA9tD9KdrSn",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "315852",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 112,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCg6vMGXhnuy5nXa",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-05T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-05-02T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "ALEC",
                          "lastName": "HANKINS",
                          "middleName": "WESTON",
                          "name": "ALEC WESTON HANKINS",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYQjqiTZzHDJoicY",
                          "normAttorneyId": "NATYQjqiTZzHDJoicY",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "306538",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 112,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCe9eE3EcfTcYtbU",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-04-18T00:00:00+00:00",
                            "lastCaseFiledDate": "2019-05-01T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "ALI",
                          "lastName": "DELFOROUSH",
                          "middleName": "AKBAR",
                          "name": "ALI AKBAR DELFOROUSH",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYkMhEDc3PobPoDd",
                          "normAttorneyId": "NATYkMhEDc3PobPoDd",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "315704",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 111,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCBvQqkzH3hLxxxr",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-05T00:00:00+00:00",
                            "lastCaseFiledDate": "2019-09-30T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "EMILY",
                          "lastName": "PIERCE",
                          "middleName": "DEHAAS",
                          "name": "EMILY DEHAAS PIERCE",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYpP5gnspbT4gEsr",
                          "normAttorneyId": "NATYpP5gnspbT4gEsr",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "240084",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            },
                            {
                              "barNumber": "48624",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "WA"
                            },
                            {
                              "barNumber": "51005",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CO"
                            }
                          ]
                        },
                        {
                          "caseCount": 107,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCTcURfw8sU9qWT6",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-07T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-11-02T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "STEPHEN",
                          "lastName": "ZELLER",
                          "middleName": "S",
                          "name": "STEPHEN S ZELLER",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYPQDJiE3zyh2gxw",
                          "normAttorneyId": "NATYPQDJiE3zyh2gxw",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "265664",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            },
                            {
                              "barNumber": null,
                              "barSourceType": "district_court",
                              "object": "BarRecordPreview",
                              "stateCode": "DC"
                            }
                          ]
                        },
                        {
                          "caseCount": 105,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCQbUv8FJ7juyAU7",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-28T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-01-06T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "STEVEN",
                          "lastName": "BOOSKA",
                          "middleName": "ALFRED",
                          "name": "STEVEN ALFRED BOOSKA",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYVasfnpf7BpejVo",
                          "normAttorneyId": "NATYVasfnpf7BpejVo",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "107899",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 98,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCPYXHNnz229y6b9",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-03-01T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-11-05T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "JENNIFER",
                          "lastName": "TUNDER",
                          "middleName": "LYNN",
                          "name": "JENNIFER LYNN TUNDER",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYCAzdYGQXrpd4uB",
                          "normAttorneyId": "NATYCAzdYGQXrpd4uB",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "291806",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 97,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCRHpapW8LkBnDCb",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-05T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-03-29T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "CATHERINE",
                          "lastName": "FONG",
                          "middleName": "K.",
                          "name": "CATHERINE K. TANG",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYz9sL6gFfs58kvv",
                          "normAttorneyId": "NATYz9sL6gFfs58kvv",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "305349",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 94,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCMPZxYntWd3Svbt",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2020-09-18T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-01-08T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "INGRID",
                          "lastName": "CAERO",
                          "middleName": "VERONICA",
                          "name": "INGRID VERONICA CAERO",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYmcnEfV7YhDMRes",
                          "normAttorneyId": "NATYmcnEfV7YhDMRes",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "317349",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 92,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCeGwMAcjwUQWQNZ",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-03-01T00:00:00+00:00",
                            "lastCaseFiledDate": "2019-07-05T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "CHRISTINA",
                          "lastName": "RYMSZA",
                          "middleName": "LYNN",
                          "name": "RYMSZA CHRISTINA LYNN",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYu6JLRDDHsTDFAB",
                          "normAttorneyId": "NATYu6JLRDDHsTDFAB",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "233631",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 91,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCmtGFxF3Vww2LRW",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2019-03-05T00:00:00+00:00",
                            "lastCaseFiledDate": "2019-05-30T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "JOEL",
                          "lastName": "SHERER",
                          "middleName": "EVERETT",
                          "name": "JOEL EVERETT SHERER",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY375svJTD6NddLt",
                          "normAttorneyId": "NATY375svJTD6NddLt",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "321988",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            },
                            {
                              "barNumber": "10844",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "ID"
                            }
                          ]
                        },
                        {
                          "caseCount": 88,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCA4X4WRukCaodE5",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-04-12T00:00:00+00:00",
                            "lastCaseFiledDate": "2019-08-07T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "DANIEL",
                          "lastName": "CARVO",
                          "middleName": "JOHN",
                          "name": "DANIEL JOHN CARVO",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY9Fbkjwgke8Anvd",
                          "normAttorneyId": "NATY9Fbkjwgke8Anvd",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "201251",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 87,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCnHwNF4bJPnwdRt",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-03-09T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-06-22T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "LEE",
                          "lastName": "MENDELSON",
                          "middleName": "MICHAEL",
                          "name": "LEE MICHAEL MENDELSON",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYsP5D8Dix6Wrexv",
                          "normAttorneyId": "NATYsP5D8Dix6Wrexv",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "236819",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            },
                            {
                              "barNumber": null,
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "GA"
                            },
                            {
                              "barNumber": "018802",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "TN"
                            },
                            {
                              "barNumber": "50904",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "WA"
                            }
                          ]
                        },
                        {
                          "caseCount": 86,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCKVwyPdQhU8BQfv",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-09T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-11-19T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "PANTEA",
                          "lastName": "SHARIFI",
                          "middleName": "R.",
                          "name": "PANTEA R. SHARIFI",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYx4Cuy3fJiWbLEg",
                          "normAttorneyId": "NATYx4Cuy3fJiWbLEg",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "292666",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 85,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC4KtrvxwAdeGEEt",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-03-06T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-01-07T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "ALANA",
                          "lastName": "ANAYA",
                          "middleName": "BILLA",
                          "name": "ALANA BILLA ANAYA",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYmRov2frZLL4kK9",
                          "normAttorneyId": "NATYmRov2frZLL4kK9",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "195758",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 84,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCVpHmDwEyBtWndQ",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-13T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-11-09T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "RICHARD",
                          "lastName": "MURPHEY",
                          "middleName": "JOHN",
                          "name": "RICHARD JOHN MURPHEY",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYzckwFgPzGFkmoN",
                          "normAttorneyId": "NATYzckwFgPzGFkmoN",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "102831",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 78,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCQr6iQcrhdkknmt",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-27T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-03-13T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "STELIOS",
                          "lastName": "HARRIS",
                          "middleName": "ANDREW",
                          "name": "STELIOS ANDREW HARRIS",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYo53WEkHRgJqve9",
                          "normAttorneyId": "NATYo53WEkHRgJqve9",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "242116",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            },
                            {
                              "barNumber": "315537",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "PA"
                            }
                          ]
                        },
                        {
                          "caseCount": 77,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC2nAKpAQ8ocBfCN",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-26T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-11-19T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "RUSSELL",
                          "lastName": "EMMONS",
                          "middleName": "JAMES",
                          "name": "RUSSELL JAMES EMMONS",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYT8suSDLJL9r79h",
                          "normAttorneyId": "NATYT8suSDLJL9r79h",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "289135",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        }
                      ],
                      "nextPageAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDT7jCZyFNeLGpRq/associatedNormAttorneys?pageNumber=2&q=caseTypeId%3A%22CTYPATMYyaJekdgj2c%22+AND+caseFiledDate%3A%5B2017-01-01T00%3A00%3A00%2B00%3A00TO2021-11-30T00%3A00%3A00%2B00%3A00%5D",
                      "previousPageAPI": null,
                      "totalCount": 583,
                      "totalPages": 6
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/AssociatedNormAttorneyResponse"
                }
              }
            },
            "description": "OK"
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "sample400AnalyticsQuery": {
                    "value": {
                      "code": "UN400",
                      "details": "caseFiledDate is not in a required format",
                      "message": "INVALID_INPUT",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Bad Request"
          },
          "404": {
            "content": {
              "application/json": {
                "examples": {
                  "sample404AnalyticsQuery": {
                    "value": {
                      "code": "UN404",
                      "details": "caseTypeId not found",
                      "message": "RESOURCE_NOT_FOUND",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Not Found"
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "example-1": {
                    "value": {
                      "code": "UN500",
                      "details": "Has encountered a situation which needs to be handled.",
                      "message": "INTERNAL_SERVER_ERROR",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Internal Server Error"
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Attorneys Associated with the Judge.",
        "tags": [
          "Judge Analytics API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [
        {
          "description": "Norm  ID of the Judge.\n  - minimum: 18\n  - maximum: 18\n",
          "examples": {
            "HTTP200-sampleAnalyticsQuery": {
              "summary": "sampleAnalyticsQuery",
              "value": "NJUDT7jCZyFNeLGpRq"
            },
            "HTTP400-sample400AnalyticsQuery": {
              "summary": "sample400AnalyticsQuery",
              "value": "NJUDT7jCZyFNeLGpRq"
            },
            "HTTP404-sample404AnalyticsQuery": {
              "summary": "sample404AnalyticsQuery",
              "value": "NORGdiD8tdN8sFL2i7"
            }
          },
          "in": "path",
          "name": "normJudgeId",
          "required": true,
          "schema": {
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          }
        }
      ],
      "x-api-name": "AssociatedNormAttorneysForNormJudgeAPI",
      "x-unicourt-tag": "JudgeAnalyticsAPIs"
    },
    "/normJudge/{normJudgeId}/associatedNormLawFirms": {
      "get": {
        "description": "Returns a list of Law Firms a Judge has heard.\n## Terms and Connectors\n| Connector | Schema   | Description  | Example |\n| ------| ------| ------|------|\n| **AND** ||Find analytics containing all connected terms. The word AND does not have to be capitalized.|**courtId:\"CORTV4vCEaKrhystBz\" AND courtLocationId:\"COLO6b82CkRqS846hx\"**|\n| **IN()** || Allows you to specify multiple values, for a limit of up to 10.| **courtLocationId IN (\"COLOOY8WTHDBLL0eWv\",\"COLOItKA5pBVovpQSZ\")**|\n| **courtId** | Multiple Ids Allowed  |Find Analytics for a particular Court Object. | **courtId:\"CORTV4vCEaKrhystBz\"** |\n| **courtSystemId** | Multiple Ids Allowed  |Find Analytics for a particular Court System Object. | **courtSystemId:\"COSYACHBdMewtaG5DY\"** |\n| **courtTypeId** | Multiple Ids Allowed  |Find Analytics for a particular Court Type Object. | **courtTypeId:\"COTPm8jjc2PAydpFhq\"** |\n| **courtLocationId** | Multiple Ids Allowed  |Find Analytics for a particular Court Location Object. | **courtLocationId:\"COLO6b82CkRqS846hx\"** |\n| **caseTypeId** | Multiple Ids Allowed  |Find Analytics for a particular Case Type Object. | **caseTypeId:\"CTYPATMYyaJekdgj2c\"** |\n| **caseTypeGroupId** | Multiple Ids Allowed  |Find Analytics for a particular Case Type Group Object. | **caseTypeGroupId:\"CTYG8gZ6hPRKhhYi4Y\"** |\n| **areaOfLawId** | Multiple Ids Allowed  |Find Analytics for a particular Area Of Law Object. | **areaOfLawId:\"AOFL2UxEWfVmTPMyqf\"** |\n| **caseClassId** | Multiple Ids Allowed  |Find Analytics for a particular Case Class Category Object. | **caseClassId:\"CSCLNjbKTN7Yfo2wdb\"** |\n| **caseFiledDate** | Single Allowed  |Find Analytics within a particular date range. | **caseFiledDate:[2018-05-08T00:00:00+00:00TO2019-05-08T00:00:00+00:00]** |\n| **JurisdictionGeo**  | Multiple Ids Allowed |Find Analytics within a particular Jurisdiction Geo. | **(JurisdictionGeo:(state:\"California\"))** |\n| **confidenceScore** | Single Allowed |Find Analytics for a given ConfidenceScore  | **confidenceScore>=0.5** |\n| **bestMatch** | Single Allowed |True if the normEntity has the highest Confidence Score of all possible normEntities | **bestMatch:true** |\n<br>\n## Example Query\nQuery to get all Law Firms associated with judge with norm id NJUDT7jCZyFNeLGpRq of all cases with case type id CTYPATMYyaJekdgj2c and case filed date between Jan 1st, 2017 to Nov 30th,2021<br>\nq=caseTypeId:\"CTYPATMYyaJekdgj2c\" AND caseFiledDate:[2017-01-01T00:00:00+00:00TO2021-11-30T00:00:00+00:00]\n<br><br>\n",
        "operationId": "getNormLawFirmsAssociatedWithNormJudge",
        "parameters": [
          {
            "description": "The URL encoded query you are searching for. The query can be as simple as a keyword, but supports many additional options and filters. All options are documented above.",
            "examples": {
              "HTTP200-modifiedValue": {
                "summary": "Default value",
                "value": ""
              },
              "HTTP200-sampleAnalyticsQuery": {
                "summary": "sampleAnalyticsQuery",
                "value": "caseTypeId:\"CTYPATMYyaJekdgj2c\" AND caseFiledDate:[2017-01-01T00:00:00+00:00TO2021-11-30T00:00:00+00:00]"
              },
              "HTTP400-sample400AnalyticsQuery": {
                "summary": "sample400AnalyticsQuery",
                "value": "caseTypeId:\"CTYPATMYyaJekdgj2c\" AND caseFiledDate:[2018-01-01T00:00:00+00:00TO2021-11-3000:00:00+00:00]"
              },
              "HTTP404-sample404AnalyticsQuery": {
                "summary": "sample404AnalyticsQuery",
                "value": "caseTypeId:\"CTYPATMYy1Jekdgj2c\" AND caseFiledDate:[2018-01-01T00:00:00+00:00TO2021-11-30T00:00:00+00:00]"
              }
            },
            "in": "query",
            "name": "q",
            "schema": {
              "maxLength": 2048,
              "nullable": false,
              "type": "string"
            }
          },
          {
            "$ref": "#/components/parameters/AnalyticsPageParam"
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleAnalyticsQuery": {
                    "value": {
                      "associatedNormLawFirmArray": [
                        {
                          "caseCount": 14,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCgiNVyzBhj9Q9pq",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-05-08T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-11-27T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "HUNT & HENRIQUES, INC.",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGYevnGAWWENhEQ9",
                          "normLawFirmId": "NORGYevnGAWWENhEQ9",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "03859431",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 14,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCJ48ZLCNa84H92o",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-04-25T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-11-29T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "PARAMETRIC PORTFOLIO ASSOCIATES, INC.",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGwJXq4yuDfoGFNw",
                          "normLawFirmId": "NORGwJXq4yuDfoGFNw",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "01104578",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 4,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCEAHd7NDx5SxYWh",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-09-24T00:00:00+00:00",
                            "lastCaseFiledDate": "2019-02-08T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "LAW OFFICE OF HARRIS & ZIDE, L.L.P.",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGVZZJWPJpfCAr6p",
                          "normLawFirmId": "NORGVZZJWPJpfCAr6p",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "202002016016",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 3,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRChW2neKa65ckPPC",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-06-19T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-11-27T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "KENOSIAN & MIELE, L.L.P.",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGNfy5Ca84arywvw",
                          "normLawFirmId": "NORGNfy5Ca84arywvw",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "202006140004",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCPZhYY2NvbJwdxW",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-11-27T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-12-04T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "MANDARICH LAW GROUP, L.L.P.",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGTDJbwMuJaoP6GB",
                          "normLawFirmId": "NORGTDJbwMuJaoP6GB",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "1319646",
                              "stateCode": "NV"
                            },
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "PF001410139",
                              "stateCode": "MO"
                            },
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "202010301001",
                              "stateCode": "CA"
                            },
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "5425532",
                              "stateCode": "NY"
                            }
                          ]
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC8Zjv73J99wiA4V",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-05-03T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-05-03T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "BREWER & BREWER L.L.P.",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGpZQCktHk3kDbsz",
                          "normLawFirmId": "NORGpZQCktHk3kDbsz",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "202014360004",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCnZWT3z8uBJaLVk",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-10-09T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-10-09T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "INDUSTRIAL AND COMMERCIAL MARKETING, INC.",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGr6PBN2vKdKubSo",
                          "normLawFirmId": "NORGr6PBN2vKdKubSo",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "00856302",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC9jXQoyM3nmMVfS",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-06-12T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-06-12T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "GARDENER & RIECHMANN, INC.",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORG69W58viVFMmmux",
                          "normLawFirmId": "NORG69W58viVFMmmux",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "00790988",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCVUiBsUExBpZUPe",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-04-24T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-04-24T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "SUTTELL & HAMMER, A.P.C.",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGPbFSUh28SDT2ED",
                          "normLawFirmId": "NORGPbFSUh28SDT2ED",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "03586506",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCBGZMq5f47kwvuX",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2019-02-11T00:00:00+00:00",
                            "lastCaseFiledDate": "2019-02-11T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "BUCHALTER, A PROFESSIONAL CORPORATION",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGQuaT4gfM4reTme",
                          "normLawFirmId": "NORGQuaT4gfM4reTme",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "00593249",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCMepEJrSaWQFnvE",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-08-22T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-08-22T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "LAW OFFICES JAY SHERMAN, A.P.C.",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGVAhBvYNrmRJ4wi",
                          "normLawFirmId": "NORGVAhBvYNrmRJ4wi",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "03684172",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCSXmqDbH3cq2d2b",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-06-12T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-06-12T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "RAUSCH, STURM, ISRAEL, ENERSON & HORNIK L.L.P.",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGtzoK4x5WUnXGQM",
                          "normLawFirmId": "NORGtzoK4x5WUnXGQM",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "202017233001",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCJapqrsxVruBe2b",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-07-16T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-07-16T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "QUALL CARDOT L.L.P.",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGvg8zvoym28D3D6",
                          "normLawFirmId": "NORGvg8zvoym28D3D6",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "202014338001",
                              "stateCode": "CA"
                            }
                          ]
                        }
                      ],
                      "nextPageAPI": null,
                      "previousPageAPI": null,
                      "totalCount": 13,
                      "totalPages": 1
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/AssociatedNormLawFirmResponse"
                }
              }
            },
            "description": "OK"
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "sample400AnalyticsQuery": {
                    "value": {
                      "code": "UN400",
                      "details": "caseFiledDate is not in a required format",
                      "message": "INVALID_INPUT",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Bad Request"
          },
          "404": {
            "content": {
              "application/json": {
                "examples": {
                  "sample404AnalyticsQuery": {
                    "value": {
                      "code": "UN404",
                      "details": "caseTypeId not found",
                      "message": "RESOURCE_NOT_FOUND",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Not Found"
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "example-1": {
                    "value": {
                      "code": "UN500",
                      "details": "Has encountered a situation which needs to be handled.",
                      "message": "INTERNAL_SERVER_ERROR",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Internal Server Error"
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Law Firms Associated With the Judge.",
        "tags": [
          "Judge Analytics API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [
        {
          "description": "Norm  ID of the Judge.\n  - minimum: 18\n  - maximum: 18\n",
          "examples": {
            "HTTP200-sampleAnalyticsQuery": {
              "summary": "sampleAnalyticsQuery",
              "value": "NJUDT7jCZyFNeLGpRq"
            },
            "HTTP400-sample400AnalyticsQuery": {
              "summary": "sample400AnalyticsQuery",
              "value": "NJUDT7jCZyFNeLGpRq"
            },
            "HTTP404-sample404AnalyticsQuery": {
              "summary": "sample404AnalyticsQuery",
              "value": "NORGdiD8tdN8sFL2i7"
            }
          },
          "in": "path",
          "name": "normJudgeId",
          "required": true,
          "schema": {
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          }
        }
      ],
      "x-api-name": "AssociatedNormLawFirmsForNormJudgeAPI",
      "x-unicourt-tag": "JudgeAnalyticsAPIs"
    },
    "/normJudge/{normJudgeId}/associatedNormParties": {
      "get": {
        "description": "Returns a list of Parties A Judge has seen.\n## Terms and Connectors\n| Connector | Schema   | Description  | Example |\n| ------| ------| ------|------|\n| **AND** ||Find analytics containing all connected terms. The word AND does not have to be capitalized.|**courtId:\"CORTV4vCEaKrhystBz\" AND courtLocationId:\"COLO6b82CkRqS846hx\"**|\n| **IN()** || Allows you to specify multiple values, for a limit of up to 10.| **courtLocationId IN (\"COLOOY8WTHDBLL0eWv\",\"COLOItKA5pBVovpQSZ\")**|\n| **courtId** | Multiple Ids Allowed  |Find Analytics for a particular Court Object. | **courtId:\"CORTV4vCEaKrhystBz\"** |\n| **courtSystemId** | Multiple Ids Allowed  |Find Analytics for a particular Court System Object. | **courtSystemId:\"COSYACHBdMewtaG5DY\"** |\n| **courtTypeId** | Multiple Ids Allowed  |Find Analytics for a particular Court Type Object. | **courtTypeId:\"COTPm8jjc2PAydpFhq\"** |\n| **courtLocationId** | Multiple Ids Allowed  |Find Analytics for a particular Court Location Object. | **courtLocationId:\"COLO6b82CkRqS846hx\"** |\n| **caseTypeId** | Multiple Ids Allowed  |Find Analytics for a particular Case Type Object. | **caseTypeId:\"CTYPATMYyaJekdgj2c\"** |\n| **caseTypeGroupId** | Multiple Ids Allowed  |Find Analytics for a particular Case Type Group Object. | **caseTypeGroupId:\"CTYG8gZ6hPRKhhYi4Y\"** |\n| **areaOfLawId** | Multiple Ids Allowed  |Find Analytics for a particular Area Of Law Object. | **areaOfLawId:\"AOFL2UxEWfVmTPMyqf\"** |\n| **caseClassId** | Multiple Ids Allowed  |Find Analytics for a particular Case Class Category Object. | **caseClassId:\"CSCLNjbKTN7Yfo2wdb\"** |\n| **caseFiledDate** | Single Allowed  |Find Analytics within a particular date range. | **caseFiledDate:[2018-05-08T00:00:00+00:00TO2019-05-08T00:00:00+00:00]** |\n| **JurisdictionGeo** | Multiple Ids Allowed  |Find Analytics within a particular Jurisdiction Geo. | **(JurisdictionGeo:(state:\"California\"))** |\n| **confidenceScore** | Single Allowed |Find Analytics for a given ConfidenceScore  | **confidenceScore>=0.5** |\n| **bestMatch** | Single Allowed |True if the normEntity has the highest Confidence Score of all possible normEntities | **bestMatch:true** |\n<br>\n## Example Query\nQuery to get all Parties associated with judge with norm id NJUDT7jCZyFNeLGpRq of all cases with case type id CTYPATMYyaJekdgj2c and case filed date between Jan 1st, 2017 to Nov 30th,2021<br>\nq=caseTypeId:\"CTYPATMYyaJekdgj2c\" AND caseFiledDate:[2017-01-01T00:00:00+00:00TO2021-11-30T00:00:00+00:00]\n<br><br>\n",
        "operationId": "getNormPartiesAssociatedWithNormJudge",
        "parameters": [
          {
            "description": "The URL encoded query you are searching for. The query can be as simple as a keyword, but supports many additional options and filters. All options are documented above.",
            "examples": {
              "HTTP200-modifiedValue": {
                "summary": "Default value",
                "value": ""
              },
              "HTTP200-sampleAnalyticsQuery": {
                "summary": "sampleAnalyticsQuery",
                "value": "caseTypeId:\"CTYPATMYyaJekdgj2c\" AND caseFiledDate:[2017-01-01T00:00:00+00:00TO2021-11-30T00:00:00+00:00]"
              },
              "HTTP400-sample400AnalyticsQuery": {
                "summary": "sample400AnalyticsQuery",
                "value": "caseTypeId:\"CTYPATMYyaJekdgj2c\" AND caseFiledDate:[2018-01-01T00:00:00+00:00TO2021-11-3000:00:00+00:00]"
              },
              "HTTP404-sample404AnalyticsQuery": {
                "summary": "sample404AnalyticsQuery",
                "value": "caseTypeId:\"CTYPATMYy1Jekdgj2c\" AND caseFiledDate:[2018-01-01T00:00:00+00:00TO2021-11-30T00:00:00+00:00]"
              }
            },
            "in": "query",
            "name": "q",
            "schema": {
              "maxLength": 2048,
              "nullable": false,
              "type": "string"
            }
          },
          {
            "$ref": "#/components/parameters/AnalyticsPageParam"
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleAnalyticsQuery": {
                    "value": {
                      "associatedNormPartyArray": [
                        {
                          "caseCount": 8608,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCj67vtjevM47cen",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-05T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-01-08T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "PORTFOLIO RECOVERY ASSOCIATES, L.L.C.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGrPmQyLdx9NGHcT",
                          "normPartyId": "NORGrPmQyLdx9NGHcT",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "200413310140",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 8598,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCkvKmKpjbrXHfE5",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-05T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-01-08T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "PORTFOLIO ASSOCIATES, INC.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGCJ2HBiSjcTuW3V",
                          "normPartyId": "NORGCJ2HBiSjcTuW3V",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "01875567",
                              "stateCode": "CA"
                            },
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "F99000002780",
                              "stateCode": "FL"
                            }
                          ]
                        },
                        {
                          "caseCount": 8598,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCH7wRDsaf7FypiC",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-05T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-01-08T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "PORTFOLIO RECOVERY SERVICES INC.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGXX6jhQwzhVEuuv",
                          "normPartyId": "NORGXX6jhQwzhVEuuv",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "03486146",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 8598,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCae4MM9BMdXoDXW",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-05T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-01-08T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "PORTFOLIO REALTY ASSOCIATES, L.P.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGcBsSQNBiiLxqsV",
                          "normPartyId": "NORGcBsSQNBiiLxqsV",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "B99000000208",
                              "stateCode": "FL"
                            },
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "199331400014",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 8598,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCg5NaemYAVuxEb5",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-05T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-01-08T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "PORTFOLIO RECOVERY MANAGEMENT GROUP INC.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGybh4QVJRZxa8f6",
                          "normPartyId": "NORGybh4QVJRZxa8f6",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "02924349",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 7971,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCCRLZQUFnFQELxg",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-06-21T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-01-05T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "MIDLAND FUNDING L.L.C.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGDiJQPjeed2mtvx",
                          "normPartyId": "NORGDiJQPjeed2mtvx",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "200801710065",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 5137,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCmDCVKwmin8YVpZ",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-08-03T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-01-08T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "CAVALRY SPV I, L.L.C.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGtQk3WM49eAsaLA",
                          "normPartyId": "NORGtQk3WM49eAsaLA",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "201122710088",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 5135,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCSabMfkdkBCeNNi",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-08-03T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-01-08T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "THE CAVALRY, INC.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGZk3xP6aWE7MjYm",
                          "normPartyId": "NORGZk3xP6aWE7MjYm",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "01920748",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 5135,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCaREU2tgadqaSQn",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-08-03T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-01-08T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "CAVALRY SPV II, L.L.C.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGhaBWjUZD8hGApz",
                          "normPartyId": "NORGhaBWjUZD8hGApz",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "201402210053",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 5118,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCPETvRgSRgL4N9S",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-08-03T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-01-08T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "CAVALRY SPVIV, L.L.C.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGwzq2n45B2N4AgH",
                          "normPartyId": "NORGwzq2n45B2N4AgH",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "201012410071",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 2295,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC2HbHVGmPFXTKnH",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-05T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-01-07T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "CITIBANK SERVICE CORPORATION",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGMZSznvVjGpUrn7",
                          "normPartyId": "NORGMZSznvVjGpUrn7",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "00544188",
                              "stateCode": "CA"
                            },
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "F94000002939",
                              "stateCode": "FL"
                            }
                          ]
                        },
                        {
                          "caseCount": 1804,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCHcnNMzFJSeQXua",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-08T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-12-29T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "SYNCHRONY BANK",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGrvVwM33eGzmESN",
                          "normPartyId": "NORGrvVwM33eGzmESN",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "03714887",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 1746,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCRrRBPUuWH6esBN",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2019-11-20T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-01-07T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "MIDLAND CREDIT CORPORATION",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORG3Kw7YUJXvGxHY4",
                          "normPartyId": "NORG3Kw7YUJXvGxHY4",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "01476039",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 1746,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCbgSFZiEmuXyLdR",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2019-11-20T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-01-07T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "MIDLAND CREDIT CORP.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORG7VFV7k6KCziQqE",
                          "normPartyId": "NORG7VFV7k6KCziQqE",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "01966962",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 1746,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCW4e2ZaNZDUUnVq",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2019-11-20T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-01-07T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "MIDLAND PACIFIC MANAGEMENT CORPORATION",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGAKE65cmTvpMp3s",
                          "normPartyId": "NORGAKE65cmTvpMp3s",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "02507633",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 1746,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC5ikBPciYUj4Dt6",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2019-11-20T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-01-07T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "MIDLAND BUSINESS MANAGEMENT, INC.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGEXqVKQu7YQgfoG",
                          "normPartyId": "NORGEXqVKQu7YQgfoG",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "02314290",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 1746,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCawyNEZy9xBNPja",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2019-11-20T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-01-07T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "MIDLAND FUND MANAGEMENT A NEVADA LIMITED PARTNERSHIP",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGNkWAKfyZoHwFJN",
                          "normPartyId": "NORGNkWAKfyZoHwFJN",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "199907100026",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 1746,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCBXBpxYq24q9UGm",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2019-11-20T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-01-07T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "MIDLAND MANAGEMENT L.L.C.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGWTLg6zkwFKPLbu",
                          "normPartyId": "NORGWTLg6zkwFKPLbu",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "199713410044",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 1746,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCEuwurWisnpfEcT",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2019-11-20T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-01-07T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "MIDLANDS MANAGEMENT GROUP, INC.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGbKZ9BxMUAKSRVv",
                          "normPartyId": "NORGbKZ9BxMUAKSRVv",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "03858800",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 1746,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC9Z9zb5gWMjdeEX",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2019-11-20T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-01-07T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "MIDLAND MANAGEMENT CORPORATION",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGu3ftfVmjf57MWu",
                          "normPartyId": "NORGu3ftfVmjf57MWu",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "01169941",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 1746,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCAzPxr2MtbUL2HX",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2019-11-20T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-01-07T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "MIDLAND MANAGEMENT, INC.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGyUwdPF7FFjfLxH",
                          "normPartyId": "NORGyUwdPF7FFjfLxH",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "00826822",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 1600,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCet8cET3BktTdBY",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-01-05T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-01-04T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "UNIFUND CCR, L.L.C.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGjMFWwq8nRtDeXx",
                          "normPartyId": "NORGjMFWwq8nRtDeXx",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "201129910225",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 1182,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCfBN6cSK7wVdDye",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-05T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-01-08T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "WELLS FARGO BANK, NATIONAL ASSOCIATION",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGYNB3AzmbkUGBen",
                          "normPartyId": "NORGYNB3AzmbkUGBen",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "02649647",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 1116,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCZcaEGJZJChpYgM",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-08T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-05-26T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "BARCLAY DELAWARE BANK",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGkKvkz6TrRWeWW2",
                          "normPartyId": "NORGkKvkz6TrRWeWW2",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "00489490",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 1108,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCZDLTG2qXiT4NZW",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-08T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-05-26T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "BARCLAYS BANK P.L.C.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGHMQjKHAbW8WZLc",
                          "normPartyId": "NORGHMQjKHAbW8WZLc",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "00491060",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 1038,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCkLkVhdj9uuAhif",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-09T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-01-05T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "ONEMAIN FINANCIAL SERVICES, INC.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGTsZQ8yVC4Cgr83",
                          "normPartyId": "NORGTsZQ8yVC4Cgr83",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "1805335",
                              "stateCode": "NY"
                            },
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "01888556",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 1037,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCZsZ4Cif3mQRJuw",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-09T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-01-05T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "ONEMAIN FINANCIAL GROUP, L.L.C.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGHSfScuKDcncQjU",
                          "normPartyId": "NORGHSfScuKDcncQjU",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "201509910229",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 1037,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCEWnabpMsdoUzZs",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-09T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-01-05T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "ONEMAIN FINANCIAL, INC.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGgzFkko9cAAmuX9",
                          "normPartyId": "NORGgzFkko9cAAmuX9",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "4048765",
                              "stateCode": "NY"
                            },
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "03339982",
                              "stateCode": "CA"
                            },
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "801362814",
                              "stateCode": "TX"
                            }
                          ]
                        },
                        {
                          "caseCount": 728,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCNbriogYMPvXqAQ",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-03-01T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-01-06T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "JEFFERSON CAPITAL CORP.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORG5fSGoxcpGhtxt7",
                          "normPartyId": "NORG5fSGoxcpGhtxt7",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "1952081",
                              "stateCode": "NY"
                            },
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "01947233",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 728,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCLvzQEdHbbQJZJR",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-03-01T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-01-06T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "JEFFERSON CAPITAL GROUP, INC.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGAXiczzxvKgobq8",
                          "normPartyId": "NORGAXiczzxvKgobq8",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "02828406",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 728,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCSv4sRZU89bv93Q",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-03-01T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-01-06T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "JEFFERSON CAPITAL GROUP, A CALIFORNIA LIMITED PARTNERSHIP",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGKew2dpAC7sbdUx",
                          "normPartyId": "NORGKew2dpAC7sbdUx",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "198900600016",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 728,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCnkQpQQ8wfw5KVi",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-03-01T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-01-06T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "JEFFERSON GAS SYSTEMS, INC.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGNzuhdx7HSX8muu",
                          "normPartyId": "NORGNzuhdx7HSX8muu",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "01824463",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 728,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCcWGebRc7vTXEfR",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-03-01T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-01-06T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "JEFFERSON CAPITAL MANAGEMENT, INC.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGe8hQadknu4goRm",
                          "normPartyId": "NORGe8hQadknu4goRm",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "02856558",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 728,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC5w7U7XcVLt9uJT",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-03-01T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-01-06T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "JEFFERSON CAPITAL L.L.C.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGjtgZbCo6nDCGji",
                          "normPartyId": "NORGjtgZbCo6nDCGji",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "199633010059",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 728,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCkH7RYQFxUM3j3c",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-03-01T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-01-06T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "JEFFERSON CAPITAL SYSTEMS, L.L.C.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGsnHVnFbvEQEtQE",
                          "normPartyId": "NORGsnHVnFbvEQEtQE",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "200906510175",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 695,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCHoFxN3F5sw6wqG",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-06T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-01-07T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "VELOCITY INVESTMENT PROPERTIES L.L.C.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORG2qf53hjbDAwtn7",
                          "normPartyId": "NORG2qf53hjbDAwtn7",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "200925110192",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 695,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC2VHVY74XZhiuYu",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-06T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-01-07T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "VELOCITY INVESTMENT INC",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGCjagGumRZ35Mox",
                          "normPartyId": "NORGCjagGumRZ35Mox",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "03414794",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 695,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCLpQNVSgZnaspsn",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-06T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-01-07T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "VELOCITY INVESTMENTS, L.L.C.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGEhqxTxWMhPTVmK",
                          "normPartyId": "NORGEhqxTxWMhPTVmK",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "200534910001",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 695,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCXh3pNA5ezBQP7R",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-06T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-01-07T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "VELOCITY INVESTMENT PARTNERS, L.L.C.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGGaxKkm9nkcixLV",
                          "normPartyId": "NORGGaxKkm9nkcixLV",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "201210710065",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 695,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCeJJa2ubUZURPEc",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-06T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-01-07T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "VELOCITY INVESTMENTS, INC.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGQqu4H9rmce4fWd",
                          "normPartyId": "NORGQqu4H9rmce4fWd",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "02012544",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 695,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCbkQpJRLq7jDfss",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-06T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-01-07T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "VELOCITY INVESTMENT, L.L.C.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGcFKXL6BWkBJAjz",
                          "normPartyId": "NORGcFKXL6BWkBJAjz",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "200028410038",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 695,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCEFo2TEU58CAnc5",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-06T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-01-07T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "VELOCITY INVESTMENT SALES, INC.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGcgPUj6Sgyq5bhe",
                          "normPartyId": "NORGcgPUj6Sgyq5bhe",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "02245651",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 695,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCQPMBj7Zp2y6Gbf",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-06T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-01-07T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "VELOCITY INVESTMENT GROUP, INC.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGqDDnEbVBYGmQYr",
                          "normPartyId": "NORGqDDnEbVBYGmQYr",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "F02000000923",
                              "stateCode": "FL"
                            },
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "02407264",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 692,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCQUEUvaR8gxAtki",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-06T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-01-07T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "VELOCITY NORTH INVESTMENTS, INC.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGVkD5b958ui2Y59",
                          "normPartyId": "NORGVkD5b958ui2Y59",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "03926207",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 692,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCUxCZHAzqx9vab6",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-06T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-01-07T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "VELOCITY TECHNOLOGIES INVESTMENTS, L.L.C.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGxa7xsq66N6LxDB",
                          "normPartyId": "NORGxa7xsq66N6LxDB",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "199608910023",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 607,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCH6YwFucmVHnHQn",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-09T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-01-05T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "CROWN ASSET MANAGEMENT, L.L.C.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORG9pPeCtuGaG7xKs",
                          "normPartyId": "NORG9pPeCtuGaG7xKs",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "200434210077",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 605,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCdx9F9TDc5wxmu5",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-09T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-01-05T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "CROWN MANAGEMENT L.L.C.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORG5aWkTBDJch7kMD",
                          "normPartyId": "NORG5aWkTBDJch7kMD",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "201323910146",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 605,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCSN8pB4JE8rHNTE",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-09T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-01-05T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "CROWN CAPITAL MANAGEMENT, L.L.C.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGQHM7Dv9km7r6di",
                          "normPartyId": "NORGQHM7Dv9km7r6di",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "200827510152",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 605,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCgrTHttK6JeRTkh",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-09T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-01-05T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "CROWN MGMT, L.L.C.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGfUnESLWFuXTAB2",
                          "normPartyId": "NORGfUnESLWFuXTAB2",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "201101310125",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 605,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC5cLYtJw5nxA4fQ",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-09T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-01-05T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "CROWN INVESTMENTS AND MANAGEMENT, L.L.C.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGo6TawJwauEDY6g",
                          "normPartyId": "NORGo6TawJwauEDY6g",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "201025910061",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 605,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCeeAXYE22o8kk3r",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-09T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-01-05T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "CROWN ISLAND MANAGEMENT, L.L.C.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGrBSSNS6jkgvdjh",
                          "normPartyId": "NORGrBSSNS6jkgvdjh",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "200406410046",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 519,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCNtVcxKi3LoMhzs",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-05T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-01-08T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "ABSOLUTE RESOLUTIONS INVESTMENTS, L.L.C.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGtZAvgViCV7oYkY",
                          "normPartyId": "NORGtZAvgViCV7oYkY",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "201631510021",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 518,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCBfDWgYiYVCzC8b",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-05T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-01-08T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "ABSOLUTE RESOLUTION INVESTIGATIONS L.L.C.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORG2TjrVYV2vKyKfh",
                          "normPartyId": "NORG2TjrVYV2vKyKfh",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "201509110149",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 518,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCMyzdzs9UV4CzNC",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-05T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-01-08T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "ABSOLUTE RESOLUTIONS, L.L.C.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGC38LmZiiJCRxqm",
                          "normPartyId": "NORGC38LmZiiJCRxqm",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "201328710271",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 518,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC6xsT7pGCrLm8ym",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-05T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-01-08T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "ABSOLUTE RESOLUTIONS CORPORATION",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGH3bVpbToPJGwwR",
                          "normPartyId": "NORGH3bVpbToPJGwwR",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "4675250",
                              "stateCode": "NY"
                            },
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "02290019",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 518,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCRWcdvYMWsacYyZ",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-05T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-01-08T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "ABSOLUTE RESOLUTIONS VIII, L.L.C.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGQLLxTBmZpnoSc4",
                          "normPartyId": "NORGQLLxTBmZpnoSc4",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "201417710080",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 518,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC3cZWAJwEoMFdyc",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-05T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-01-08T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "ABSOLUTE RESOLUTIONS V, L.L.C.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGhbA8LrKJt2sdLq",
                          "normPartyId": "NORGhbA8LrKJt2sdLq",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "201405110151",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 518,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC6oCALFFsFuSA3V",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-05T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-01-08T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "ABSOLUTE RESOLUTIONS IX, L.L.C.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGsRw7zmAm5YNtg4",
                          "normPartyId": "NORGsRw7zmAm5YNtg4",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "201426010037",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 515,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCeVRF6AMpCc77Zi",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-05T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-01-08T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "ABSOLUTE INVESTMENT, INC.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGZ9GYmh9qZrAzar",
                          "normPartyId": "NORGZ9GYmh9qZrAzar",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "02556952",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 515,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCnLzToD2MnoHQ48",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-05T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-01-08T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "ABSOLUTE INVESTMENTS, L.L.C.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGsmwykvADrAmQJn",
                          "normPartyId": "NORGsmwykvADrAmQJn",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "200506110078",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 515,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCkBwADphyw7ccgY",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-05T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-01-08T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "ABSOLUTE REALTY INVESTMENTS, L.L.C.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGxoVWuUeRwHA8R3",
                          "normPartyId": "NORGxoVWuUeRwHA8R3",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "201115910051",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 458,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCnmh8HV94LpxmpU",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-06-21T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-01-05T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "SECOND ROUND SUB, L.L.C.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGixWK4GaH46cujE",
                          "normPartyId": "NORGixWK4GaH46cujE",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "201317010255",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 423,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC66C48hJqG97ZZS",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2020-01-21T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-01-07T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "JPMORGAN CHASE & CO.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGzSg9ZXixSyfTRL",
                          "normPartyId": "NORGzSg9ZXixSyfTRL",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "271359",
                              "stateCode": "NY"
                            },
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "03830176",
                              "stateCode": "CA"
                            },
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "800140016",
                              "stateCode": "TX"
                            },
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "F02000006289",
                              "stateCode": "FL"
                            }
                          ]
                        },
                        {
                          "caseCount": 422,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCRhvfjZkEB4ZLNk",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2020-01-21T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-01-07T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "JPMORGAN CHASE CALIFORNIA CORPORATION",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGERs3rgNvCExTTP",
                          "normPartyId": "NORGERs3rgNvCExTTP",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "03297309",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 422,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCZNYYcqnE8GLsgq",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2020-01-21T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-01-07T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "JPMORGAN CHASE HOLDINGS L.L.C.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGFwuD7zFcKPtsMT",
                          "normPartyId": "NORGFwuD7zFcKPtsMT",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "201701410144",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 422,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCYaVrKwXMAoJ2AN",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2020-01-21T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-01-07T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "J.P. MORGAN CHASE NATIONAL CORPORATE SERVICES, INC.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGUvmHXJzEg759XQ",
                          "normPartyId": "NORGUvmHXJzEg759XQ",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "237593",
                              "stateCode": "NY"
                            },
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "00750701",
                              "stateCode": "CA"
                            },
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "857349",
                              "stateCode": "FL"
                            }
                          ]
                        },
                        {
                          "caseCount": 422,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCEPXeovvhEjnDsR",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2020-01-21T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-01-07T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "JPMORGAN CHASE BANK, NATIONAL ASSOCIATION",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGmvQFK3inz9ZFC4",
                          "normPartyId": "NORGmvQFK3inz9ZFC4",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "04244333",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 420,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCDZZryUqdaFxxjr",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-06T00:00:00+00:00",
                            "lastCaseFiledDate": "2019-06-24T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "JH PORTFOLIO DEBT EQUITIES 2, L.L.C.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGKCRFPsa5kmE3Mt",
                          "normPartyId": "NORGKCRFPsa5kmE3Mt",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "201117310129",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 420,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCo5B83c63HDrZTT",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-06T00:00:00+00:00",
                            "lastCaseFiledDate": "2019-06-24T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "JH PORTFOLIO DEBT EQUITIES, L.L.C.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGMywZww3ULAY3RY",
                          "normPartyId": "NORGMywZww3ULAY3RY",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "3814225",
                              "stateCode": "NY"
                            },
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "200526510226",
                              "stateCode": "CA"
                            },
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "802186304",
                              "stateCode": "TX"
                            },
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "M09000002564",
                              "stateCode": "FL"
                            }
                          ]
                        },
                        {
                          "caseCount": 420,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCepQJCekXHBAiZj",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-06T00:00:00+00:00",
                            "lastCaseFiledDate": "2019-06-24T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "JH PORTFOLIO DEBT EQUITIES 4, L.L.C.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGmixE68A35noT8M",
                          "normPartyId": "NORGmixE68A35noT8M",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "201331110049",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 355,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC6gjUTYFLKcXW9K",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-06T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-01-05T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "LOBEL FINANCIAL CORPORATION",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGFbPRfzgncG7nFp",
                          "normPartyId": "NORGFbPRfzgncG7nFp",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "1728647",
                              "stateCode": "NY"
                            },
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "00946714",
                              "stateCode": "CA"
                            },
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "801379532",
                              "stateCode": "TX"
                            },
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "F14000002157",
                              "stateCode": "FL"
                            }
                          ]
                        },
                        {
                          "caseCount": 355,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCfJUnBBD6g54qtX",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-06T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-01-05T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "LOBEL INVESTMENT CORPORATION",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGpwPt32HTknfp4w",
                          "normPartyId": "NORGpwPt32HTknfp4w",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "01433586",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 225,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCjpsP9qJNySz7nq",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-08-23T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-11-12T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "JHPDE FINANCE I, L.L.C.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGA9GBXoTuCRMVYm",
                          "normPartyId": "NORGA9GBXoTuCRMVYm",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "201733910068",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 151,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCAXCagUx5hLF6eP",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2019-04-11T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-11-02T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "ACHIEVABLE SOLUTIONS, INC.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGyU5GdQ636p4abn",
                          "normPartyId": "NORGyU5GdQ636p4abn",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "03940801",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 143,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC8gzNvt8Cfyh5JU",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-03-16T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-11-10T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "SECOND ROUND, L.P.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORG9d5FcKpdCmGQ6L",
                          "normPartyId": "NORG9d5FcKpdCmGQ6L",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "200833600016",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 124,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC9wMBDyKJyimbn4",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-09-12T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-11-17T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "TOYOTA MOTOR CREDIT CORP AND CAROL ROSEN",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORG8AEpfEQE675FNS",
                          "normPartyId": "NORG8AEpfEQE675FNS",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "03142306",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 124,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCmLkTPKHFMj6qin",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-09-12T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-11-17T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "TOYOTA MOTOR CREDIT CORPORATION",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGCjv2xU8BKwtNqL",
                          "normPartyId": "NORGCjv2xU8BKwtNqL",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "942726",
                              "stateCode": "NY"
                            },
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "01123946",
                              "stateCode": "CA"
                            },
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "P01664",
                              "stateCode": "FL"
                            }
                          ]
                        },
                        {
                          "caseCount": 124,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCffhzqLNcXxg5Qm",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-09-12T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-11-17T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "TOYOTA MOTOR CREDIT RECEIVABLES CORPORATION",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGM7joxXNs2eafHG",
                          "normPartyId": "NORGM7joxXNs2eafHG",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "01860936",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 120,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCVKiti4phakWWBQ",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-04-12T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-01-05T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "INVESTMENT RETRIEVERS, INC.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGjQFepvMNNVXsY7",
                          "normPartyId": "NORGjQFepvMNNVXsY7",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "3755757",
                              "stateCode": "NY"
                            },
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "02359594",
                              "stateCode": "CA"
                            },
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "800563357",
                              "stateCode": "TX"
                            },
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "F08000000483",
                              "stateCode": "FL"
                            }
                          ]
                        },
                        {
                          "caseCount": 119,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCQprMwrZtDuE7ZU",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-09T00:00:00+00:00",
                            "lastCaseFiledDate": "2019-09-04T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "ONEMAIN ASSURANCE SERVICES, INC.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORG9grdXgRSeELm3V",
                          "normPartyId": "NORG9grdXgRSeELm3V",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "F11000001249",
                              "stateCode": "FL"
                            },
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "4076469",
                              "stateCode": "NY"
                            },
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "03387251",
                              "stateCode": "CA"
                            },
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "801385152",
                              "stateCode": "TX"
                            }
                          ]
                        },
                        {
                          "caseCount": 119,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCekG29JrPyCSXZz",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-09T00:00:00+00:00",
                            "lastCaseFiledDate": "2019-09-04T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "ONEMAIN MORTGAGE SERVICES, INC.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGrprq87LmJCTo7G",
                          "normPartyId": "NORGrprq87LmJCTo7G",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "F12000002449",
                              "stateCode": "FL"
                            },
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "4300936",
                              "stateCode": "NY"
                            },
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "03479919",
                              "stateCode": "CA"
                            },
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "801610896",
                              "stateCode": "TX"
                            }
                          ]
                        },
                        {
                          "caseCount": 118,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCPe8JT7p3yACjjK",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-09T00:00:00+00:00",
                            "lastCaseFiledDate": "2019-09-04T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "ONEMAIN ASSURANCE SERVICES, L.L.C.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGBtckFYjANa3MWy",
                          "normPartyId": "NORGBtckFYjANa3MWy",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "201517510389",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 118,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCbHRXzxgNNpjMvG",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-09T00:00:00+00:00",
                            "lastCaseFiledDate": "2019-09-04T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "ONEMAIN GENERAL SERVICES CORPORATION",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGX7wVeXRwm2h7Mz",
                          "normPartyId": "NORGX7wVeXRwm2h7Mz",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "4531872",
                              "stateCode": "NY"
                            },
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "03577760",
                              "stateCode": "CA"
                            },
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "801801524",
                              "stateCode": "TX"
                            },
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "F13000002582",
                              "stateCode": "FL"
                            }
                          ]
                        },
                        {
                          "caseCount": 115,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCSvoZtscNXx4tHa",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-13T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-11-13T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "M ADJUSTMENT BUREAU, INC.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORG86v75Hz8tgEznN",
                          "normPartyId": "NORG86v75Hz8tgEznN",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "00676536",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 109,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCcP7jk798C3aZza",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-03-05T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-12-28T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "AUTOVEST, L.L.C.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGBen5tqpEndpnjs",
                          "normPartyId": "NORGBen5tqpEndpnjs",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "199600410038",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 107,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCkqte6prfga5n8o",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-13T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-11-13T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "CREDITOR'S PROFESSIONAL BUREAU, INC.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGAQsmKtGuX3vsTX",
                          "normPartyId": "NORGAQsmKtGuX3vsTX",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "00623319",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 107,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCbjc723nDkqTVaj",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-13T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-11-13T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "CREDITORS BUSINESS BUREAU, INC.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGCRZ2TxQcQsgFJi",
                          "normPartyId": "NORGCRZ2TxQcQsgFJi",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "01402041",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 107,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCCL5BHpepBpdUTE",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-13T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-11-13T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "CREDITORS ADJUSTMENT BUREAU INC",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGJYzcbDAg5Gv4vz",
                          "normPartyId": "NORGJYzcbDAg5Gv4vz",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "5471651",
                              "stateCode": "NY"
                            },
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "00562090",
                              "stateCode": "CA"
                            },
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "F18000000864",
                              "stateCode": "FL"
                            }
                          ]
                        },
                        {
                          "caseCount": 107,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCLkiEZkL9MFaMaT",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-13T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-11-13T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "CREDITOR'S SERVICE BUREAU, INC.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGxKvKsBADZyNpch",
                          "normPartyId": "NORGxKvKsBADZyNpch",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "01974514",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 106,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC4VyBZu9cYm6dQy",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-13T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-11-13T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "V.I.P. ADJUSTMENT BUREAU, INC.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORG8wTLsAkS2o23Jc",
                          "normPartyId": "NORG8wTLsAkS2o23Jc",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "02879874",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 106,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCJ9Fpvi4yngWpSs",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-13T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-11-13T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "KEY ADJUSTMENT BUREAU, INC.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGixBAdwXfH5d8rB",
                          "normPartyId": "NORGixBAdwXfH5d8rB",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "01173617",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 101,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCi3nXb2cPemuAqa",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-10-11T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-11-19T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "GALAXY INTERNATIONAL PURCHASING, L.L.C.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORG243haSvXWvozNo",
                          "normPartyId": "NORG243haSvXWvozNo",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "201120610118",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 98,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCY8pKxvfvkkQ7H3",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-10-11T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-11-19T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "GALAXY INTERNATIONAL, INC.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORG44zfQ3xqyY2yaV",
                          "normPartyId": "NORG44zfQ3xqyY2yaV",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "03337646",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 98,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCAuDfsvYMoefwzq",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-06T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-12-07T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "BANKERS ACCEPTANCE CORPORATION",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORG688PgZMQrg7AbW",
                          "normPartyId": "NORG688PgZMQrg7AbW",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "01830673",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 98,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCRgyLSzD55GswMS",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-10-11T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-11-19T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "GALAXY INTERNATIONAL USA, INC.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGAs3HwiRSpfvxhe",
                          "normPartyId": "NORGAs3HwiRSpfvxhe",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "02237400",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 98,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC9X8JPxQ46dYhAg",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-10-11T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-11-19T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "GALAXY INTERNATIONAL COMPANY, L.L.C.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGKiMbTfQYGTyUZH",
                          "normPartyId": "NORGKiMbTfQYGTyUZH",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "200628510167",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 98,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCnByfyeDGLuRKiS",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-10-11T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-11-19T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "GALAXY INTERNATIONAL TRADING INC.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGWLvHvYgeZFX5ut",
                          "normPartyId": "NORGWLvHvYgeZFX5ut",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "03929569",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 98,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCj5nSc7Vjxu6Uq6",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-06T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-12-07T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "BANKER'S MORTGAGE ACCEPTANCE CORPORATION",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGcN2tQfTANrXiXM",
                          "normPartyId": "NORGcN2tQfTANrXiXM",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "01640112",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 98,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCRdKvfb5e7C6SQk",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-06T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-12-07T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "BANKERS AUTO ACCEPTANCE CORP.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGfPSkKjQ2qu4gQq",
                          "normPartyId": "NORGfPSkKjQ2qu4gQq",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "03005604",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 98,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCjyHARaho6cPqzx",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-10-11T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-11-19T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "GALAXY INTERNATIONAL, L.L.C.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGhKS5vcYy8E5cP3",
                          "normPartyId": "NORGhKS5vcYy8E5cP3",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "200709210080",
                              "stateCode": "CA"
                            }
                          ]
                        }
                      ],
                      "nextPageAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDT7jCZyFNeLGpRq/associatedNormParties?pageNumber=2&q=caseTypeId%3A%22CTYPATMYyaJekdgj2c%22+AND+caseFiledDate%3A%5B2017-01-01T00%3A00%3A00%2B00%3A00TO2021-11-30T00%3A00%3A00%2B00%3A00%5D",
                      "previousPageAPI": null,
                      "totalCount": 5413,
                      "totalPages": 55
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/AssociatedNormPartyResponse"
                }
              }
            },
            "description": "OK"
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "sample400AnalyticsQuery": {
                    "value": {
                      "code": "UN400",
                      "details": "caseFiledDate is not in a required format",
                      "message": "INVALID_INPUT",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Bad Request"
          },
          "404": {
            "content": {
              "application/json": {
                "examples": {
                  "sample404AnalyticsQuery": {
                    "value": {
                      "code": "UN404",
                      "details": "caseTypeId not found",
                      "message": "RESOURCE_NOT_FOUND",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Not Found"
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "example-1": {
                    "value": {
                      "code": "UN500",
                      "details": "Has encountered a situation which needs to be handled.",
                      "message": "INTERNAL_SERVER_ERROR",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Internal Server Error"
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Parties Associated with the Judge.",
        "tags": [
          "Judge Analytics API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [
        {
          "description": "Norm  ID of the Judge.\n  - minimum: 18\n  - maximum: 18\n",
          "examples": {
            "HTTP200-sampleAnalyticsQuery": {
              "summary": "sampleAnalyticsQuery",
              "value": "NJUDT7jCZyFNeLGpRq"
            },
            "HTTP400-sample400AnalyticsQuery": {
              "summary": "sample400AnalyticsQuery",
              "value": "NJUDT7jCZyFNeLGpRq"
            },
            "HTTP404-sample404AnalyticsQuery": {
              "summary": "sample404AnalyticsQuery",
              "value": "NORGrPmQyLdx9NGHcT"
            }
          },
          "in": "path",
          "name": "normJudgeId",
          "required": true,
          "schema": {
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          }
        }
      ],
      "x-api-name": "AssociatedNormPartiesForNormJudgeAPI",
      "x-unicourt-tag": "JudgeAnalyticsAPIs"
    },
    "/normJudgeSearch": {
      "get": {
        "description": "### All query parameters supported for this API can be found in below schema section. Schema --> NormJudgeSearchQueryObject\n",
        "operationId": "searchNormalizedJudges",
        "parameters": [
          {
            "description": "The URL encoded query you are searching for.\nThe query can be as simple as a keyword, but supports many additional options and filters.</a>\n",
            "examples": {
              "HTTP200-sampleSearchQuery": {
                "summary": "sampleSearchQuery",
                "value": "normJudgeId:\"NJUD5STmDbUZGukfQm\""
              },
              "HTTP400-sampleSearchInvalidInputQuery": {
                "summary": "sampleSearchInvalidInputQuery",
                "value": "noRMJudgeId:\"NJUDXnbhERCyKSaUj\""
              }
            },
            "in": "query",
            "name": "q",
            "schema": {
              "maxLength": 2000,
              "minLength": 3,
              "nullable": false,
              "type": "string"
            }
          },
          {
            "$ref": "#/components/parameters/pageParam"
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleSearchQuery": {
                    "summary": "sampleSearchQuery",
                    "value": {
                      "nextPageAPI": null,
                      "normJudgeSearchId": "JSRCNUSK3pLGe48QcU",
                      "normJudgeSearchResultArray": [
                        {
                          "firstFetchDate": "2023-02-16T12:56:17+00:00",
                          "lastFetchDate": "2023-02-16T12:56:17+00:00",
                          "matchedObjectArray": [
                            {
                              "highlightSnippet": "<b>NJUD5STmDbUZGukfQm</b>",
                              "matchedObjectAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUD5STmDbUZGukfQm",
                              "matchedObjectAttribute": "normJudgeId",
                              "matchedObjectId": "NJUD5STmDbUZGukfQm",
                              "matchedObjectName": "NormJudge",
                              "object": "MatchedObject"
                            }
                          ],
                          "name": "JOHN ACOSTA",
                          "normJudgeDetailsAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUD5STmDbUZGukfQm",
                          "normJudgeId": "NJUD5STmDbUZGukfQm",
                          "object": "NormJudgeSearchResult"
                        }
                      ],
                      "object": "NormJudgeSearchResponse",
                      "pageNumber": 1,
                      "previousPageAPI": null,
                      "q": "normJudgeId%3A%22NJUD5STmDbUZGukfQm%22",
                      "totalCount": 1,
                      "totalPages": 1
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/NormJudgeSearchResponse"
                }
              }
            },
            "description": "Success"
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleSearchInvalidInputQuery": {
                    "$ref": "#/components/examples/SAMPLE_SEARCH_INVALID_INPUT_QUERY"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Error"
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "INTERNAL_SERVER_ERROR": {
                    "$ref": "#/components/examples/INTERNAL_SERVER_ERROR"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Error"
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Judge search.",
        "tags": [
          "Judge Analytics API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [],
      "x-api-name": "NormalizedJudgeSearchAPI",
      "x-unicourt-tag": "JudgeAnalyticsAPIs"
    },
    "/normJudgeSearch/{normJudgeSearchId}": {
      "get": {
        "description": "### All query parameters supported for this API can be found in below schema section. Schema --> NormJudgeSearchQueryObject\n",
        "operationId": "searchNormalizedJudgesById",
        "parameters": [
          {
            "$ref": "#/components/parameters/pageParam"
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleSearchQuery": {
                    "summary": "sampleSearchQuery",
                    "value": {
                      "nextPageAPI": null,
                      "normJudgeSearchId": "JSRCNUSK3pLGe48QcU",
                      "normJudgeSearchResultArray": [
                        {
                          "firstFetchDate": "2023-02-16T12:56:17+00:00",
                          "lastFetchDate": "2023-02-16T12:56:17+00:00",
                          "matchedObjectArray": [
                            {
                              "highlightSnippet": "<b>NJUD5STmDbUZGukfQm</b>",
                              "matchedObjectAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUD5STmDbUZGukfQm",
                              "matchedObjectAttribute": "normJudgeId",
                              "matchedObjectId": "NJUD5STmDbUZGukfQm",
                              "matchedObjectName": "NormJudge",
                              "object": "MatchedObject"
                            }
                          ],
                          "name": "JOHN ACOSTA",
                          "normJudgeDetailsAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUD5STmDbUZGukfQm",
                          "normJudgeId": "NJUD5STmDbUZGukfQm",
                          "object": "NormJudgeSearchResult"
                        }
                      ],
                      "object": "NormJudgeSearchResponse",
                      "pageNumber": 1,
                      "previousPageAPI": null,
                      "q": "normJudgeId%3A%22NJUD5STmDbUZGukfQm%22",
                      "totalCount": 1,
                      "totalPages": 1
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/NormJudgeSearchResponse"
                }
              }
            },
            "description": "Success"
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleInvalidPageNumberParam": {
                    "$ref": "#/components/examples/SAMPLE_SEARCH_INVALID_PAGE_NUMBER_PARAM"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Error"
          },
          "404": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleNotFoundResource": {
                    "value": {
                      "code": "UN404",
                      "details": "normJudgeSearchId resource you were looking for doesn't exist.",
                      "message": "RESOURCE_NOT_FOUND",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if the resource is not found."
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "INTERNAL_SERVER_ERROR": {
                    "$ref": "#/components/examples/INTERNAL_SERVER_ERROR"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Error"
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Norm judge search results for a given normJudgeSearchId.",
        "tags": [
          "Judge Analytics API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [
        {
          "description": "Norm judge Search information for the given normJudgeSearchId.",
          "examples": {
            "HTTP200-sampleSearchQuery": {
              "summary": "sampleSearchQuery",
              "value": "JSRCNUSK3pLGe48QcU"
            },
            "HTTP400-sampleInvalidPageNumberParam": {
              "summary": "sampleInvalidPageNumberParam",
              "value": "JSRCNUSK3pLGe48QcU"
            },
            "HTTP404-sampleNotFoundResource": {
              "summary": "sampleNotFoundResource",
              "value": "JSRQaKMouYPFRkZMAt"
            }
          },
          "in": "path",
          "name": "normJudgeSearchId",
          "required": true,
          "schema": {
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          }
        }
      ],
      "x-api-name": "NormalizedJudgeSearchByIdAPI",
      "x-unicourt-tag": "JudgeAnalyticsAPIs"
    },
    "/normLawFirm/{normLawFirmId}": {
      "get": {
        "description": "The Law Firm API allows you to look up Law Firms by normLawFirmId.\n",
        "operationId": "getNormLawFirmById",
        "parameters": [],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleAnalyticsQuery": {
                    "value": {
                      "caseAnalyticsAPI": {
                        "caseCountAnalyticsByAreaOfLawAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByAreaOfLaw?q=normLawFirmId:NORGrPmQyLdx9NGHcT&pageNumber=1",
                        "caseCountAnalyticsByCaseClassAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByCaseClass?q=normLawFirmId:NORGrPmQyLdx9NGHcT&pageNumber=1",
                        "caseCountAnalyticsByCaseTypeAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByCaseType?q=normLawFirmId:NORGrPmQyLdx9NGHcT&pageNumber=1",
                        "caseCountAnalyticsByCaseTypeGroupAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByCaseTypeGroup?q=normLawFirmId:NORGrPmQyLdx9NGHcT&pageNumber=1",
                        "caseCountAnalyticsByCourtAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByCourt?q=normLawFirmId:NORGrPmQyLdx9NGHcT&pageNumber=1",
                        "caseCountAnalyticsByCourtLocationAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByCourtLocation?q=normLawFirmId:NORGrPmQyLdx9NGHcT&pageNumber=1",
                        "caseCountAnalyticsByCourtSystemAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByCourtSystem?q=normLawFirmId:NORGrPmQyLdx9NGHcT&pageNumber=1",
                        "caseCountAnalyticsByCourtTypeAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByCourtType?q=normLawFirmId:NORGrPmQyLdx9NGHcT&pageNumber=1",
                        "caseCountAnalyticsByJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByJurisdictionGeo?q=normLawFirmId:NORGrPmQyLdx9NGHcT&pageNumber=1",
                        "caseCountAnalyticsByPartyRoleAPI": null,
                        "caseCountAnalyticsByPartyRoleGroupAPI": null,
                        "object": "CaseAnalyticsAPI",
                        "totalCases": 0
                      },
                      "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCBD7f7QH8L4BbsA",
                      "lawFirmAnalyticsAPI": {
                        "associatedNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGrPmQyLdx9NGHcT/associatedNormAttorneys?pageNumber=1",
                        "associatedNormJudgeAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGrPmQyLdx9NGHcT/associatedNormJudges?pageNumber=1",
                        "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGrPmQyLdx9NGHcT/associatedNormParties?pageNumber=1",
                        "caseCountAnalyticsByOpposingNormAttorneyAPI": null,
                        "caseCountAnalyticsByOpposingNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGrPmQyLdx9NGHcT/caseCountAnalyticsByOpposingNormLawFirm?pageNumber=1",
                        "caseCountAnalyticsByOpposingNormPartyAPI": null,
                        "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGrPmQyLdx9NGHcT",
                        "object": "LawFirmAnalyticsAPI"
                      },
                      "name": "PORTFOLIO RECOVERY ASSOCIATES, L.L.C.",
                      "normLawFirmId": "NORGrPmQyLdx9NGHcT",
                      "normOrganizationData": {
                        "cik": null,
                        "isInvolvedInLitigation": false,
                        "lei": null,
                        "naics": null,
                        "naicsDescription": null,
                        "name": "PORTFOLIO RECOVERY ASSOCIATES, LLC",
                        "normCorporateGroupArray": [],
                        "normOrganizationId": "NORGrPmQyLdx9NGHcT",
                        "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGrPmQyLdx9NGHcT",
                        "object": "NormOrganization",
                        "organizationType": "Business",
                        "sic": null,
                        "sicDescription": null,
                        "sosDataArray": [
                          {
                            "associatedSoSPersonArray": [
                              {
                                "contact": {
                                  "addressArray": [
                                    {
                                      "city": "NORFOLK",
                                      "countryCode": "USA",
                                      "countryName": "UNITED STATES OF AMERICA",
                                      "firstFetchDate": "2019-09-27T13:13:35+00:00",
                                      "isVisible": true,
                                      "lastFetchDate": "2019-09-27T16:44:26+00:00",
                                      "latitude": null,
                                      "longitude": null,
                                      "object": "Address",
                                      "stateCode": "VA",
                                      "stateName": "VIRGINIA",
                                      "streetAddress1": "120 CORPORATE BOULEVARD",
                                      "streetAddress2": null,
                                      "zip": "23502",
                                      "zip4": null
                                    }
                                  ],
                                  "emailArray": [],
                                  "object": "Contact",
                                  "phoneNumberArray": []
                                },
                                "entityName": "PRA GROUP, INC.",
                                "entityType": "Partner",
                                "object": "AssociatedSoSPerson"
                              },
                              {
                                "contact": {
                                  "addressArray": [
                                    {
                                      "city": "NORFOLK",
                                      "countryCode": "USA",
                                      "countryName": "UNITED STATES OF AMERICA",
                                      "firstFetchDate": "2019-01-11T15:34:17+00:00",
                                      "isVisible": false,
                                      "lastFetchDate": "2019-01-11T15:34:17+00:00",
                                      "latitude": null,
                                      "longitude": null,
                                      "object": "Address",
                                      "stateCode": "VA",
                                      "stateName": "VIRGINIA",
                                      "streetAddress1": "140 CORPORATE BLVD",
                                      "streetAddress2": null,
                                      "zip": "23502",
                                      "zip4": null
                                    }
                                  ],
                                  "emailArray": [],
                                  "object": "Contact",
                                  "phoneNumberArray": []
                                },
                                "entityName": "JUDITH SCOTT",
                                "entityType": "Partner",
                                "object": "AssociatedSoSPerson"
                              },
                              {
                                "contact": {
                                  "addressArray": [
                                    {
                                      "city": null,
                                      "countryCode": null,
                                      "countryName": "OUTSIDE US",
                                      "firstFetchDate": "2019-01-11T15:34:17+00:00",
                                      "isVisible": true,
                                      "lastFetchDate": "2019-09-27T16:44:26+00:00",
                                      "latitude": null,
                                      "longitude": null,
                                      "object": "Address",
                                      "stateCode": null,
                                      "stateName": "UNKNOWN",
                                      "streetAddress1": "AS CSC - LAWYERS INCORPORATING SERVICE (C1592199)",
                                      "streetAddress2": null,
                                      "zip": null,
                                      "zip4": null
                                    }
                                  ],
                                  "emailArray": [],
                                  "object": "Contact",
                                  "phoneNumberArray": []
                                },
                                "entityName": "CORPORATION SERVICE COMPANY WHICH WILL DO BUSINESS IN CALIFORNIA",
                                "entityType": "Agent",
                                "object": "AssociatedSoSPerson"
                              }
                            ],
                            "contact": {
                              "addressArray": [
                                {
                                  "city": "NORFOLK",
                                  "countryCode": "USA",
                                  "countryName": "UNITED STATES OF AMERICA",
                                  "firstFetchDate": "2019-01-11T15:34:17+00:00",
                                  "isVisible": false,
                                  "lastFetchDate": "2019-01-11T15:34:17+00:00",
                                  "latitude": null,
                                  "longitude": null,
                                  "object": "Address",
                                  "stateCode": "VA",
                                  "stateName": "VIRGINIA",
                                  "streetAddress1": "140 CORPORATE BLVD",
                                  "streetAddress2": null,
                                  "zip": "23502",
                                  "zip4": null
                                },
                                {
                                  "city": "NORFOLK",
                                  "countryCode": "USA",
                                  "countryName": "UNITED STATES OF AMERICA",
                                  "firstFetchDate": "2019-09-27T13:13:35+00:00",
                                  "isVisible": true,
                                  "lastFetchDate": "2019-09-27T16:44:26+00:00",
                                  "latitude": null,
                                  "longitude": null,
                                  "object": "Address",
                                  "stateCode": "VA",
                                  "stateName": "VIRGINIA",
                                  "streetAddress1": "130 CORPORATE BLVD",
                                  "streetAddress2": null,
                                  "zip": "23502",
                                  "zip4": null
                                }
                              ],
                              "emailArray": [],
                              "object": "Contact",
                              "phoneNumberArray": []
                            },
                            "domesticRegistration": true,
                            "fein": null,
                            "firstFetchDate": "2019-01-11T15:34:17+00:00",
                            "inactivationDate": null,
                            "isActive": true,
                            "lastFetchDate": "2019-09-27T16:44:26+00:00",
                            "lastFetchDateWithUpdates": "2019-09-27T16:44:26+00:00",
                            "nameChangesArray": [],
                            "object": "SOSData",
                            "registeredDate": "2004-03-17T00:00:00+00:00",
                            "sosAssociatedNormOrganizationArray": [],
                            "sosNumber": "200413310140",
                            "stateCode": "CA",
                            "status": "Active"
                          }
                        ],
                        "tickerArray": []
                      },
                      "object": "NormLawFirm"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/NormLawFirm"
                }
              }
            },
            "description": "OK"
          },
          "404": {
            "content": {
              "application/json": {
                "examples": {
                  "sample404AnalyticsQuery": {
                    "value": {
                      "code": "UN404",
                      "details": "Normalised LawFirm Not Found",
                      "message": "RESOURCE_NOT_FOUND",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Not Found"
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "example-1": {
                    "value": {
                      "code": "UN500",
                      "details": "Has encountered a situation which needs to be handled.",
                      "message": "INTERNAL_SERVER_ERROR",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Internal Server Error"
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Norm LawFirm Details.",
        "tags": [
          "Law Firm Analytics API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [
        {
          "description": "Norm  ID of the Law Firm.\n  - minimum: 18\n  - maximum: 18\n",
          "examples": {
            "HTTP200-sampleAnalyticsQuery": {
              "summary": "sampleAnalyticsQuery",
              "value": "NORGrPmQyLdx9NGHcT"
            },
            "HTTP404-sample404AnalyticsQuery": {
              "summary": "sample404AnalyticsQuery",
              "value": "NJUDT7jCZyFNeLGpRq"
            }
          },
          "in": "path",
          "name": "normLawFirmId",
          "required": true,
          "schema": {
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          }
        }
      ],
      "x-api-name": "NormLawFirmAPI",
      "x-unicourt-tag": "LawFirmAnalyticsAPIs"
    },
    "/normLawFirm/{normLawFirmId}/associatedNormAttorneys": {
      "get": {
        "description": "Returns a list of Attorneys associated to a Law Firm.\n## Terms and Connectors\n| Connector | Schema   | Description  | Example |\n| ------| ------| ------|------|\n| **AND** ||Find analytics containing all connected terms. The word AND does not have to be capitalized.|**courtId:\"CORTV4vCEaKrhystBz\" AND courtLocationId:\"COLO6b82CkRqS846hx\"**|\n| **IN()** || Allows you to specify multiple values, for a limit of up to 10.| **courtId IN (\"CORTKQiA4LJuv54tEj\",\"CORTV4vCEaKrhystBz\")**|\n| **courtId** | Multiple Ids Allowed  |Find Analytics for a particular Court Object. | **courtId:\"CORTV4vCEaKrhystBz\"** |\n| **courtSystemId** | Multiple Ids Allowed  |Find Analytics for a particular Court System Object. | **courtSystemId:\"COSYACHBdMewtaG5DY\"** |\n| **courtTypeId** | Multiple Ids Allowed  |Find Analytics for a particular Court Type Object. | **courtTypeId:\"COTPm8jjc2PAydpFhq\"** |\n| **courtLocationId** | Multiple Ids Allowed  |Find Analytics for a particular Court Location Object. | **courtLocationId:\"COLO6b82CkRqS846hx\"** |\n| **caseTypeId**  | Multiple Ids Allowed |Find Analytics for a particular Case Type Object. | **caseTypeId:\"CTYPATMYyaJekdgj2c\"** |\n| **caseTypeGroupId** | Multiple Ids Allowed  |Find Analytics for a particular Case Type Group Object. | **caseTypeGroupId:\"CTYG8gZ6hPRKhhYi4Y\"** |\n| **areaOfLawId** | Multiple Ids Allowed  |Find Analytics for a particular Area Of Law Object. | **areaOfLawId:\"AOFL2UxEWfVmTPMyqf\"** |\n| **caseClassId** | Multiple Ids Allowed  |Find Analytics for a particular Case Class Category Object. | **caseClassId:\"CSCLNjbKTN7Yfo2wdb\"** |\n| **partyRoleId** | Multiple Ids Allowed  |Find Analytics for a particular Party Type Object. | **partyRoleId:\"PTYRiP8nMgPxBsPc5i\"** |\n| **partyRoleGroupId** | Multiple Ids Allowed  |Find Analytics for a particular Party Type Group Object. | **partyRoleGroupId:\"PTYGBnjxbx6tKNfVEP\"** |\n| **attorneyPartyRoleId** | Multiple Ids Allowed  |Find Analytics for a particular Attorney Party Type Object. | **attorneyPartyRoleId:\"PTYRiP8nMgPxBsPc5i\"** |\n| **attorneyPartyRoleGroupId** | Multiple Ids Allowed  |Find Analytics for a particular Attorney Party Type Group Object. | **attorneyPartyRoleGroupId:\"PTYGBnjxbx6tKNfVEP\"** |\n| **caseFiledDate**  | Single Allowed |Find Analytics within a particular date range. | **caseFiledDate:[2018-05-08T00:00:00+00:00TO2019-05-08T00:00:00+00:00]** |\n| **JurisdictionGeo**  | Multiple Ids Allowed |Find Analytics within a particular Jurisdiction Geo. | **(JurisdictionGeo:(state:\"California\"))** |\n| **confidenceScore** | Single Allowed |Find Analytics for a given ConfidenceScore  | **confidenceScore>=0.5** |\n| **bestMatch** | Single Allowed |True if the normEntity has the highest Confidence Score of all possible normEntities | **bestMatch:true** |\n<br>        \n## Example Query\nQuery to get all attorneys associated with LawFirm with norm id NORGrPmQyLdx9NGHcT of all cases with case type id CTYPATMYyaJekdgj2c and  case filed date between Jan 1st, 2017 to Nov 30th,2021<br>\nq=caseTypeId:\"CTYPATMYyaJekdgj2c\" AND caseFiledDate:[2017-01-01T00:00:00+00:00TO2021-11-30T00:00:00+00:00]\n<br><br>\n",
        "operationId": "getNormAttorneysAssociatedWithNormLawFirm",
        "parameters": [
          {
            "description": "The URL encoded query you are searching for. The query can be as simple as a keyword, but supports many additional options and filters. All options are documented above.",
            "examples": {
              "HTTP200-modifiedValue": {
                "summary": "Default value",
                "value": ""
              },
              "HTTP200-sampleAnalyticsQuery": {
                "summary": "sampleAnalyticsQuery",
                "value": "caseTypeId:\"CTYPATMYyaJekdgj2c\" AND caseFiledDate:[2017-01-01T00:00:00+00:00TO2021-11-30T00:00:00+00:00]"
              },
              "HTTP400-sample400AnalyticsQuery": {
                "summary": "sample400AnalyticsQuery",
                "value": "caseTypeId:\"CTYPATMYyaJekdgj2c\" AND caseFiledDate:[2018-01-01T00:00:00+00:00TO2021-11-3000:00:00+00:00]"
              },
              "HTTP404-sample404AnalyticsQuery": {
                "summary": "sample404AnalyticsQuery",
                "value": "caseTypeId:\"CTYPATMYy1Jekdgj2c\" AND caseFiledDate:[2018-01-01T00:00:00+00:00TO2021-11-30T00:00:00+00:00]"
              }
            },
            "in": "query",
            "name": "q",
            "schema": {
              "maxLength": 2048,
              "nullable": false,
              "type": "string"
            }
          },
          {
            "$ref": "#/components/parameters/AnalyticsPageParam"
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleAnalyticsQuery": {
                    "value": {
                      "associatedNormAttorneyArray": [
                        {
                          "caseCount": 11235,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCNyrWeuJGxkgZck",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-04T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-11-29T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "JORDAN",
                          "lastName": "COOK",
                          "middleName": "DAVID",
                          "name": "JORDAN DAVID COOK",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYp7kmEQtt8jQ3eQ",
                          "normAttorneyId": "NATYp7kmEQtt8jQ3eQ",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "179720",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 7604,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRChqod8NZtKKfPYe",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-03T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-11-30T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "KRISTEN",
                          "lastName": "BRINKERHOFF",
                          "middleName": "LEIGH",
                          "name": "KRISTEN LEIGH BRINKERHOFF",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYtRqoeWfiMruLZ8",
                          "normAttorneyId": "NATYtRqoeWfiMruLZ8",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "263579",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 6258,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCCSzaGcduCWMVUc",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-04T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-11-30T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "EMILY",
                          "lastName": "PIERCE",
                          "middleName": "DEHAAS",
                          "name": "EMILY DEHAAS PIERCE",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYpP5gnspbT4gEsr",
                          "normAttorneyId": "NATYpP5gnspbT4gEsr",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "240084",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            },
                            {
                              "barNumber": "48624",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "WA"
                            },
                            {
                              "barNumber": "51005",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CO"
                            }
                          ]
                        },
                        {
                          "caseCount": 4605,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC7vCJuaCcz4KRK5",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-04T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-11-29T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "LORI",
                          "lastName": "WILLIAMS",
                          "middleName": "NICOLE",
                          "name": "LORI NICOLE WILLIAMS",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYqfApDiEZvDwsxa",
                          "normAttorneyId": "NATYqfApDiEZvDwsxa",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "242985",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 4274,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCd3HAjD7PErJRCa",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-04T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-11-22T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "JORDAN",
                          "lastName": "COOK",
                          "middleName": "DAVISSON",
                          "name": "JORDAN DAVISSON COOK",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYAiS8ujd78L2xyJ",
                          "normAttorneyId": "NATYAiS8ujd78L2xyJ",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "293394",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCGML2dU34zv5ii7",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2020-07-15T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-07-15T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "SAMANTHA",
                          "lastName": "LOPEZ",
                          "middleName": "MARCELA",
                          "name": "SAMANTHA MARCELA LOPEZ",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY4ksEuzytnHon6u",
                          "normAttorneyId": "NATY4ksEuzytnHon6u",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "321284",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCDaBybHBoyKdrfy",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2020-12-21T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-12-21T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "SAMANTHA",
                          "lastName": "ECKELMAN",
                          "middleName": "BETH",
                          "name": "SAMANTHA BETH ECKELMAN",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYaW5X9uyfFE4LGp",
                          "normAttorneyId": "NATYaW5X9uyfFE4LGp",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "236934",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            },
                            {
                              "barNumber": "10393",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "NV"
                            }
                          ]
                        }
                      ],
                      "nextPageAPI": null,
                      "previousPageAPI": null,
                      "totalCount": 7,
                      "totalPages": 1
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/AssociatedNormAttorneyResponse"
                }
              }
            },
            "description": "OK"
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "sample400AnalyticsQuery": {
                    "value": {
                      "code": "UN400",
                      "details": "caseFiledDate is not in a required format",
                      "message": "INVALID_INPUT",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Bad Request"
          },
          "404": {
            "content": {
              "application/json": {
                "examples": {
                  "sample404AnalyticsQuery": {
                    "value": {
                      "code": "UN404",
                      "details": "caseTypeId not found",
                      "message": "RESOURCE_NOT_FOUND",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Not Found"
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "example-1": {
                    "value": {
                      "code": "UN500",
                      "details": "Has encountered a situation which needs to be handled.",
                      "message": "INTERNAL_SERVER_ERROR",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Internal Server Error"
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Attorneys working for the Law Firm.",
        "tags": [
          "Law Firm Analytics API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [
        {
          "description": "Norm  ID of the Law Firm.\n  - minimum: 18\n  - maximum: 18\n",
          "examples": {
            "HTTP200-sampleAnalyticsQuery": {
              "summary": "sampleAnalyticsQuery",
              "value": "NORGrPmQyLdx9NGHcT"
            },
            "HTTP400-sample400AnalyticsQuery": {
              "summary": "sample400AnalyticsQuery",
              "value": "NORGrPmQyLdx9NGHcT"
            },
            "HTTP404-sample404AnalyticsQuery": {
              "summary": "sample404AnalyticsQuery",
              "value": "NJUDT7jCZyFNeLGpRq"
            }
          },
          "in": "path",
          "name": "normLawFirmId",
          "required": true,
          "schema": {
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          }
        }
      ],
      "x-api-name": "AssociatedNormAttorneysForNormLawFirmAPI",
      "x-unicourt-tag": "LawFirmAnalyticsAPIs"
    },
    "/normLawFirm/{normLawFirmId}/associatedNormJudges": {
      "get": {
        "description": "Returns list of Judges faced by the Law Firm.\n<br><br>\n## Terms and Connectors\n| Connector | Schema   | Description  | Example |\n| ------| ------| ------|------|\n| **AND** ||Find analytics containing all connected terms. The word AND does not have to be capitalized.|**courtId:\"CORTV4vCEaKrhystBz\" AND courtLocationId:\"COLO6b82CkRqS846hx\"**|\n| **IN()** || Allows you to specify multiple values, for a limit of up to 10.| **courtId IN (\"CORTKQiA4LJuv54tEj\",\"CORTV4vCEaKrhystBz\")**|\n| **courtId** | Multiple Ids Allowed  |Find Analytics for a particular Court Object. | **courtId:\"CORTV4vCEaKrhystBz\"** |\n| **courtSystemId** | Multiple Ids Allowed  |Find Analytics for a particular Court System Object. | **courtSystemId:\"COSYACHBdMewtaG5DY\"** |\n| **courtTypeId** | Multiple Ids Allowed  |Find Analytics for a particular Court Type Object. | **courtTypeId:\"COTPm8jjc2PAydpFhq\"** |\n| **courtLocationId** | Multiple Ids Allowed  |Find Analytics for a particular Court Location Object. | **courtLocationId:\"COLO6b82CkRqS846hx\"** |\n| **caseTypeId** | Multiple Ids Allowed  |Find Analytics for a particular Case Type Object. | **caseTypeId:\"CTYPATMYyaJekdgj2c\"** |\n| **caseTypeGroupId** | Multiple Ids Allowed  |Find Analytics for a particular Case Type Group Object. | **caseTypeGroupId:\"CTYG8gZ6hPRKhhYi4Y\"** |\n| **areaOfLawId** | Multiple Ids Allowed  |Find Analytics for a particular Area Of Law Object. | **areaOfLawId:\"AOFL2UxEWfVmTPMyqf\"** |\n| **caseClassId** | Multiple Ids Allowed  |Find Analytics for a particular Case Class Category Object. | **caseClassId:\"CSCLNjbKTN7Yfo2wdb\"** |\n| **caseFiledDate** | Single Allowed   |Find Analytics within a particular date range. | **caseFiledDate:[2018-05-08T00:00:00+00:00TO2019-05-08T00:00:00+00:00]** |\n| **JurisdictionGeo** | Multiple Ids Allowed  |Find Analytics within a particular Jurisdiction Geo. | **(JurisdictionGeo:(state:\"California\"))** |\n| **confidenceScore** | Single Allowed |Find Analytics for a given ConfidenceScore  | **confidenceScore>=0.5** |\n| **bestMatch** | Single Allowed |True if the normEntity has the highest Confidence Score of all possible normEntities | **bestMatch:true** |\n<br>\n## Example Query\nQuery to get all judges associated with LawFirm with norm id NORGrPmQyLdx9NGHcT of all cases with case type id CTYPATMYyaJekdgj2c and  case filed date between Jan 1st, 2017 to Nov 30th,2021<br>\nq=caseTypeId:\"CTYPATMYyaJekdgj2c\" AND caseFiledDate:[2017-01-01T00:00:00+00:00TO2021-11-30T00:00:00+00:00]\n<br><br>\n",
        "operationId": "getNormJudgesAssociatedWithNormLawFirm",
        "parameters": [
          {
            "description": "The URL encoded query you are searching for. The query can be as simple as a keyword, but supports many additional options and filters. All options are documented above.",
            "examples": {
              "HTTP200-modifiedValue": {
                "summary": "Default value",
                "value": ""
              },
              "HTTP200-sampleAnalyticsQuery": {
                "summary": "sampleAnalyticsQuery",
                "value": "caseTypeId:\"CTYPATMYyaJekdgj2c\" AND caseFiledDate:[2017-01-01T00:00:00+00:00TO2021-11-30T00:00:00+00:00]"
              },
              "HTTP400-sample400AnalyticsQuery": {
                "summary": "sample400AnalyticsQuery",
                "value": "caseTypeId:\"CTYPATMYyaJekdgj2c\" AND caseFiledDate:[2018-01-01T00:00:00+00:00TO2021-11-3000:00:00+00:00]"
              },
              "HTTP404-sample404AnalyticsQuery": {
                "summary": "sample404AnalyticsQuery",
                "value": "caseTypeId:\"CTYPATMYy1Jekdgj2c\" AND caseFiledDate:[2018-01-01T00:00:00+00:00TO2021-11-30T00:00:00+00:00]"
              }
            },
            "in": "query",
            "name": "q",
            "schema": {
              "maxLength": 2048,
              "nullable": false,
              "type": "string"
            }
          },
          {
            "$ref": "#/components/parameters/AnalyticsPageParam"
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleAnalyticsQuery": {
                    "value": {
                      "associatedNormJudgeArray": [
                        {
                          "caseCount": 2983,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCfsmA8YpUtDpphZ",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-05T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-01-08T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "ANN",
                          "lastName": "PARK",
                          "middleName": "H.",
                          "name": "ANN H. PARK",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDT7jCZyFNeLGpRq",
                          "normJudgeId": "NJUDT7jCZyFNeLGpRq",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 1656,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCmQNZjDuJNGHiWR",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-12T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-12-21T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "GRACIELA",
                          "lastName": "FREIXES",
                          "middleName": "L.",
                          "name": "FREIXES GRACIELA L",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUD3SNsKALeLqwE2z",
                          "normJudgeId": "NJUD3SNsKALeLqwE2z",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 1656,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCi8myMsQNQEgemv",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-12T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-12-21T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "GRACIELA",
                          "lastName": "FREIXES",
                          "middleName": null,
                          "name": "FREIXES GRACIELA F",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDsFYNsR9gVcHM2y",
                          "normJudgeId": "NJUDsFYNsR9gVcHM2y",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 1333,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC5k9PfvEbiQ6WoX",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2019-01-09T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-11-29T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "RANDY",
                          "lastName": "RHODES",
                          "middleName": null,
                          "name": "RANDY RHODES",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDk7HwoQsnzsFM6b",
                          "normJudgeId": "NJUDk7HwoQsnzsFM6b",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 1155,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC6qeToJdBoonUCf",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2019-01-11T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-08-13T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "ROBERT",
                          "lastName": "SCHUIT",
                          "middleName": "J.",
                          "name": "ROBERT J. SCHUIT",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDEoqEtC3kQRbCGk",
                          "normJudgeId": "NJUDEoqEtC3kQRbCGk",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 1126,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCnovYWFcfKe26eY",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-06T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-02-05T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "THOMAS",
                          "lastName": "LONG",
                          "middleName": null,
                          "name": "LONG THOMAS B",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDbhvsJtLXNLDKGm",
                          "normJudgeId": "NJUDbhvsJtLXNLDKGm",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 1126,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCPVCndgLhK7GrYJ",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-06T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-02-05T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "THOMAS",
                          "lastName": "LONG",
                          "middleName": "D.",
                          "name": "LONG THOMAS D",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDs6tspKwTsH4PEU",
                          "normJudgeId": "NJUDs6tspKwTsH4PEU",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 508,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCYshtbsMVZHiaic",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2021-06-01T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-11-29T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "SCOTT",
                          "lastName": "HERIN",
                          "middleName": null,
                          "name": "SCOTT HERIN",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDef6dFCuDCRAwWy",
                          "normJudgeId": "NJUDef6dFCuDCRAwWy",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 508,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCa9svyssuRJc657",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2021-06-01T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-11-29T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "SCOTT",
                          "lastName": "HERIN",
                          "middleName": "R.",
                          "name": "HERIN SCOTT R",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDneq3sFudxKqPfv",
                          "normJudgeId": "NJUDneq3sFudxKqPfv",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 375,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCdZagQc3PbXktqK",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-10T00:00:00+00:00",
                            "lastCaseFiledDate": "2017-05-24T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "VALERIE",
                          "lastName": "SALKIN",
                          "middleName": null,
                          "name": "VALERIE SALKIN",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUD2cXnuFz3c7o4bi",
                          "normJudgeId": "NJUD2cXnuFz3c7o4bi",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 313,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCh6eZAfdHz3saKY",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-10T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-08-04T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "MARK",
                          "lastName": "CULLERS",
                          "middleName": "E.",
                          "name": "MARK E. CULLERS",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUD5GSHKxKfkoJqdg",
                          "normJudgeId": "NJUD5GSHKxKfkoJqdg",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 302,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCkw9yKYZPhzcc69",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2020-08-21T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-05-27T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "ANDREW",
                          "lastName": "KIM",
                          "middleName": null,
                          "name": "KIM ANDREW K",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDKi8xxZGXJTUrCc",
                          "normJudgeId": "NJUDKi8xxZGXJTUrCc",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 302,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCDJG5E8AkZqZrL2",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2020-08-21T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-05-27T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "ANDREW",
                          "lastName": "KIM",
                          "middleName": "C.",
                          "name": "KIM ANDREW C",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDfqA3MfAhi4fpEN",
                          "normJudgeId": "NJUDfqA3MfAhi4fpEN",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 249,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCUmgFwuJaZsagdr",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-03-09T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-10-08T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "CHRISTOPHER",
                          "lastName": "HARMON",
                          "middleName": "B.",
                          "name": "HARMON CHRISTOPHER B",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUD3vEnjHy9BzCQXC",
                          "normJudgeId": "NJUD3vEnjHy9BzCQXC",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 249,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC6ECKXkkBcLckcD",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-03-09T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-10-08T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "CHRISTOPHER",
                          "lastName": "HARMON",
                          "middleName": null,
                          "name": "CHRISTOPHER HARMON",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDkBFzr3y4N7wCjS",
                          "normJudgeId": "NJUDkBFzr3y4N7wCjS",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 232,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCKYwFKjTY2225Mi",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-09T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-11-29T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "STEPHEN",
                          "lastName": "BENSON",
                          "middleName": "E.",
                          "name": "STEPHEN E. BENSON",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDGBXamVbBSSgZNy",
                          "normJudgeId": "NJUDGBXamVbBSSgZNy",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 232,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCnNGbKbSCtPsTP6",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-09T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-11-29T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "STEPHEN",
                          "lastName": "BENSON",
                          "middleName": "E",
                          "name": "STEPHEN E BENSON",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDpNgoQk8LTBGMfd",
                          "normJudgeId": "NJUDpNgoQk8LTBGMfd",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 215,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCLSRP8ewniSDaik",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-31T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-02-11T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "SAMUEL",
                          "lastName": "DALESANDRO",
                          "middleName": null,
                          "name": "SAMUEL DALESANDRO JR.",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDBoHbJUhHTKdWPR",
                          "normJudgeId": "NJUDBoHbJUhHTKdWPR",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 204,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCdfG283Ztgk63p9",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-05T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-12-03T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "BARBARA",
                          "lastName": "KRONLUND",
                          "middleName": "A.",
                          "name": "BARBARA A. KRONLUND",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDe6BuEBzbzjnZGi",
                          "normJudgeId": "NJUDe6BuEBzbzjnZGi",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 204,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCR7vEH2PQ4b2NMu",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-05T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-12-03T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "BARBARA",
                          "lastName": "KRONLUND",
                          "middleName": null,
                          "name": "BARBARA KRONLUND",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDgiMCiiZupirf8c",
                          "normJudgeId": "NJUDgiMCiiZupirf8c",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 183,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCUPPC9EcD46dNg5",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-05T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-12-10T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "ROGER",
                          "lastName": "ROSS",
                          "middleName": null,
                          "name": "ROGER ROSS",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDmhA6T7XZT5yaiW",
                          "normJudgeId": "NJUDmhA6T7XZT5yaiW",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 176,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCfFctXHvV9bhcsz",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-05-22T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-03-19T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "JAY",
                          "lastName": "ROBINSON",
                          "middleName": null,
                          "name": "JAY ROBINSON",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUD2D4vroFzHnNjFA",
                          "normJudgeId": "NJUD2D4vroFzHnNjFA",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 174,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCbhBVkpDyVfQwRC",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-05T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-12-03T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "CARTER",
                          "lastName": "HOLLY",
                          "middleName": "P.",
                          "name": "CARTER P. HOLLY",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUD26fS5HHwwKk6ps",
                          "normJudgeId": "NJUD26fS5HHwwKk6ps",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 174,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCNGcSFFocZpunRe",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2019-01-03T00:00:00+00:00",
                            "lastCaseFiledDate": "2019-09-23T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "SUSANNE",
                          "lastName": "FENSTERMACHER",
                          "middleName": "M.",
                          "name": "SUSANNE M. FENSTERMACHER",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUD5AYUFPBxrp5aFw",
                          "normJudgeId": "NJUD5AYUFPBxrp5aFw",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 174,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCkSsnpDoq8hqHih",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2019-01-03T00:00:00+00:00",
                            "lastCaseFiledDate": "2019-09-23T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "SUSANNE",
                          "lastName": "FENSTERMACHER",
                          "middleName": null,
                          "name": "SUSANNE FENSTERMACHER",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUD8Myw2uTUjRNjDT",
                          "normJudgeId": "NJUD8Myw2uTUjRNjDT",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 174,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCi82Rc8S42TQAYp",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-05T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-12-03T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "CARTER",
                          "lastName": "HOLLY",
                          "middleName": null,
                          "name": "CARTER HOLLY",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDegBjHBEXzFXfjp",
                          "normJudgeId": "NJUDegBjHBEXzFXfjp",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 169,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCFU4dHLpJLdKDcY",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-23T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-01-15T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "DAVID",
                          "lastName": "WILLIAMS",
                          "middleName": "A.",
                          "name": "DAVID A. WILLIAMS",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDg3KR8ntrzVYrAx",
                          "normJudgeId": "NJUDg3KR8ntrzVYrAx",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 168,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCQGqzfE2QZrRDkv",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-03-27T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-04-20T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "TAMARA",
                          "lastName": "MOSBARGER",
                          "middleName": "L.",
                          "name": "MOSBARGER TAMARA L",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUD27h9eiQYLjrcR4",
                          "normJudgeId": "NJUD27h9eiQYLjrcR4",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 168,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCesB5XtiMLLpni6",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-03-27T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-04-20T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "TAMARA",
                          "lastName": "MOSBARGER",
                          "middleName": "L.",
                          "name": "TAMARA L. MOSBARGER",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDBCUNVtEFPfnVq6",
                          "normJudgeId": "NJUDBCUNVtEFPfnVq6",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 158,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC6VJ34zoZAew3MV",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-02-23T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-11-30T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "DAVID",
                          "lastName": "FOSTER",
                          "middleName": null,
                          "name": "DAVID FOSTER",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDzh3mvYaBK7i3g4",
                          "normJudgeId": "NJUDzh3mvYaBK7i3g4",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 128,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCcxQFhSMpG84ymB",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-06T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-02-26T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "MICHAEL",
                          "lastName": "MULVIHILL",
                          "middleName": "J.",
                          "name": "MICHAEL J. MULVIHILL",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDiWeZ7SghbSofJs",
                          "normJudgeId": "NJUDiWeZ7SghbSofJs",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 124,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC4RwsuNJzDVrPG4",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-03-03T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-12-03T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "GEORGE",
                          "lastName": "ABDALLAH",
                          "middleName": null,
                          "name": "GEORGE ABDALLAH",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDCJzSMxUzDVRKA4",
                          "normJudgeId": "NJUDCJzSMxUzDVRKA4",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 124,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCJ7fQiK4nqZa3YG",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-03-03T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-12-03T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "GEORGE",
                          "lastName": "ABDALLAH",
                          "middleName": "J.",
                          "name": "GEORGE J. ABDALLAH JR.",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDSg8koqSoH5qUZx",
                          "normJudgeId": "NJUDSg8koqSoH5qUZx",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 118,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCPuoSDLfWQewbM6",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2019-11-13T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-04-21T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "MARIE",
                          "lastName": "WOOD",
                          "middleName": null,
                          "name": "MARIE WOOD",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDsnUHLUMQVJGotC",
                          "normJudgeId": "NJUDsnUHLUMQVJGotC",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 114,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCNpWaCTzYiA3kDh",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-09T00:00:00+00:00",
                            "lastCaseFiledDate": "2019-01-24T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "JACQUELINE",
                          "lastName": "STERN",
                          "middleName": "M",
                          "name": "JACQUELINE M STERN",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUD6yvmpLjsHScehx",
                          "normJudgeId": "NJUD6yvmpLjsHScehx",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 114,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC3MgQtWrzBrbPjV",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-09T00:00:00+00:00",
                            "lastCaseFiledDate": "2019-01-24T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "JACQUELINE",
                          "lastName": "STERN",
                          "middleName": "M.",
                          "name": "JACQUELINE M. STERN",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDFUyuvzm6f7pLq9",
                          "normJudgeId": "NJUDFUyuvzm6f7pLq9",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 104,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCeWq9rpDCrXTTKe",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-03-10T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-09-30T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "D.",
                          "lastName": "THARPE",
                          "middleName": "TYLER",
                          "name": "D. TYLER THARPE",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDWuBhrxHooGefKk",
                          "normJudgeId": "NJUDWuBhrxHooGefKk",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 97,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCVpATnSJWvzcRSC",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-02-10T00:00:00+00:00",
                            "lastCaseFiledDate": "2019-01-24T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "EARL",
                          "lastName": "MAAS",
                          "middleName": "H.",
                          "name": "EARL H. MAAS III",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDDyZU3Fc8mGVGMc",
                          "normJudgeId": "NJUDDyZU3Fc8mGVGMc",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 97,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCip3foCqoeUcXWr",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-02-10T00:00:00+00:00",
                            "lastCaseFiledDate": "2019-01-24T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "EARL",
                          "lastName": "MAAS",
                          "middleName": "H",
                          "name": "EARL H MAAS III",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDT7tQUsT6naf8qa",
                          "normJudgeId": "NJUDT7tQUsT6naf8qa",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 96,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCVdkVmS9VtyaDS4",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-02-03T00:00:00+00:00",
                            "lastCaseFiledDate": "2019-01-24T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "TIMOTHY",
                          "lastName": "CASSERLY",
                          "middleName": "M",
                          "name": "TIMOTHY M CASSERLY",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDeJjkwHn3fAiwvt",
                          "normJudgeId": "NJUDeJjkwHn3fAiwvt",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 96,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCWQDHzJe25mZTsq",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-02-03T00:00:00+00:00",
                            "lastCaseFiledDate": "2019-01-24T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "TIMOTHY",
                          "lastName": "CASSERLY",
                          "middleName": "M.",
                          "name": "CASSERLY TIMOTHY M",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDqz8C9zbzv8rUKy",
                          "normJudgeId": "NJUDqz8C9zbzv8rUKy",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 90,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC2kjJqbmBmaTTHN",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-05T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-09-28T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "ELIZABETH",
                          "lastName": "HUMPHREYS",
                          "middleName": null,
                          "name": "ELIZABETH HUMPHREYS",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDCWgUocgWtXu3qE",
                          "normJudgeId": "NJUDCWgUocgWtXu3qE",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 87,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCJuU5bYfrGw3qWm",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-09T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-08-09T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "RONALD",
                          "lastName": "FRAZIER",
                          "middleName": "F",
                          "name": "RONALD F FRAZIER",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDCbN9wkmkj3SDbw",
                          "normJudgeId": "NJUDCbN9wkmkj3SDbw",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 87,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCYPV9dD5eMsAjMA",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-02-15T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-11-19T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "JOSE",
                          "lastName": "BENAVIDES",
                          "middleName": "R.",
                          "name": "JOSE R. BENAVIDES",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDWfLoQKqXdSuwaY",
                          "normJudgeId": "NJUDWfLoQKqXdSuwaY",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 87,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCPcoX6kvKUZceuv",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-02-15T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-11-19T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "JOSE",
                          "lastName": "BENAVIDES",
                          "middleName": null,
                          "name": "JOSE BENAVIDES",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDYyEwxnMPxG8Ngy",
                          "normJudgeId": "NJUDYyEwxnMPxG8Ngy",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 87,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC5yBTiR8wFpXyzV",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-09T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-08-09T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "RONALD",
                          "lastName": "FRAZIER",
                          "middleName": "F.",
                          "name": "FRAZIER RONALD F",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDsbK9UrVyusMris",
                          "normJudgeId": "NJUDsbK9UrVyusMris",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 80,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCcJoCqyUXzzQfy8",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-05-23T00:00:00+00:00",
                            "lastCaseFiledDate": "2019-01-29T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "W.",
                          "lastName": "SCOTT",
                          "middleName": "STEPHEN",
                          "name": "W. STEPHEN SCOTT",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDM97Nqa2UTRwp7c",
                          "normJudgeId": "NJUDM97Nqa2UTRwp7c",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 79,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCScoUHvCwFJUhw7",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-04T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-08-04T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "ROBERT",
                          "lastName": "TAFOYA",
                          "middleName": null,
                          "name": "ROBERT TAFOYA",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDWBrSm96mNQiAdZ",
                          "normJudgeId": "NJUDWBrSm96mNQiAdZ",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 79,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCLfmhVSQJCwYpQz",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-04T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-08-04T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "ROBERT",
                          "lastName": "TAFOYA",
                          "middleName": "S.",
                          "name": "ROBERT S. TAFOYA",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDyP83vrUyriWBop",
                          "normJudgeId": "NJUDyP83vrUyriWBop",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 72,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCbzsWimLkLYmJ56",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2019-01-03T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-09-17T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "CHARLES",
                          "lastName": "BURCH",
                          "middleName": "BEN",
                          "name": "CHARLES BEN BURCH",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDU922xbm8QNNzxm",
                          "normJudgeId": "NJUDU922xbm8QNNzxm",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 68,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCWNPeizhMZUKroD",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-25T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-08-23T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "CRAIG",
                          "lastName": "PHILLIPS",
                          "middleName": null,
                          "name": "CRAIG PHILLIPS",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDMEysEX7xndGboC",
                          "normJudgeId": "NJUDMEysEX7xndGboC",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 63,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCMyLuEqLzixpxcH",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-03-28T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-09-30T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "GABRIEL",
                          "lastName": "BRICKEY",
                          "middleName": null,
                          "name": "GABRIEL BRICKEY",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDPhGt2mK8qFBuiT",
                          "normJudgeId": "NJUDPhGt2mK8qFBuiT",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 59,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCCkFUD8iikkNmD4",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-05T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-04-19T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "MONICA",
                          "lastName": "DIAZ",
                          "middleName": null,
                          "name": "MONICA DIAZ",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDTbCtKctzrxxgai",
                          "normJudgeId": "NJUDTbCtKctzrxxgai",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 59,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCJTEjJ3zbd5gYLd",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-02-14T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-12-04T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "DAVID",
                          "lastName": "GREGORY",
                          "middleName": null,
                          "name": "DAVID GREGORY",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDjwNYKPsxowM69B",
                          "normJudgeId": "NJUDjwNYKPsxowM69B",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 59,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCcGS3nsJMHHjmUE",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-12T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-02-18T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "KENNETH",
                          "lastName": "GREEN",
                          "middleName": null,
                          "name": "KENNETH GREEN",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDsFh4qfoj4A5wpR",
                          "normJudgeId": "NJUDsFh4qfoj4A5wpR",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 58,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCeQuhvTYWDssvRx",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-09T00:00:00+00:00",
                            "lastCaseFiledDate": "2019-01-24T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "ROBERT",
                          "lastName": "DAHLQUIST",
                          "middleName": "P.",
                          "name": "ROBERT P. DAHLQUIST",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDecRYCM9CrRmTCf",
                          "normJudgeId": "NJUDecRYCM9CrRmTCf",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 58,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC8bNUDHpbP2DxpG",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-09T00:00:00+00:00",
                            "lastCaseFiledDate": "2019-01-24T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "ROBERT",
                          "lastName": "DAHLQUIST",
                          "middleName": "P",
                          "name": "DAHLQUIST ROBERT P",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDnwqjsXmYMgCXvp",
                          "normJudgeId": "NJUDnwqjsXmYMgCXvp",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 56,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCT8iutTzDoGUuhf",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-02-10T00:00:00+00:00",
                            "lastCaseFiledDate": "2019-01-03T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "MARK",
                          "lastName": "BACCIARINI",
                          "middleName": "V.",
                          "name": "MARK V. BACCIARINI",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDTMB4FcEfX9GBQi",
                          "normJudgeId": "NJUDTMB4FcEfX9GBQi",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 53,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCPRfWFQaAstkfQi",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-03-30T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-01-14T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "JAYNE",
                          "lastName": "LEE",
                          "middleName": null,
                          "name": "JAYNE LEE",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDbiZDMHjmc4AKro",
                          "normJudgeId": "NJUDbiZDMHjmc4AKro",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 46,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCEoBz96Jd7p2fha",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2019-09-23T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-07-29T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "KHYMBERLI",
                          "lastName": "APALOO",
                          "middleName": "S.Y.",
                          "name": "KHYMBERLI S.Y. APALOO",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDq2soNtT855keru",
                          "normJudgeId": "NJUDq2soNtT855keru",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 41,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCF82ybG4hUudbxC",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-03-06T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-01-03T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "JOSEPH",
                          "lastName": "SCOTT",
                          "middleName": "C.",
                          "name": "JOSEPH C. SCOTT",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDBggB9M2Le8Po69",
                          "normJudgeId": "NJUDBggB9M2Le8Po69",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 34,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCHi85TyCZLBAYrV",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2019-08-21T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-11-19T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "MARCOS",
                          "lastName": "CAMACHO",
                          "middleName": "R.",
                          "name": "MARCOS R. CAMACHO",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDEgqQ8XSQt2vF8F",
                          "normJudgeId": "NJUDEgqQ8XSQt2vF8F",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 34,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCXpXJdnQ8ZPADLn",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2019-08-21T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-11-19T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "MARCOS",
                          "lastName": "CAMACHO",
                          "middleName": null,
                          "name": "MARCOS CAMACHO",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDc5E5Ds6ni3DNHT",
                          "normJudgeId": "NJUDc5E5Ds6ni3DNHT",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 30,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCKiGoHcYCzQKxFG",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-01-31T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-11-29T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "LOUIE",
                          "lastName": "VEGA",
                          "middleName": "L.",
                          "name": "LOUIE L. VEGA",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDDC25adnbYMG2Ja",
                          "normJudgeId": "NJUDDC25adnbYMG2Ja",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 30,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC8KvwB6kH7kAKij",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-01-31T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-11-29T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "LOUIE",
                          "lastName": "VEGA",
                          "middleName": null,
                          "name": "LOUIE VEGA",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDj8o9hesQLUmztT",
                          "normJudgeId": "NJUDj8o9hesQLUmztT",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 29,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCaayyYyb9UzjCGD",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-02-14T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-10-29T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "V.",
                          "lastName": "SWOPE",
                          "middleName": "RAYMOND",
                          "name": "V. RAYMOND SWOPE",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDSssuBdPYz9yHor",
                          "normJudgeId": "NJUDSssuBdPYz9yHor",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 29,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC43QHGbSVRM8Dh5",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-03-19T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-12-10T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "ROBERT",
                          "lastName": "WATERS",
                          "middleName": null,
                          "name": "ROBERT WATERS",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDqaEvtanGTtHGia",
                          "normJudgeId": "NJUDqaEvtanGTtHGia",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 27,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCaGHThTFygQFh6k",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-13T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-07-14T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "LYNN",
                          "lastName": "PONCIN",
                          "middleName": null,
                          "name": "LYNN PONCIN",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDD7rxYsG4VxptC3",
                          "normJudgeId": "NJUDD7rxYsG4VxptC3",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 27,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCfGkdsNmFSwkErf",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-03-15T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-08-05T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "KENNETH",
                          "lastName": "PRITCHARD",
                          "middleName": null,
                          "name": "KENNETH PRITCHARD",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDLDtWFwSScXQQsb",
                          "normJudgeId": "NJUDLDtWFwSScXQQsb",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 27,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC2Xdjkaf54e8m7d",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-03-15T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-08-05T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "KENNETH",
                          "lastName": "PRITCHARD",
                          "middleName": "G.",
                          "name": "KENNETH G. PRITCHARD",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDPR79zCQoimxvKe",
                          "normJudgeId": "NJUDPR79zCQoimxvKe",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 26,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC7jJqu4nKahewBC",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-04-25T00:00:00+00:00",
                            "lastCaseFiledDate": "2019-10-10T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "MARY",
                          "lastName": "ARAND",
                          "middleName": null,
                          "name": "MARY ARAND",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDF5WbqGSsBefww6",
                          "normJudgeId": "NJUDF5WbqGSsBefww6",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 26,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCQUrQKX5nk3PQpj",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-04-25T00:00:00+00:00",
                            "lastCaseFiledDate": "2019-10-10T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "MARY",
                          "lastName": "ARAND",
                          "middleName": "E.",
                          "name": "MARY E. ARAND",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDNnHK5WTmvSSDJj",
                          "normJudgeId": "NJUDNnHK5WTmvSSDJj",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 25,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCASaiwfWko7zjyH",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-05T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-02-10T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "PETER",
                          "lastName": "KIRWAN",
                          "middleName": "H.",
                          "name": "PETER H. KIRWAN",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDNAKqd7VocnX7pT",
                          "normJudgeId": "NJUDNAKqd7VocnX7pT",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 24,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCW4aP3YD4VyvsYT",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-03-27T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-03-09T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "MICHAEL",
                          "lastName": "CANDELA",
                          "middleName": null,
                          "name": "MICHAEL CANDELA",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUD7N2s85xQRHsdyu",
                          "normJudgeId": "NJUD7N2s85xQRHsdyu",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 24,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC6Wqu8TqBpBGmqF",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-03-27T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-03-09T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "MICHAEL",
                          "lastName": "CANDELA",
                          "middleName": "P.",
                          "name": "MICHAEL P. CANDELA",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDZFvumwWXzJVhQD",
                          "normJudgeId": "NJUDZFvumwWXzJVhQD",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 24,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCCTUohMWBHLUH5m",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-06T00:00:00+00:00",
                            "lastCaseFiledDate": "2017-05-30T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "LINDA",
                          "lastName": "LOFTHUS",
                          "middleName": null,
                          "name": "LINDA LOFTHUS",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDrNLU68YDrMCkST",
                          "normJudgeId": "NJUDrNLU68YDrMCkST",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 24,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCXpkZXm3YyTNNW7",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-06T00:00:00+00:00",
                            "lastCaseFiledDate": "2017-05-30T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "LINDA",
                          "lastName": "LOFTHUS",
                          "middleName": "L.",
                          "name": "LINDA L. LOFTHUS",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDxDHYHfrExG8MVR",
                          "normJudgeId": "NJUDxDHYHfrExG8MVR",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 23,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCkbYYouiYAv2iYm",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-01-22T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-11-19T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "THERESE",
                          "lastName": "FOLEY",
                          "middleName": null,
                          "name": "THERESE FOLEY",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDUfadViF49vsRfs",
                          "normJudgeId": "NJUDUfadViF49vsRfs",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 23,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCGspJxMpiLM2iDc",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2021-04-21T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-11-22T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "DAVID",
                          "lastName": "MORANDA",
                          "middleName": null,
                          "name": "DAVID MORANDA",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDkkk7AQn3r3aoXH",
                          "normJudgeId": "NJUDkkk7AQn3r3aoXH",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 22,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCC3wbmvf58W7Jvb",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-04-28T00:00:00+00:00",
                            "lastCaseFiledDate": "2019-12-13T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "LISA",
                          "lastName": "NOVAK",
                          "middleName": "A.",
                          "name": "LISA A. NOVAK",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUD2qUQ3hWCweG4we",
                          "normJudgeId": "NJUD2qUQ3hWCweG4we",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 20,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCPh7P8QeUF8AzTP",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-02-14T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-12-31T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "CLIFFORD",
                          "lastName": "CRETAN",
                          "middleName": "V.",
                          "name": "CLIFFORD V. CRETAN",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDCMPbiktFEDwuba",
                          "normJudgeId": "NJUDCMPbiktFEDwuba",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 20,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCGcAwk8MqrP3Gkb",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-02-10T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-01-08T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "PAUL",
                          "lastName": "LO",
                          "middleName": null,
                          "name": "PAUL LO",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDNbxxCgEYpuS5nG",
                          "normJudgeId": "NJUDNbxxCgEYpuS5nG",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 20,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRChdVqa2Cs4Xd9eg",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-02-10T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-01-08T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "PAUL",
                          "lastName": "LO",
                          "middleName": "C.",
                          "name": "PAUL C. LO",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDfyUePvWUKLPDd5",
                          "normJudgeId": "NJUDfyUePvWUKLPDd5",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 19,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC3LXKZfBRs8kS3d",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-02-07T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-10-19T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "MAUREEN",
                          "lastName": "FOLAN",
                          "middleName": "A.",
                          "name": "MAUREEN A. FOLAN",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUD5xqU89XGXHj78x",
                          "normJudgeId": "NJUD5xqU89XGXHj78x",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 19,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCTbdkLsjQwpoCdY",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-03-28T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-10-19T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "SUNIL",
                          "lastName": "KULKARNI",
                          "middleName": "R.",
                          "name": "SUNIL R. KULKARNI",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDLz5NXZPkrnwRDE",
                          "normJudgeId": "NJUDLz5NXZPkrnwRDE",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 19,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCYwXQVDWCoWwFLY",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-02-23T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-04-27T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "THEODORE",
                          "lastName": "ZAYNER",
                          "middleName": "C.",
                          "name": "THEODORE C. ZAYNER",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDbazfnqmvNsGZDC",
                          "normJudgeId": "NJUDbazfnqmvNsGZDC",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 19,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCgoLyYCTVxpj2YW",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-02-23T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-04-27T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "THEODORE",
                          "lastName": "ZAYNER",
                          "middleName": null,
                          "name": "THEODORE ZAYNER",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDuZmzXVGUxXk9oT",
                          "normJudgeId": "NJUDuZmzXVGUxXk9oT",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 18,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC8EBT7JgCscQPuU",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-05T00:00:00+00:00",
                            "lastCaseFiledDate": "2019-05-23T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "CARLOS",
                          "lastName": "CABRERA",
                          "middleName": null,
                          "name": "CARLOS CABRERA",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDS9dmgf2Rz2fkVz",
                          "normJudgeId": "NJUDS9dmgf2Rz2fkVz",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 18,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCjrDokqzakE9TLm",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-05T00:00:00+00:00",
                            "lastCaseFiledDate": "2019-05-23T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "CARLOS",
                          "lastName": "CABRERA",
                          "middleName": "A.",
                          "name": "CARLOS A. CABRERA",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDSc6qUp9WPJZZHG",
                          "normJudgeId": "NJUDSc6qUp9WPJZZHG",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 18,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCAUPgJJK2XFy9cu",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-04-19T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-11-30T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "BARBARA",
                          "lastName": "ROBERTS",
                          "middleName": "L.",
                          "name": "BARBARA L. ROBERTS",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDcjBZmXrmMaoTmj",
                          "normJudgeId": "NJUDcjBZmXrmMaoTmj",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 17,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCYBGcs4EkxknmiM",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2019-11-13T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-07-28T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "ALBERT",
                          "lastName": "WOJCIK",
                          "middleName": "J.",
                          "name": "ALBERT J. WOJCIK",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUD3EmfTou6mWUe4e",
                          "normJudgeId": "NJUD3EmfTou6mWUe4e",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 15,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCAHZo35RRK27Afb",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-03-10T00:00:00+00:00",
                            "lastCaseFiledDate": "2019-01-16T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "RICHARD",
                          "lastName": "DUBOIS",
                          "middleName": "H.",
                          "name": "RICHARD H. DUBOIS",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUD9uiosuxdiSZKQx",
                          "normJudgeId": "NJUD9uiosuxdiSZKQx",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 15,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCYvz5C9tCidSz6J",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2019-01-03T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-02-20T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "GARY",
                          "lastName": "WITT",
                          "middleName": "R.",
                          "name": "GARY R. WITT",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDpitzwxpKiAAxrR",
                          "normJudgeId": "NJUDpitzwxpKiAAxrR",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 14,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCRhR96t2erSbPPw",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-07-11T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-07-30T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "ERNST",
                          "lastName": "HALPERIN",
                          "middleName": "A.",
                          "name": "ERNST A. HALPERIN",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDKvfpVgm3LoW8W2",
                          "normJudgeId": "NJUDKvfpVgm3LoW8W2",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 14,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCGQHYREL628k5pb",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-05-30T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-11-30T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "BRYAN",
                          "lastName": "STAINFIELD",
                          "middleName": null,
                          "name": "BRYAN STAINFIELD",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDLekpVJnS8nW4oM",
                          "normJudgeId": "NJUDLekpVJnS8nW4oM",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 14,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCExcVFxv2iZEfbJ",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-05-30T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-11-30T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "BRYAN",
                          "lastName": "STAINFIELD",
                          "middleName": "K.",
                          "name": "BRYAN K. STAINFIELD",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDQHcXMERVRmGxFp",
                          "normJudgeId": "NJUDQHcXMERVRmGxFp",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 14,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCQ3V2HwYkoUfDmR",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-04-14T00:00:00+00:00",
                            "lastCaseFiledDate": "2019-08-28T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "ROBERT",
                          "lastName": "GLUSMAN",
                          "middleName": "A.",
                          "name": "ROBERT A. GLUSMAN",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDaDK3FwMR9BaC7J",
                          "normJudgeId": "NJUDaDK3FwMR9BaC7J",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 14,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCmToKSyjafiNM7R",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2020-01-22T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-10-19T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "THANG",
                          "lastName": "BARRETT",
                          "middleName": "NGUYEN",
                          "name": "THANG NGUYEN BARRETT",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDaKrNkpQfRbBA8v",
                          "normJudgeId": "NJUDaKrNkpQfRbBA8v",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 14,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCUVQT3hvJaG9hA5",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2020-01-22T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-10-19T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "THANG",
                          "lastName": "BARRETT",
                          "middleName": null,
                          "name": "THANG BARRETT",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDuuKvwCSsjuFLgP",
                          "normJudgeId": "NJUDuuKvwCSsjuFLgP",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 13,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCV7roZKWjq5AsEU",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-04-24T00:00:00+00:00",
                            "lastCaseFiledDate": "2019-01-16T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "CHARLES",
                          "lastName": "TREAT",
                          "middleName": "STEVE",
                          "name": "CHARLES STEVE TREAT",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUD7M2rFQDcfoHQug",
                          "normJudgeId": "NJUD7M2rFQDcfoHQug",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        }
                      ],
                      "nextPageAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGrPmQyLdx9NGHcT/associatedNormJudges?pageNumber=2&q=caseTypeId%3A%22CTYPATMYyaJekdgj2c%22+AND+caseFiledDate%3A%5B2017-01-01T00%3A00%3A00%2B00%3A00TO2021-11-30T00%3A00%3A00%2B00%3A00%5D",
                      "previousPageAPI": null,
                      "totalCount": 213,
                      "totalPages": 3
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/AssociatedNormJudgeResponse"
                }
              }
            },
            "description": "OK"
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "sample400AnalyticsQuery": {
                    "value": {
                      "code": "UN400",
                      "details": "caseFiledDate is not in a required format",
                      "message": "INVALID_INPUT",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Bad Request"
          },
          "404": {
            "content": {
              "application/json": {
                "examples": {
                  "sample404AnalyticsQuery": {
                    "value": {
                      "code": "UN404",
                      "details": "caseTypeId not found",
                      "message": "RESOURCE_NOT_FOUND",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Not Found"
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "example-1": {
                    "value": {
                      "code": "UN500",
                      "details": "Has encountered a situation which needs to be handled.",
                      "message": "INTERNAL_SERVER_ERROR",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Internal Server Error"
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Judges Faced By the Law Firm.",
        "tags": [
          "Law Firm Analytics API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [
        {
          "description": "Norm  ID of the Law Firm.\n  - minimum: 18\n  - maximum: 18\n",
          "examples": {
            "HTTP200-sampleAnalyticsQuery": {
              "summary": "sampleAnalyticsQuery",
              "value": "NORGrPmQyLdx9NGHcT"
            },
            "HTTP400-sample400AnalyticsQuery": {
              "summary": "sample400AnalyticsQuery",
              "value": "NORGrPmQyLdx9NGHcT"
            },
            "HTTP404-sample404AnalyticsQuery": {
              "summary": "sample404AnalyticsQuery",
              "value": "NJUDT7jCZyFNeLGpRq"
            }
          },
          "in": "path",
          "name": "normLawFirmId",
          "required": true,
          "schema": {
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          }
        }
      ],
      "x-api-name": "AssociatedNormJudgesForNormLawFirmAPI",
      "x-unicourt-tag": "LawFirmAnalyticsAPIs"
    },
    "/normLawFirm/{normLawFirmId}/associatedNormParties": {
      "get": {
        "description": "Returns list of Parties represented by the Law Firm.\n## Terms and Connectors\n| Connector | Schema   | Description  | Example |\n| ------| ------| ------|------|\n| **AND** ||Find analytics containing all connected terms. The word AND does not have to be capitalized.|**courtId:\"CORTV4vCEaKrhystBz\" AND courtLocationId:\"COLO6b82CkRqS846hx\"**|\n| **IN()** || Allows you to specify multiple values, for a limit of up to 10.| **courtId IN (\"CORTKQiA4LJuv54tEj\",\"CORTV4vCEaKrhystBz\")**|\n| **courtId** | Multiple Ids Allowed |Find Analytics for a particular Court Object. | **courtId:\"CORTV4vCEaKrhystBz\"** |\n| **courtSystemId** | Multiple Ids Allowed |Find Analytics for a particular Court System Object. | **courtSystemId:\"COSYACHBdMewtaG5DY\"** |\n| **courtTypeId** | Multiple Ids Allowed |Find Analytics for a particular Court Type Object. | **courtTypeId:\"COTPm8jjc2PAydpFhq\"** |\n| **courtLocationId** | Multiple Ids Allowed |Find Analytics for a particular Court Location Object. | **courtLocationId:\"COLO6b82CkRqS846hx\"** |\n| **caseTypeId** | Multiple Ids Allowed |Find Analytics for a particular Case Type Object. | **caseTypeId:\"CTYPATMYyaJekdgj2c\"** |\n| **caseTypeGroupId** | Multiple Ids Allowed |Find Analytics for a particular Case Type Group Object. | **caseTypeGroupId:\"CTYG8gZ6hPRKhhYi4Y\"** |\n| **areaOfLawId** | Multiple Ids Allowed |Find Analytics for a particular Area Of Law Object. | **areaOfLawId:\"AOFL2UxEWfVmTPMyqf\"** |\n| **caseClassId** | Multiple Ids Allowed |Find Analytics for a particular Case Class Category Object. | **caseClassId:\"CSCLNjbKTN7Yfo2wdb\"** |\n| **partyRoleId** | Multiple Ids Allowed |Find Analytics for a particular Party Type Object. | **partyRoleId:\"PTYRiP8nMgPxBsPc5i\"** |\n| **partyRoleGroupId** | Multiple Ids Allowed |Find Analytics for a particular Party Type Group Object. | **partyRoleGroupId:\"PTYGBnjxbx6tKNfVEP\"** |\n| **attorneyPartyRoleId** | Multiple Ids Allowed |Find Analytics for a particular Attorney Party Type Object. | **attorneyPartyRoleId:\"PTYRiP8nMgPxBsPc5i\"** |\n| **attorneyPartyRoleGroupId** | Multiple Ids Allowed |Find Analytics for a particular Attorney Party Type Group Object. | **attorneyPartyRoleGroupId:\"PTYGBnjxbx6tKNfVEP\"** |\n| **caseFiledDate** | Single Allowed  |Find Analytics within a particular date range. | **caseFiledDate:[2018-05-08T00:00:00+00:00TO2019-05-08T00:00:00+00:00]** |\n| **JurisdictionGeo** | Multiple filters Allowed |Find Analytics within a particular Jurisdiction Geo. | **(JurisdictionGeo:(state:\"California\"))** |\n| **confidenceScore** | Single Allowed |Find Analytics for a given ConfidenceScore  | **confidenceScore>=0.5** |\n| **bestMatch** | Single Allowed |True if the normEntity has the highest Confidence Score of all possible normEntities | **bestMatch:true** |\n<br>\n## Example Query\nQuery to get all parties associated with LawFirm with norm id NORGrPmQyLdx9NGHcT of all cases with case type id CTYPATMYyaJekdgj2c and  case filed date between Jan 1st, 2017 to Nov 30th,2021<br>\nq=caseTypeId:\"CTYPATMYyaJekdgj2c\" AND caseFiledDate:[2017-01-01T00:00:00+00:00TO2021-11-30T00:00:00+00:00]\n<br><br>\n",
        "operationId": "getNormPartiesAssociatedWithNormLawFirm",
        "parameters": [
          {
            "description": "The URL encoded query you are searching for. The query can be as simple as a keyword, but supports many additional options and filters. All options are documented above.",
            "examples": {
              "HTTP200-modifiedValue": {
                "summary": "Default value",
                "value": ""
              },
              "HTTP200-sampleAnalyticsQuery": {
                "summary": "sampleAnalyticsQuery",
                "value": "caseTypeId:\"CTYPATMYyaJekdgj2c\" AND caseFiledDate:[2017-01-01T00:00:00+00:00TO2021-11-30T00:00:00+00:00]"
              },
              "HTTP400-sample400AnalyticsQuery": {
                "summary": "sample400AnalyticsQuery",
                "value": "caseTypeId:\"CTYPATMYyaJekdgj2c\" AND caseFiledDate:[2018-01-01T00:00:00+00:00TO2021-11-3000:00:00+00:00]"
              },
              "HTTP404-sample404AnalyticsQuery": {
                "summary": "sample404AnalyticsQuery",
                "value": "caseTypeId:\"CTYPATMYy1Jekdgj2c\" AND caseFiledDate:[2018-01-01T00:00:00+00:00TO2021-11-30T00:00:00+00:00]"
              }
            },
            "in": "query",
            "name": "q",
            "schema": {
              "maxLength": 2048,
              "nullable": false,
              "type": "string"
            }
          },
          {
            "$ref": "#/components/parameters/AnalyticsPageParam"
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleAnalyticsQuery": {
                    "value": {
                      "associatedNormPartyArray": [
                        {
                          "caseCount": 26316,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCRWgqEx3oT94dga",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-03T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-11-30T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "PORTFOLIO RECOVERY ASSOCIATES, L.L.C.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGrPmQyLdx9NGHcT",
                          "normPartyId": "NORGrPmQyLdx9NGHcT",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "200413310140",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 26135,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCmRonGTgP7UcDWp",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-03T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-11-30T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "PORTFOLIO RECOVERY SERVICES INC.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGXX6jhQwzhVEuuv",
                          "normPartyId": "NORGXX6jhQwzhVEuuv",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "03486146",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 26135,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCFUVrm5Ta54VuRi",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-03T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-11-30T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "PORTFOLIO RECOVERY MANAGEMENT GROUP INC.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGybh4QVJRZxa8f6",
                          "normPartyId": "NORGybh4QVJRZxa8f6",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "02924349",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 26134,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCa7N8H9TotXjzrp",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-03T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-11-30T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "PORTFOLIO ASSOCIATES, INC.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGCJ2HBiSjcTuW3V",
                          "normPartyId": "NORGCJ2HBiSjcTuW3V",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "01875567",
                              "stateCode": "CA"
                            },
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "F99000002780",
                              "stateCode": "FL"
                            }
                          ]
                        },
                        {
                          "caseCount": 26134,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC3D56NKTyvmQTVf",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-03T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-11-30T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "PORTFOLIO REALTY ASSOCIATES, L.P.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGcBsSQNBiiLxqsV",
                          "normPartyId": "NORGcBsSQNBiiLxqsV",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "B99000000208",
                              "stateCode": "FL"
                            },
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "199331400014",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCCYHNM3qQhU76VY",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2019-11-22T00:00:00+00:00",
                            "lastCaseFiledDate": "2019-11-22T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "MIDLAND FUNDING L.L.C.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGDiJQPjeed2mtvx",
                          "normPartyId": "NORGDiJQPjeed2mtvx",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "200801710065",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCLGvoc3ZtKQtpn8",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2019-09-05T00:00:00+00:00",
                            "lastCaseFiledDate": "2019-09-05T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "JH PORTFOLIO DEBT EQUITIES 2, L.L.C.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGKCRFPsa5kmE3Mt",
                          "normPartyId": "NORGKCRFPsa5kmE3Mt",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "201117310129",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCB8cdhVLteQHdh9",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2019-09-05T00:00:00+00:00",
                            "lastCaseFiledDate": "2019-09-05T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "JH PORTFOLIO DEBT EQUITIES, L.L.C.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGMywZww3ULAY3RY",
                          "normPartyId": "NORGMywZww3ULAY3RY",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "3814225",
                              "stateCode": "NY"
                            },
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "200526510226",
                              "stateCode": "CA"
                            },
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "802186304",
                              "stateCode": "TX"
                            },
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "M09000002564",
                              "stateCode": "FL"
                            }
                          ]
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCfVAv9J2u8VVuXg",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-02-17T00:00:00+00:00",
                            "lastCaseFiledDate": "2017-02-17T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "PORTFOLIO INSURANCE SERVICES, INC.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGVWEJiFrM3WsH5K",
                          "normPartyId": "NORGVWEJiFrM3WsH5K",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "00656042",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRChV3dZrNpXym2mu",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-02-17T00:00:00+00:00",
                            "lastCaseFiledDate": "2017-02-17T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "PORTFOLIO FINANCIAL SERVICES, INC.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGYVvegrrfHi4TNA",
                          "normPartyId": "NORGYVvegrrfHi4TNA",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "01448635",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCFuBizPPCmTYk3R",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-08-14T00:00:00+00:00",
                            "lastCaseFiledDate": "2017-08-14T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "AEA FEDERAL CREDIT UNION",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGhy69sDVxiae6um",
                          "normPartyId": "NORGhy69sDVxiae6um",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "04167330",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC6YLH8yopAkjVqH",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2019-01-04T00:00:00+00:00",
                            "lastCaseFiledDate": "2019-01-04T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "UNIFUND CCR, L.L.C.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGjMFWwq8nRtDeXx",
                          "normPartyId": "NORGjMFWwq8nRtDeXx",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "201129910225",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCghMgquPqhLsWdp",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2019-09-05T00:00:00+00:00",
                            "lastCaseFiledDate": "2019-09-05T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "JH PORTFOLIO DEBT EQUITIES 4, L.L.C.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGmixE68A35noT8M",
                          "normPartyId": "NORGmixE68A35noT8M",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "201331110049",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCQmqL7vEYXoWinT",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-02-17T00:00:00+00:00",
                            "lastCaseFiledDate": "2017-02-17T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "PORTFOLIO SERVICES, INC.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGp9DhaXGCRKPSMm",
                          "normPartyId": "NORGp9DhaXGCRKPSMm",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "01356780",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCKfvuRcWqioPBuR",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-02-17T00:00:00+00:00",
                            "lastCaseFiledDate": "2017-02-17T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "PORTFOLIO MANAGEMENT SERVICES, INC.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGrhxBDFJ54MofB6",
                          "normPartyId": "NORGrhxBDFJ54MofB6",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "01704735",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCbBoWGGQsyNjZ2p",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-02-17T00:00:00+00:00",
                            "lastCaseFiledDate": "2017-02-17T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "PORTFOLIO MANAGEMENT SERVICES, L.L.C.",
                          "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGxUaWB8VAVegYo4",
                          "normPartyId": "NORGxUaWB8VAVegYo4",
                          "object": "AssociatedNormParty",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "200801910013",
                              "stateCode": "CA"
                            }
                          ]
                        }
                      ],
                      "nextPageAPI": null,
                      "previousPageAPI": null,
                      "totalCount": 16,
                      "totalPages": 1
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/AssociatedNormPartyResponse"
                }
              }
            },
            "description": "OK"
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "sample400AnalyticsQuery": {
                    "value": {
                      "code": "UN400",
                      "details": "caseFiledDate is not in a required format",
                      "message": "INVALID_INPUT",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Bad Request"
          },
          "404": {
            "content": {
              "application/json": {
                "examples": {
                  "sample404AnalyticsQuery": {
                    "value": {
                      "code": "UN404",
                      "details": "caseTypeId not found",
                      "message": "RESOURCE_NOT_FOUND",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Not Found"
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "example-1": {
                    "value": {
                      "code": "UN500",
                      "details": "Has encountered a situation which needs to be handled.",
                      "message": "INTERNAL_SERVER_ERROR",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Internal Server Error"
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Parties Represented by the Law Firm.",
        "tags": [
          "Law Firm Analytics API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [
        {
          "description": "Norm  ID of the Law Firm.\n  - minimum: 18\n  - maximum: 18\n",
          "examples": {
            "HTTP200-sampleAnalyticsQuery": {
              "summary": "sampleAnalyticsQuery",
              "value": "NORGrPmQyLdx9NGHcT"
            },
            "HTTP400-sample400AnalyticsQuery": {
              "summary": "sample400AnalyticsQuery",
              "value": "NORGrPmQyLdx9NGHcT"
            },
            "HTTP404-sample404AnalyticsQuery": {
              "summary": "sample404AnalyticsQuery",
              "value": "NJUDT7jCZyFNeLGpRq"
            }
          },
          "in": "path",
          "name": "normLawFirmId",
          "required": true,
          "schema": {
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          }
        }
      ],
      "x-api-name": "AssociatedNormPartiesForNormLawFirmAPI",
      "x-unicourt-tag": "LawFirmAnalyticsAPIs"
    },
    "/normLawFirm/{normLawFirmId}/caseCountAnalyticsByOpposingNormLawFirm": {
      "get": {
        "description": "Returns Case Analytics by Norm Law Firm.\n## Terms and Connectors\n| Connector | Schema   | Description  | Example |\n| ------| ------| ------|------|\n| **AND** ||Find analytics containing all connected terms. The word AND does not have to be capitalized.|**courtId:\"CORTV4vCEaKrhystBz\" AND courtLocationId:\"COLO6b82CkRqS846hx\"**|\n| **IN()** || Allows you to specify multiple values, for a limit of up to 10.| **courtId IN (\"CORTKQiA4LJuv54tEj\",\"CORTV4vCEaKrhystBz\")**|\n| **courtId** | Multiple Ids Allowed |Find Analytics for a particular Court Object. | **courtId:\"CORTV4vCEaKrhystBz\"** |\n| **courtSystemId** | Multiple Ids Allowed |Find Analytics for a particular Court System Object. | **courtSystemId:\"COSYACHBdMewtaG5DY\"** |\n| **courtTypeId** | Multiple Ids Allowed |Find Analytics for a particular Court Type Object. | **courtTypeId:\"COTPm8jjc2PAydpFhq\"** |\n| **courtLocationId** | Multiple Ids Allowed |Find Analytics for a particular Court Location Object. | **courtLocationId:\"COLO6b82CkRqS846hx\"** |\n| **caseTypeId** | Multiple Ids Allowed |Find Analytics for a particular Case Type Object. | **caseTypeId:\"CTYPATMYyaJekdgj2c\"** |\n| **caseTypeGroupId** | Multiple Ids Allowed |Find Analytics for a particular Case Type Group Object. | **caseTypeGroupId:\"CTYG8gZ6hPRKhhYi4Y\"** |\n| **areaOfLawId** | Multiple Ids Allowed |Find Analytics for a particular Area Of Law Object. | **areaOfLawId:\"AOFL2UxEWfVmTPMyqf\"** |\n| **caseClassId** | Multiple Ids Allowed |Find Analytics for a particular Case Class Category Object. | **caseClassId:\"CSCLNjbKTN7Yfo2wdb\"** |\n| **partyRoleId** | Multiple Ids Allowed |Find Analytics for a particular Party Type Object. | **partyRoleId:\"PTYRiP8nMgPxBsPc5i\"** |\n| **partyRoleGroupId** | Multiple Ids Allowed |Find Analytics for a particular Party Type Group Object. | **partyRoleGroupId:\"PTYGBnjxbx6tKNfVEP\"** |\n| **attorneyPartyRoleId** | Multiple Ids Allowed |Find Analytics for a particular Attorney Party Type Object. | **attorneyPartyRoleId:\"PTYRiP8nMgPxBsPc5i\"** |\n| **attorneyPartyRoleGroupId** | Multiple Ids Allowed |Find Analytics for a particular Attorney Party Type Group Object. | **attorneyPartyRoleGroupId:\"PTYGBnjxbx6tKNfVEP\"** |\n| **normAttorneyId** | Single Allowed  |Find Analytics for a particular norm Attorney Object. | **normAttorneyId:\"NATYfwmXwRHS279WPY\"** |\n| **normPartyId** | Single Allowed |Find Analytics for a particular Party Object. | **normPartyId:\"NORGrPmQyLdx9NGHcT\"** |\n| **normJudgeId** | Single Allowed  |Find Analytics for a particular Judge Object. | **normJudgeId:\"NJUDT7jCZyFNeLGpRq\"** |\n| **caseFiledDate** | Single Allowed  |Find Analytics within a particular date range. | **caseFiledDate:[2018-05-08T00:00:00+00:00TO2019-05-08T00:00:00+00:00]** |\n| **JurisdictionGeo** | Multiple filters Allowed |Find Analytics within a particular Jurisdiction Geo. | **(JurisdictionGeo:(state:\"California\"))** |\n| **confidenceScore** | Single Allowed |Find Analytics for a given ConfidenceScore  | **confidenceScore>=0.5** |\n| **bestMatch** | Single Allowed |True if the normEntity has the highest Confidence Score of all possible normEntities | **bestMatch:true** |\n<br>\n## Example Query\nQuery to get case count grouped by norm lawfirm with norm id NORGrPmQyLdx9NGHcT of all cases with case type id CTYPATMYyaJekdgj2c and filed between Jan 1st, 2017 to Nov 30th,2021<br>\nq=caseTypeId:\"CTYPATMYyaJekdgj2c\" AND caseFiledDate:[2017-01-01T00:00:00+00:00TO2021-11-30T00:00:00+00:00]\n",
        "operationId": "getCaseCountAnalyticsByOpposingNormLawFirmForANormLawFirm",
        "parameters": [
          {
            "description": "The URL encoded query you are searching for. The query can be as simple as a keyword, but supports many additional options and filters. All options are documented above.",
            "examples": {
              "HTTP200-modifiedValue": {
                "summary": "Default value",
                "value": ""
              },
              "HTTP200-sampleAnalyticsQuery": {
                "summary": "sampleAnalyticsQuery",
                "value": "caseTypeId:\"CTYPATMYyaJekdgj2c\" AND caseFiledDate:[2017-01-01T00:00:00+00:00TO2021-11-30T00:00:00+00:00]"
              },
              "HTTP400-sample400AnalyticsQuery": {
                "summary": "sample400AnalyticsQuery",
                "value": "caseTypeId:\"CTYPATMYyaJekdgj2c\" AND caseFiledDate:[2018-01-01T00:00:00+00:00TO2021-11-3000:00:00+00:00]"
              },
              "HTTP404-sample404AnalyticsQuery": {
                "summary": "sample404AnalyticsQuery",
                "value": "caseTypeId:\"CTYPATMYy1Jekdgj2c\" AND caseFiledDate:[2018-01-01T00:00:00+00:00TO2021-11-30T00:00:00+00:00]"
              }
            },
            "in": "query",
            "name": "q",
            "schema": {
              "maxLength": 2048,
              "nullable": false,
              "type": "string"
            }
          },
          {
            "$ref": "#/components/parameters/AnalyticsPageParam"
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleAnalyticsQuery": {
                    "value": {
                      "nextPageAPI": null,
                      "object": "CaseCountAnalyticsByNormLawFirmResponse",
                      "previousPageAPI": null,
                      "results": [
                        {
                          "caseCount": 20,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC5FRXx9EMuFm7RD",
                          "normLawFirmId": "NORGXRj94BuQRJ9FqP",
                          "normLawFirmName": "LAW OFFICES OF ROBERT S. GITMEID, P.C.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 11,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCc7FmgKuDVFq5FZ",
                          "normLawFirmId": "NORG6WwFhHwrNkZyS9",
                          "normLawFirmName": "LIBERTY CENTER, A CALIFORNIA LIMITED PARTNERSHIP",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 11,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCjBVvNE5kcBCTsX",
                          "normLawFirmId": "NORGWyugV8xM7FUYUz",
                          "normLawFirmName": "LIBERTY CENTER (OF SOUTHERN CALIFORNIA)",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 11,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC9WT4UfgSbLxA63",
                          "normLawFirmId": "NORGmsmu9oxx8i3Z92",
                          "normLawFirmName": "LIBERTY CENTER/AIRPORT PLAZA LIMITED PARTNERSHIP",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 11,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCio9A4TBjd2oQUv",
                          "normLawFirmId": "NORGrpvX9ayMVrKu4p",
                          "normLawFirmName": "BOOKS FOR THE THOUGHTFUL, INC.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 11,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC98Ux2Xgf525wn8",
                          "normLawFirmId": "NORGrtzrE74fb37JZu",
                          "normLawFirmName": "LIBERTY LAW CENTER, P.C.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 9,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC4cwuoviLUmTcgH",
                          "normLawFirmId": "NORG8L9gcTJCw4Ki6A",
                          "normLawFirmName": "ROBERT L. SHEPARD, PROFESSIONAL LAW CORPORATION",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 6,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCMa8y5meVmB7Xgb",
                          "normLawFirmId": "NORGgCnSx7vi4SVLE5",
                          "normLawFirmName": "GOLDEN & CARDONA-LOYA, L.L.P.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 6,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC4QUmrcXBLkQado",
                          "normLawFirmId": "NORGhGqrCZbNfBBMDo",
                          "normLawFirmName": "HEMMING & ASSOCIATES, INC.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 5,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCFUYMSWiPSXbYJY",
                          "normLawFirmId": "NORGY6Cn29msmo3aia",
                          "normLawFirmName": "THE SANDS LAW FIRM, A.P.C.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 4,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCC7WUVhPx4bKzKm",
                          "normLawFirmId": "NORG9MsQGcupPhMQdX",
                          "normLawFirmName": "NEIL E. CAMPBELL, JR., A PROFESSIONAL LAW CORPORATION",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 4,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCSiPMUrtqtdAXzy",
                          "normLawFirmId": "NORGKw62jnrsBCY3TG",
                          "normLawFirmName": "LC SMITH",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 4,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCSH7PaCwBiX3pha",
                          "normLawFirmId": "NORGQVWatxoJqi8z8c",
                          "normLawFirmName": "FITZGERALD & MALK, A PROFESSIONAL LAW CORPORATION",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 4,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCDHxXWMhT4y6Nh5",
                          "normLawFirmId": "NORGaYa2GR8DCbCyUn",
                          "normLawFirmName": "FITZGERALD & CAMPBELL, A PROFESSIONAL LAW CORPORATION",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 4,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCChHZWxMbMNSVCU",
                          "normLawFirmId": "NORGgLq7W3v8n9dcen",
                          "normLawFirmName": "RENEE L. CAMPBELL, A PROFESSIONAL LAW CORPORATION",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 4,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCWFmBouaBKYaZe2",
                          "normLawFirmId": "NORGmJycT7JtZ6m5XA",
                          "normLawFirmName": "GLENN J. CAMPBELL, A PROFESSIONAL LAW CORPORATION",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 4,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCh2trRxfH2x2RWz",
                          "normLawFirmId": "NORGnm3PM3Jq9UVzXS",
                          "normLawFirmName": "FITZGERALD CHIROPRACTIC, PROFESSIONAL CORPORATION",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 3,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCMC74RD9qtvDpmy",
                          "normLawFirmId": "NORG3ybEnC4X7LscDz",
                          "normLawFirmName": "CONSUMER AFFAIRS LAW CENTER, INC.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 3,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC7Ppvdqr4GihHrQ",
                          "normLawFirmId": "NORG6thJqmN4F97qSX",
                          "normLawFirmName": "CONSUMER LAW CENTER OF THE WEST, INC.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 3,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCo8ZGZKBU9ikvTc",
                          "normLawFirmId": "NORGTAF74u7uhij97W",
                          "normLawFirmName": "CONSUMER ADVISORY CENTER INC.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 3,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCTBnQ6kEKNyNmdS",
                          "normLawFirmId": "NORGY7uzGbjgdtEYwo",
                          "normLawFirmName": "CONSUMER SURVEY CENTER, INC.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 3,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCEpyRu7NFCZCr7P",
                          "normLawFirmId": "NORGYkAoiPSuxrtfWp",
                          "normLawFirmName": "CONSUMER ROOFING CENTER, INC.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 3,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCnftokAjGC8WCTm",
                          "normLawFirmId": "NORGbJ4mimSfQmpUDD",
                          "normLawFirmName": "LUFTMAN HECK & ASSOCIATES L.L.P.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 3,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC9TfnMvvgBeREma",
                          "normLawFirmId": "NORGdBLzuNCbWcRt6P",
                          "normLawFirmName": "CONSUMER PROTECTION LEGAL SERVICES,INC.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 3,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCc5zN8MptcN975D",
                          "normLawFirmId": "NORGdGP4CSrepkhdiu",
                          "normLawFirmName": "CONSUMER LAW CENTER, INC.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 3,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCEJDXpKc9goxfEb",
                          "normLawFirmId": "NORGfe43xpna7z6fn5",
                          "normLawFirmName": "CONSUMER RIGHTS LAW CENTER, INC., A CALIFORNIA CORPORATION",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 3,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCPDjPaaR2JZu9KA",
                          "normLawFirmId": "NORGgvaezZudpKwEcM",
                          "normLawFirmName": "THE SANDS GROUP",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 3,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCC6CWBM5kYERULY",
                          "normLawFirmId": "NORGhLaG4e9mVpLP6S",
                          "normLawFirmName": "CONSUMER BROKERAGE CENTER, INC.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 3,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCTYMJVA56XbYpix",
                          "normLawFirmId": "NORGjPABHU4CvGP8Ug",
                          "normLawFirmName": "INJURY & CONSUMER LAW CENTER, INC.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 3,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCWLyKM7yn8CGKN2",
                          "normLawFirmId": "NORGnxwJEMvDrAtoAQ",
                          "normLawFirmName": "CONSUMER ADVOCACY CENTER INC.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 3,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC699HUi2LNj5gaJ",
                          "normLawFirmId": "NORGr3CtQRApHFKd5T",
                          "normLawFirmName": "CONSUMER HOPE CENTER, INC.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 3,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCayex9waUbu7JoG",
                          "normLawFirmId": "NORGt9mRPQfzdCSNqf",
                          "normLawFirmName": "CONSUMER RIGHTS CENTER, INC.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCZvRonWMSaKPNBY",
                          "normLawFirmId": "NORGD3AvKCiNbfszR6",
                          "normLawFirmName": "INLAND COUNTIES DENTAL SERVICES, INC.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC3UFn2g7gFsEd74",
                          "normLawFirmId": "NORGKL2fAugkaXXPYS",
                          "normLawFirmName": "KAZEROUNI LAW GROUP, A.P.C.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCbuKD4nC5tjLqRP",
                          "normLawFirmId": "NORGP9UEQe2jWTDfTG",
                          "normLawFirmName": "INLAND COUNTIES LEGAL SERVICESINC",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC7NWVhhjKXfFB9q",
                          "normLawFirmId": "NORGQUQUNtEH8xHZvC",
                          "normLawFirmName": "LAW OFFICE OF DANIEL EVERETT, INC.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCHo5iGD6Foxe5as",
                          "normLawFirmId": "NORGfNoidEhiQykjgn",
                          "normLawFirmName": "MADAEN LAW, INC.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC2kv4YvqFFsYQSR",
                          "normLawFirmId": "NORGh6EdZYWk9wifW2",
                          "normLawFirmName": "INLAND COUNTIES PENSION SERVICES, INC.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCSBNbxWsfCGHNNf",
                          "normLawFirmId": "NORGjuVG9zUHqBC8se",
                          "normLawFirmName": "INLAND COUNTIES INSURANCE SERVICES, INC.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCd72y6tzs2TEB6N",
                          "normLawFirmId": "NORGqo4S4xzwtHXoym",
                          "normLawFirmName": "HYDE & SWIGART, A.P.C.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCQcYTwnW3XctLhC",
                          "normLawFirmId": "NORGsM8cMT9HnWMzCD",
                          "normLawFirmName": "LAW OFFICE OF DANIEL AZIZI, A.P.C.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC8MDD72Bcwb2dXW",
                          "normLawFirmId": "NORG2GYhJF7GmRProR",
                          "normLawFirmName": "ROBERT L. WEINER MASTER BROKER, INC.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCkYkFi9jJCXjSqp",
                          "normLawFirmId": "NORG37Zrcp4gDziCt7",
                          "normLawFirmName": "HERZOG & YOUNG L.L.P.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC23T3Cwt6wKcsDM",
                          "normLawFirmId": "NORG4NWgchqBXuwfZd",
                          "normLawFirmName": "MILLER LAW OFFICE, P.C.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCczChyJXpATWswr",
                          "normLawFirmId": "NORG5Ys38vunsjTPH4",
                          "normLawFirmName": "LAW OFFICES OF GREGORY S. SILVER",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCCSM2pEVborTkGr",
                          "normLawFirmId": "NORG5qnpeFiG9zKCYh",
                          "normLawFirmName": "LAW OFFICES OF DANIEL G. LEWIS",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCk3r5Cdv7truaUX",
                          "normLawFirmId": "NORG6KoNg5YXE5B85R",
                          "normLawFirmName": "THE LITIGATION PRACTICE GROUP P.C.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCQse8iabWrEaRsC",
                          "normLawFirmId": "NORG6nbjRVYGXtJZ9J",
                          "normLawFirmName": "LAW OFFICES OF JOSEPH KW CHOEN P.C.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCeEzZgk44LLZsPg",
                          "normLawFirmId": "NORGCqdGdouXhYDG8A",
                          "normLawFirmName": "SUPERIOR WASH LOS ANGELES",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCkSe5nFG2eVyadV",
                          "normLawFirmId": "NORGD3mpDJoNLBxKSB",
                          "normLawFirmName": "DELTA GROUP, A CALIFORNIA LIMITED PARTNERSHIP, THE",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCU7WLmCbQfGWaSz",
                          "normLawFirmId": "NORGDPDV479xPoYiob",
                          "normLawFirmName": "LAW OFFICE OF MATTHEW J. BUZZELL, III, A PROFESSIONAL LAW CORPORATION",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCCPtSywNMgCJ8Cx",
                          "normLawFirmId": "NORGJEHeGWAjnVMwT4",
                          "normLawFirmName": "LAW OFFICES OF DANIEL HORLICK, A.P.C.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCcVz4xRVGz2TVLp",
                          "normLawFirmId": "NORGJZWceBM2famVx9",
                          "normLawFirmName": "SHASTA PORTFOLIO ASSOCIATES L.L.C.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC3fbtfu3XmboYYK",
                          "normLawFirmId": "NORGKu9PCVPDXKdXbu",
                          "normLawFirmName": "ENERGY PORTFOLIO ASSOCIATES L.L.C.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCXsypoFTdBaxKWb",
                          "normLawFirmId": "NORGNpC84ESgVwdGFV",
                          "normLawFirmName": "LAW OFFICES OF DANIEL MCCAMMON, A.P.C.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC9TWsFV3Mv2r8SD",
                          "normLawFirmId": "NORGNuaSTyRinJw5ci",
                          "normLawFirmName": "MUSICK, PEELER & GARRETT L.L.P.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCQyhQvtW4Yk5TJ7",
                          "normLawFirmId": "NORGPCJE9pFywYeq57",
                          "normLawFirmName": "LAW OFFICES OF DANIEL HOFFMAN, A.P.C.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCYdw3jWmvbY7Mq4",
                          "normLawFirmId": "NORGQwXkrVHBSz5wSQ",
                          "normLawFirmName": "VANDER MOLEN & MALIN LAW OFFICES, L.L.P.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCC36RxoV57xd8oJ",
                          "normLawFirmId": "NORGT3Xpbm8JnKjksa",
                          "normLawFirmName": "LAW OFFICE OF MATTHEW CLENDENIN, A.P.C.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCWVinQrZgQhGJAb",
                          "normLawFirmId": "NORGVyrFk9Gsy69SNj",
                          "normLawFirmName": "LEVINE, SALBERG & JORGENSEN L.L.P.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCJsXcwNK2kJk2vJ",
                          "normLawFirmId": "NORGWnDVgZ53g2F4Wb",
                          "normLawFirmName": "JORGENSEN & SALBERG, L.L.P.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCKuHZe6SsnzBGNr",
                          "normLawFirmId": "NORGWtwZKxBkfmJ9u4",
                          "normLawFirmName": "PARAMETRIC PORTFOLIO ASSOCIATES L.L.C.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCJjUeQUVy8j7Tsz",
                          "normLawFirmId": "NORGYkoUAhcggAahK6",
                          "normLawFirmName": "LAW OFFICE OF MATTHEW SHAYEFAR, P.C.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCbV6ADc4kjjY5o4",
                          "normLawFirmId": "NORGaxUAMjWecURG2g",
                          "normLawFirmName": "DELTA LAW GROUP, A PROFESSIONAL LAW CORPORATION",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC4RERrzWDtvkhCt",
                          "normLawFirmId": "NORGb2Ep3f4zEfrmNa",
                          "normLawFirmName": "FOOS GAVIN LAW FIRM, P.C.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCYhjjYLYkbhoeLV",
                          "normLawFirmId": "NORGc52zufmbQuJMxy",
                          "normLawFirmName": "CHING & SETO A.P.C.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCFvGkQr9MEnpgAj",
                          "normLawFirmId": "NORGcBsSQNBiiLxqsV",
                          "normLawFirmName": "PORTFOLIO REALTY ASSOCIATES, L.P.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCKgEredi5oy2Avk",
                          "normLawFirmId": "NORGdPmSDKqVUpHUVi",
                          "normLawFirmName": "GUARDIAN LITIGATION GROUP, P.C.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC6uaP9hCoBKcqY5",
                          "normLawFirmId": "NORGeqPVaxzWHqVnxS",
                          "normLawFirmName": "THE LAW OFFICE OF DANIEL SCOTT BROWN, INC.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCmf9ny4twbyB9BV",
                          "normLawFirmId": "NORGf5ZwxP9Kn8o2PZ",
                          "normLawFirmName": "THE LAW OFFICES OF DANIEL KIM, CORPORATION",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCMW48NQYQSjwNeE",
                          "normLawFirmId": "NORGfQnQWYyYhjvmJE",
                          "normLawFirmName": "LAW OFFICES OF DANIEL AN, P.C.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCbfyExgNhYoesZ8",
                          "normLawFirmId": "NORGhQ2BZv6x2stVtt",
                          "normLawFirmName": "LAW OFFICE OF MATTHEW PARE, A.P.C.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCmZcaakMXiPTmSp",
                          "normLawFirmId": "NORGkMmH6supAgTaNB",
                          "normLawFirmName": "LAW OFFICES OF CHRISTOPHER MULDER",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCmzzabhbj6euFnk",
                          "normLawFirmId": "NORGm7haNjKBi9PVPH",
                          "normLawFirmName": "FORD, WALKER, HAGGERTY & BEHAR, L.L.P.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCPhmegTTQL2Czhz",
                          "normLawFirmId": "NORGnLQzupt5kocNMr",
                          "normLawFirmName": "THE LAW OFFICE OF MATTHEW WILHOIT LTD.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRChw53NKdhMj58mU",
                          "normLawFirmId": "NORGpN9dWyer4i2Hry",
                          "normLawFirmName": "LAW OFFICES OF DANIEL SHANFIELD - IMMIGRATION DEFENSE, P.C.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCbeLqKRMUf9efGR",
                          "normLawFirmId": "NORGpUnpSZ8AzStNXq",
                          "normLawFirmName": "CARIBFORNIA PORTFOLIO ASSOCIATES L.L.C.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCCzjzkj9xNZdJWL",
                          "normLawFirmId": "NORGpddqnf8e8eS4v3",
                          "normLawFirmName": "LAW OFFICES OF CHRISTOPHER MONGE, LP, THE",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCP7EHBFaPznat5b",
                          "normLawFirmId": "NORGppKxekmyuyEt5b",
                          "normLawFirmName": "ARMENTA LAW, INC.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCJnqiExtwycbYM9",
                          "normLawFirmId": "NORGqW7amgh9HZK3Aj",
                          "normLawFirmName": "LAW OFFICES OF DANIEL MOADDEL",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCkcswRSPG4TUekQ",
                          "normLawFirmId": "NORGqzcsq4b4B4qWEj",
                          "normLawFirmName": "COHEN LAW FIRM, A.P.C.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCoTPu6QCHn8ZHQE",
                          "normLawFirmId": "NORGrRJPiptLiYu2b9",
                          "normLawFirmName": "SCHLUETER LAW FIRM, P.C.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCaMPqmWVfog39Hh",
                          "normLawFirmId": "NORGtiBkKjEpiDLtBz",
                          "normLawFirmName": "LITIGATION SOLUTIONS LAW GROUP L.L.P.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCSpTmGXqPwviZvu",
                          "normLawFirmId": "NORGvqEg3wWMbvMnzg",
                          "normLawFirmName": "CONSERVATIVE PORTFOLIO ASSOCIATES",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCSiCBBniB7vsDhB",
                          "normLawFirmId": "NORGwJXq4yuDfoGFNw",
                          "normLawFirmName": "PARAMETRIC PORTFOLIO ASSOCIATES, INC.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCnGeDqii3eKomTg",
                          "normLawFirmId": "NORGyy97K3yeEqcfPd",
                          "normLawFirmName": "LAW OFFICES OF JORGENSEN & SALBERG, L.L.P.",
                          "object": "CaseCountAnalyticsByNormLawFirm"
                        }
                      ],
                      "totalCaseCount": 97,
                      "totalNormLawFirmCount": 86,
                      "totalPages": 1
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/CaseCountAnalyticsByNormLawFirmResponse"
                }
              }
            },
            "description": "OK"
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "sample400AnalyticsQuery": {
                    "value": {
                      "code": "UN400",
                      "details": "caseFiledDate is not in a required format",
                      "message": "INVALID_INPUT",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Bad Request"
          },
          "404": {
            "content": {
              "application/json": {
                "examples": {
                  "sample404AnalyticsQuery": {
                    "value": {
                      "code": "UN404",
                      "details": "caseTypeId not found",
                      "message": "RESOURCE_NOT_FOUND",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Not Found"
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "example-1": {
                    "value": {
                      "code": "UN500",
                      "details": "Has encountered a situation which needs to be handled.",
                      "message": "INTERNAL_SERVER_ERROR",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Internal Server Error"
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Case Count Analytics by Opposing Norm Law Firm.",
        "tags": [
          "Case Analytics API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [
        {
          "description": "Norm  ID of the Law Firm.\n  - minimum: 18\n  - maximum: 18\n",
          "examples": {
            "HTTP200-sampleAnalyticsQuery": {
              "summary": "sampleAnalyticsQuery",
              "value": "NORGrPmQyLdx9NGHcT"
            },
            "HTTP400-sample400AnalyticsQuery": {
              "summary": "sample400AnalyticsQuery",
              "value": "NORGrPmQyLdx9NGHcT"
            },
            "HTTP404-sample404AnalyticsQuery": {
              "summary": "sample404AnalyticsQuery",
              "value": "NORGdiD1tdN8sFLi71"
            }
          },
          "in": "path",
          "name": "normLawFirmId",
          "required": true,
          "schema": {
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          }
        }
      ],
      "x-api-name": "CaseCountAnalyticsByOpposingNormLawFirmAPI",
      "x-unicourt-tag": "LawFirmAnalyticsAPIs"
    },
    "/normLawFirmSearch": {
      "get": {
        "description": "### All query parameters supported for this API can be found in below schema section. Schema --> NormLawFirmSearchQueryObject\n",
        "operationId": "searchNormalizedLawFirms",
        "parameters": [
          {
            "description": "The URL encoded query you are searching for.\nThe query can be as simple as a keyword, but supports many additional options and filters.</a>\n",
            "examples": {
              "HTTP200-sampleSearchQuery": {
                "summary": "sampleSearchQuery",
                "value": "normLawFirmId:\"NORGDiJQPjeed2mtvx\""
              },
              "HTTP400-sampleSearchInvalidInputQuery": {
                "summary": "sampleSearchInvalidInputQuery",
                "value": "normlawfirmid:\"NORGgooQKwAYeRhcv\""
              }
            },
            "in": "query",
            "name": "q",
            "schema": {
              "maxLength": 2000,
              "minLength": 3,
              "nullable": false,
              "type": "string"
            }
          },
          {
            "$ref": "#/components/parameters/pageParam"
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleSearchQuery": {
                    "summary": "sampleSearchQuery",
                    "value": {
                      "nextPageAPI": null,
                      "normLawFirmSearchId": "LSRCeCT9pC3maopkW7",
                      "normLawFirmSearchResultArray": [
                        {
                          "firstFetchDate": "2023-02-16T12:53:17+00:00",
                          "lastFetchDate": "2023-02-16T12:53:17+00:00",
                          "matchedObjectArray": [
                            {
                              "highlightSnippet": "<b>NORGDiJQPjeed2mtvx</b>",
                              "matchedObjectAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGDiJQPjeed2mtvx",
                              "matchedObjectAttribute": "normLawFirmId",
                              "matchedObjectId": "NORGDiJQPjeed2mtvx",
                              "matchedObjectName": "NormLawFirm",
                              "object": "MatchedObject"
                            }
                          ],
                          "name": "MIDLAND FUNDING L.L.C.",
                          "normLawFirmDetailsAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGDiJQPjeed2mtvx",
                          "normLawFirmId": "NORGDiJQPjeed2mtvx",
                          "object": "NormLawFirmSearchResult"
                        }
                      ],
                      "object": "NormLawFirmSearchResponse",
                      "pageNumber": 1,
                      "previousPageAPI": null,
                      "q": "normLawFirmId%3A%22NORGDiJQPjeed2mtvx%22",
                      "totalCount": 1,
                      "totalPages": 1
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/NormLawFirmSearchResponse"
                }
              }
            },
            "description": "Success"
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleSearchInvalidInputQuery": {
                    "$ref": "#/components/examples/SAMPLE_SEARCH_INVALID_INPUT_QUERY"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Error"
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "INTERNAL_SERVER_ERROR": {
                    "$ref": "#/components/examples/INTERNAL_SERVER_ERROR"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Error"
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Law firm search.",
        "tags": [
          "Law Firm Analytics API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [],
      "x-api-name": "NormalizedLawFirmSearchAPI",
      "x-unicourt-tag": "LawFirmAnalyticsAPIs"
    },
    "/normLawFirmSearch/{normLawFirmSearchId}": {
      "get": {
        "description": "### All query parameters supported for this API can be found in below schema section. Schema --> NormLawFirmSearchQueryObject\n",
        "operationId": "searchNormalizedLawFirmsById",
        "parameters": [
          {
            "$ref": "#/components/parameters/pageParam"
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleSearchQuery": {
                    "summary": "sampleSearchQuery",
                    "value": {
                      "nextPageAPI": null,
                      "normLawFirmSearchId": "LSRCeCT9pC3maopkW7",
                      "normLawFirmSearchResultArray": [
                        {
                          "firstFetchDate": "2023-02-16T12:53:17+00:00",
                          "lastFetchDate": "2023-02-16T12:53:17+00:00",
                          "matchedObjectArray": [
                            {
                              "highlightSnippet": "<b>NORGDiJQPjeed2mtvx</b>",
                              "matchedObjectAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGDiJQPjeed2mtvx",
                              "matchedObjectAttribute": "normLawFirmId",
                              "matchedObjectId": "NORGDiJQPjeed2mtvx",
                              "matchedObjectName": "NormLawFirm",
                              "object": "MatchedObject"
                            }
                          ],
                          "name": "MIDLAND FUNDING L.L.C.",
                          "normLawFirmDetailsAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGDiJQPjeed2mtvx",
                          "normLawFirmId": "NORGDiJQPjeed2mtvx",
                          "object": "NormLawFirmSearchResult"
                        }
                      ],
                      "object": "NormLawFirmSearchResponse",
                      "pageNumber": 1,
                      "previousPageAPI": null,
                      "q": "normLawFirmId%3A%22NORGDiJQPjeed2mtvx%22",
                      "totalCount": 1,
                      "totalPages": 1
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/NormLawFirmSearchResponse"
                }
              }
            },
            "description": "Success"
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleInvalidPageNumberParam": {
                    "$ref": "#/components/examples/SAMPLE_SEARCH_INVALID_PAGE_NUMBER_PARAM"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Error"
          },
          "404": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleNotFoundResource": {
                    "value": {
                      "code": "UN404",
                      "details": "normLawFirmSearchId resource you were looking for doesn't exist.",
                      "message": "RESOURCE_NOT_FOUND",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if the resource is not found."
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "INTERNAL_SERVER_ERROR": {
                    "$ref": "#/components/examples/INTERNAL_SERVER_ERROR"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Error"
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Norm law firm search result for a given normLawFirmSearchId.",
        "tags": [
          "Law Firm Analytics API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [
        {
          "description": "Norm law firm search information for the given normLawFirmSearchId.",
          "examples": {
            "HTTP200-sampleSearchQuery": {
              "summary": "sampleSearchQuery",
              "value": "LSRCeCT9pC3maopkW7"
            },
            "HTTP400-sampleInvalidPageNumberParam": {
              "summary": "sampleInvalidPageNumberParam",
              "value": "LSRCeCT9pC3maopkW7"
            },
            "HTTP404-sampleNotFoundResource": {
              "summary": "sampleNotFoundResource",
              "value": "LSRTfyP38NE9D4U8cK"
            }
          },
          "in": "path",
          "name": "normLawFirmSearchId",
          "required": true,
          "schema": {
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          }
        }
      ],
      "x-api-name": "NormalizedLawFirmSearchByIdAPI",
      "x-unicourt-tag": "LawFirmAnalyticsAPIs"
    },
    "/normParty/{normPartyId}": {
      "get": {
        "description": "The Party Details API allows you to look up Parties by normPartyId.\n",
        "operationId": "getNormPartyById",
        "parameters": [],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleAnalyticsQuery": {
                    "value": {
                      "caseAnalyticsAPI": {
                        "caseCountAnalyticsByAreaOfLawAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByAreaOfLaw?q=normPartyId:NORGrPmQyLdx9NGHcT&pageNumber=1",
                        "caseCountAnalyticsByCaseClassAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByCaseClass?q=normPartyId:NORGrPmQyLdx9NGHcT&pageNumber=1",
                        "caseCountAnalyticsByCaseTypeAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByCaseType?q=normPartyId:NORGrPmQyLdx9NGHcT&pageNumber=1",
                        "caseCountAnalyticsByCaseTypeGroupAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByCaseTypeGroup?q=normPartyId:NORGrPmQyLdx9NGHcT&pageNumber=1",
                        "caseCountAnalyticsByCourtAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByCourt?q=normPartyId:NORGrPmQyLdx9NGHcT&pageNumber=1",
                        "caseCountAnalyticsByCourtLocationAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByCourtLocation?q=normPartyId:NORGrPmQyLdx9NGHcT&pageNumber=1",
                        "caseCountAnalyticsByCourtSystemAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByCourtSystem?q=normPartyId:NORGrPmQyLdx9NGHcT&pageNumber=1",
                        "caseCountAnalyticsByCourtTypeAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByCourtType?q=normPartyId:NORGrPmQyLdx9NGHcT&pageNumber=1",
                        "caseCountAnalyticsByJurisdictionGeoAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByJurisdictionGeo?q=normPartyId:NORGrPmQyLdx9NGHcT&pageNumber=1",
                        "caseCountAnalyticsByPartyRoleAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByPartyRole?q=normPartyId:NORGrPmQyLdx9NGHcT&pageNumber=1",
                        "caseCountAnalyticsByPartyRoleGroupAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByPartyRoleGroup?q=normPartyId:NORGrPmQyLdx9NGHcT&pageNumber=1",
                        "object": "CaseAnalyticsAPI",
                        "totalCases": 4341
                      },
                      "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCBcC8GZG3WfMxLi",
                      "individualData": null,
                      "name": "PORTFOLIO RECOVERY ASSOCIATES, L.L.C.",
                      "normOrganizationData": {
                        "cik": null,
                        "isInvolvedInLitigation": false,
                        "lei": null,
                        "naics": null,
                        "naicsDescription": null,
                        "name": "PORTFOLIO RECOVERY ASSOCIATES, LLC",
                        "normCorporateGroupArray": [],
                        "normOrganizationId": "NORGrPmQyLdx9NGHcT",
                        "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGrPmQyLdx9NGHcT",
                        "object": "NormOrganization",
                        "organizationType": "Business",
                        "sic": null,
                        "sicDescription": null,
                        "sosDataArray": [
                          {
                            "associatedSoSPersonArray": [
                              {
                                "contact": {
                                  "addressArray": [
                                    {
                                      "city": "NORFOLK",
                                      "countryCode": "USA",
                                      "countryName": "UNITED STATES OF AMERICA",
                                      "firstFetchDate": "2019-09-27T13:13:35+00:00",
                                      "isVisible": true,
                                      "lastFetchDate": "2019-09-27T16:44:26+00:00",
                                      "latitude": null,
                                      "longitude": null,
                                      "object": "Address",
                                      "stateCode": "VA",
                                      "stateName": "VIRGINIA",
                                      "streetAddress1": "120 CORPORATE BOULEVARD",
                                      "streetAddress2": null,
                                      "zip": "23502",
                                      "zip4": null
                                    }
                                  ],
                                  "emailArray": [],
                                  "object": "Contact",
                                  "phoneNumberArray": []
                                },
                                "entityName": "PRA GROUP, INC.",
                                "entityType": "Partner",
                                "object": "AssociatedSoSPerson"
                              },
                              {
                                "contact": {
                                  "addressArray": [
                                    {
                                      "city": "NORFOLK",
                                      "countryCode": "USA",
                                      "countryName": "UNITED STATES OF AMERICA",
                                      "firstFetchDate": "2019-01-11T15:34:17+00:00",
                                      "isVisible": false,
                                      "lastFetchDate": "2019-01-11T15:34:17+00:00",
                                      "latitude": null,
                                      "longitude": null,
                                      "object": "Address",
                                      "stateCode": "VA",
                                      "stateName": "VIRGINIA",
                                      "streetAddress1": "140 CORPORATE BLVD",
                                      "streetAddress2": null,
                                      "zip": "23502",
                                      "zip4": null
                                    }
                                  ],
                                  "emailArray": [],
                                  "object": "Contact",
                                  "phoneNumberArray": []
                                },
                                "entityName": "JUDITH SCOTT",
                                "entityType": "Partner",
                                "object": "AssociatedSoSPerson"
                              },
                              {
                                "contact": {
                                  "addressArray": [
                                    {
                                      "city": null,
                                      "countryCode": null,
                                      "countryName": "OUTSIDE US",
                                      "firstFetchDate": "2019-01-11T15:34:17+00:00",
                                      "isVisible": true,
                                      "lastFetchDate": "2019-09-27T16:44:26+00:00",
                                      "latitude": null,
                                      "longitude": null,
                                      "object": "Address",
                                      "stateCode": null,
                                      "stateName": "UNKNOWN",
                                      "streetAddress1": "AS CSC - LAWYERS INCORPORATING SERVICE (C1592199)",
                                      "streetAddress2": null,
                                      "zip": null,
                                      "zip4": null
                                    }
                                  ],
                                  "emailArray": [],
                                  "object": "Contact",
                                  "phoneNumberArray": []
                                },
                                "entityName": "CORPORATION SERVICE COMPANY WHICH WILL DO BUSINESS IN CALIFORNIA",
                                "entityType": "Agent",
                                "object": "AssociatedSoSPerson"
                              }
                            ],
                            "contact": {
                              "addressArray": [
                                {
                                  "city": "NORFOLK",
                                  "countryCode": "USA",
                                  "countryName": "UNITED STATES OF AMERICA",
                                  "firstFetchDate": "2019-01-11T15:34:17+00:00",
                                  "isVisible": false,
                                  "lastFetchDate": "2019-01-11T15:34:17+00:00",
                                  "latitude": null,
                                  "longitude": null,
                                  "object": "Address",
                                  "stateCode": "VA",
                                  "stateName": "VIRGINIA",
                                  "streetAddress1": "140 CORPORATE BLVD",
                                  "streetAddress2": null,
                                  "zip": "23502",
                                  "zip4": null
                                },
                                {
                                  "city": "NORFOLK",
                                  "countryCode": "USA",
                                  "countryName": "UNITED STATES OF AMERICA",
                                  "firstFetchDate": "2019-09-27T13:13:35+00:00",
                                  "isVisible": true,
                                  "lastFetchDate": "2019-09-27T16:44:26+00:00",
                                  "latitude": null,
                                  "longitude": null,
                                  "object": "Address",
                                  "stateCode": "VA",
                                  "stateName": "VIRGINIA",
                                  "streetAddress1": "130 CORPORATE BLVD",
                                  "streetAddress2": null,
                                  "zip": "23502",
                                  "zip4": null
                                }
                              ],
                              "emailArray": [],
                              "object": "Contact",
                              "phoneNumberArray": []
                            },
                            "domesticRegistration": true,
                            "fein": null,
                            "firstFetchDate": "2019-01-11T15:34:17+00:00",
                            "inactivationDate": null,
                            "isActive": true,
                            "lastFetchDate": "2019-09-27T16:44:26+00:00",
                            "lastFetchDateWithUpdates": "2019-09-27T16:44:26+00:00",
                            "nameChangesArray": [],
                            "object": "SOSData",
                            "registeredDate": "2004-03-17T00:00:00+00:00",
                            "sosAssociatedNormOrganizationArray": [],
                            "sosNumber": "200413310140",
                            "stateCode": "CA",
                            "status": "Active"
                          }
                        ],
                        "tickerArray": []
                      },
                      "normPartyId": "NORGrPmQyLdx9NGHcT",
                      "object": "NormParty",
                      "partyAnalyticsAPI": {
                        "associatedNormAttorneysAPI": "https://enterpriseapi.unicourt.com/normParty/NORGrPmQyLdx9NGHcT/associatedNormAttorneys?pageNumber=1",
                        "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normParty/NORGrPmQyLdx9NGHcT/associatedNormJudges?pageNumber=1",
                        "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normParty/NORGrPmQyLdx9NGHcT/associatedNormLawFirms?pageNumber=1",
                        "caseCountAnalyticsByOpposingNormAttorneyAPI": null,
                        "caseCountAnalyticsByOpposingNormLawFirmAPI": null,
                        "caseCountAnalyticsByOpposingNormPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGrPmQyLdx9NGHcT/caseCountAnalyticsByOpposingNormParty?pageNumber=1",
                        "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NORGrPmQyLdx9NGHcT",
                        "object": "PartyAnalyticsAPI"
                      },
                      "partyClassificationType": "Organization",
                      "relatedNormPartyArray": []
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/NormParty"
                }
              }
            },
            "description": "OK"
          },
          "404": {
            "content": {
              "application/json": {
                "examples": {
                  "sample404AnalyticsQuery": {
                    "value": {
                      "code": "UN404",
                      "details": "Normalised Party Not Found",
                      "message": "RESOURCE_NOT_FOUND",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Not Found"
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "example-1": {
                    "value": {
                      "code": "UN500",
                      "details": "Has encountered a situation which needs to be handled.",
                      "message": "INTERNAL_SERVER_ERROR",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Internal Server Error"
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Norm Party Details.",
        "tags": [
          "Party Analytics API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [
        {
          "description": "Norm ID of the Party.\n  - minimum: 18\n  - maximum: 18\n",
          "examples": {
            "HTTP200-sampleAnalyticsQuery": {
              "summary": "sampleAnalyticsQuery",
              "value": "NORGrPmQyLdx9NGHcT"
            },
            "HTTP404-sample404AnalyticsQuery": {
              "summary": "sample404AnalyticsQuery",
              "value": "NJUDT7jCZyFNeLGpRq"
            }
          },
          "in": "path",
          "name": "normPartyId",
          "required": true,
          "schema": {
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          }
        }
      ],
      "x-api-name": "NormPartyAPI",
      "x-unicourt-tag": "PartyAnalyticsAPIs"
    },
    "/normParty/{normPartyId}/associatedNormAttorneys": {
      "get": {
        "description": "Returns a list of  Attorneys the Party has been represented by.\n## Terms and Connectors\n| Connector | Schema   | Description  | Example |\n| ------| ------| ------|------|\n| **AND** ||Find analytics containing all connected terms. The word AND does not have to be capitalized.|**courtId:\"CORTV4vCEaKrhystBz\" AND courtLocationId:\"COLO6b82CkRqS846hx\"**|\n| **IN()** || Allows you to specify multiple values, for a limit of up to 10.| **courtId IN (\"CORTKQiA4LJuv54tEj\",\"CORTqrgr5iFOXfIBmk\")**|\n| **courtId** | Multiple Ids Allowed |Find Analytics for a particular Court Object. | **courtId:\"CORTV4vCEaKrhystBz\"** |\n| **courtSystemId** | Multiple Ids Allowed |Find Analytics for a particular Court System Object. | **courtSystemId:\"COSYACHBdMewtaG5DY\"** |\n| **courtTypeId** | Multiple Ids Allowed |Find Analytics for a particular Court Type Object. | **courtTypeId:\"COTPm8jjc2PAydpFhq\"** |\n| **courtLocationId** | Multiple Ids Allowed |Find Analytics for a particular Court Location Object. | **courtLocationId:\"COLO6b82CkRqS846hx\"** |\n| **caseTypeId** | Multiple Ids Allowed |Find Analytics for a particular Case Type Object. | **caseTypeId:\"CTYPATMYyaJekdgj2c\"** |\n| **caseTypeGroupId** | Multiple Ids Allowed |Find Analytics for a particular Case Type Group Object. | **caseTypeGroupId:\"CTYG8gZ6hPRKhhYi4Y\"** |\n| **areaOfLawId** | Multiple Ids Allowed |Find Analytics for a particular Area Of Law Object. | **areaOfLawId:\"AOFL2UxEWfVmTPMyqf\"** |\n| **caseClassId** | Multiple Ids Allowed |Find Analytics for a particular Case Class Category Object. | **caseClassId:\"CSCLNjbKTN7Yfo2wdb\"** |\n| **partyRoleId** | Multiple Ids Allowed |Find Analytics for a particular Party Type Object. | **partyRoleId:\"PTYRiP8nMgPxBsPc5i\"** |\n| **partyRoleGroupId** | Multiple Ids Allowed |Find Analytics for a particular Party Type Group Object. | **partyRoleGroupId:\"PTYGBnjxbx6tKNfVEP\"** |\n| **attorneyPartyRoleId** | Multiple Ids Allowed |Find Analytics for a particular Attorney Party Type Object. | **attorneyPartyRoleId:\"PTYRiP8nMgPxBsPc5i\"** |\n| **attorneyPartyRoleGroupId** | Multiple Ids Allowed |Find Analytics for a particular Attorney Party Type Group Object. | **attorneyPartyRoleGroupId:\"PTYGBnjxbx6tKNfVEP\"** |\n| **caseFiledDate** | Single Allowed  |Find Analytics within a particular date range. | **caseFiledDate:[2018-05-08T00:00:00+00:00TO2019-05-08T00:00:00+00:00]** |\n| **JurisdictionGeo** | Multiple filters Allowed |Find Analytics within a particular Jurisdiction Geo. | **(JurisdictionGeo:(state:\"California\"))** |\n| **confidenceScore** | Single Allowed |Find Analytics for a given ConfidenceScore  | **confidenceScore>=0.5** |\n| **bestMatch** | Single Allowed |True if the normEntity has the highest Confidence Score of all possible normEntities | **bestMatch:true** |\n<br>\n## Example Query\nQuery to get all attorneys associated with Party with norm id NORGrPmQyLdx9NGHcT of all cases with case type id CTYPATMYyaJekdgj2c and  case filed date between Jan 1st, 2017 to Nov 30th,2021<br>\nq=caseTypeId:\"CTYPATMYyaJekdgj2c\" AND caseFiledDate:[2017-01-01T00:00:00+00:00TO2021-11-30T00:00:00+00:00]\n<br><br>\n",
        "operationId": "getNormAttorneysAssociatedWithNormParty",
        "parameters": [
          {
            "description": "The URL encoded query you are searching for. The query can be as simple as a keyword, but supports many additional options and filters. All options are documented above.",
            "examples": {
              "HTTP200-modifiedValue": {
                "summary": "Default value",
                "value": ""
              },
              "HTTP200-sampleAnalyticsQuery": {
                "summary": "sampleAnalyticsQuery",
                "value": "caseTypeId:\"CTYPATMYyaJekdgj2c\" AND caseFiledDate:[2017-01-01T00:00:00+00:00TO2021-11-30T00:00:00+00:00]"
              },
              "HTTP400-sample400AnalyticsQuery": {
                "summary": "sample400AnalyticsQuery",
                "value": "caseTypeId:\"CTYPATMYyaJekdgj2c\" AND caseFiledDate:[2018-01-01T00:00:00+00:00TO2021-11-3000:00:00+00:00]"
              },
              "HTTP404-sample404AnalyticsQuery": {
                "summary": "sample404AnalyticsQuery",
                "value": "caseTypeId:\"CTYPATMYy1Jekdgj2c\" AND caseFiledDate:[2018-01-01T00:00:00+00:00TO2021-11-30T00:00:00+00:00]"
              }
            },
            "in": "query",
            "name": "q",
            "schema": {
              "maxLength": 2048,
              "nullable": false,
              "type": "string"
            }
          },
          {
            "$ref": "#/components/parameters/AnalyticsPageParam"
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleAnalyticsQuery": {
                    "value": {
                      "associatedNormAttorneyArray": [
                        {
                          "caseCount": 13187,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCPmKFXW6gvPVgpz",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-04T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-11-29T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "JORDAN",
                          "lastName": "COOK",
                          "middleName": "DAVID",
                          "name": "JORDAN DAVID COOK",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYp7kmEQtt8jQ3eQ",
                          "normAttorneyId": "NATYp7kmEQtt8jQ3eQ",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "179720",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 7534,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC5gpMw3KSk8PSJC",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-03T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-11-30T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "KRISTEN",
                          "lastName": "BRINKERHOFF",
                          "middleName": "LEIGH",
                          "name": "KRISTEN LEIGH BRINKERHOFF",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYtRqoeWfiMruLZ8",
                          "normAttorneyId": "NATYtRqoeWfiMruLZ8",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "263579",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 6960,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCPgwPtnanozNcYT",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-30T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-11-30T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "KERI",
                          "lastName": "SALET",
                          "middleName": "L.",
                          "name": "KERI L. SALET",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYEEwmQRn2zfoy96",
                          "normAttorneyId": "NATYEEwmQRn2zfoy96",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "318913",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 5501,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCSEBeS2hY5Waytx",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-04T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-11-30T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "EMILY",
                          "lastName": "PIERCE",
                          "middleName": "DEHAAS",
                          "name": "EMILY DEHAAS PIERCE",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYpP5gnspbT4gEsr",
                          "normAttorneyId": "NATYpP5gnspbT4gEsr",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "240084",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            },
                            {
                              "barNumber": "48624",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "WA"
                            },
                            {
                              "barNumber": "51005",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CO"
                            }
                          ]
                        },
                        {
                          "caseCount": 4878,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCkG4g7RW5mYYx4T",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-04T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-11-29T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "JORDAN",
                          "lastName": "COOK",
                          "middleName": "DAVISSON",
                          "name": "JORDAN DAVISSON COOK",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYAiS8ujd78L2xyJ",
                          "normAttorneyId": "NATYAiS8ujd78L2xyJ",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "293394",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 4737,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCmTeeSRT89k58D4",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-04T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-11-29T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "LORI",
                          "lastName": "WILLIAMS",
                          "middleName": "NICOLE",
                          "name": "LORI NICOLE WILLIAMS",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYqfApDiEZvDwsxa",
                          "normAttorneyId": "NATYqfApDiEZvDwsxa",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "242985",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 4060,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCnHPKy49DBJSqVe",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-05T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-09-17T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "DEVIN",
                          "lastName": "JACOBSEN",
                          "middleName": "B.",
                          "name": "DEVIN B. JACOBSEN",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYHk4zgDtiJmrCfq",
                          "normAttorneyId": "NATYHk4zgDtiJmrCfq",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "308722",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 3996,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCoUyZQvZf2eALym",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-04T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-09-22T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "ANTHONY",
                          "lastName": "DIPIERO",
                          "middleName": "J",
                          "name": "ANTHONY J DIPIERO",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY2r4VdnvZzB3qeD",
                          "normAttorneyId": "NATY2r4VdnvZzB3qeD",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "268246",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 3864,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCEUZAqAgQskeuPe",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-05T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-11-25T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "MICHAEL",
                          "lastName": "HUNT",
                          "middleName": "SCOTT",
                          "name": "MICHAEL SCOTT HUNT",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYfwmXwRHS279WPY",
                          "normAttorneyId": "NATYfwmXwRHS279WPY",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "99804",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 3709,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCbdABn24EFiXunB",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-04-19T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-06-16T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "EMILY",
                          "lastName": "COLLINS",
                          "middleName": "BLAKE",
                          "name": "EMILY ANNE BLAKE",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYHvD82kLpEx2vZW",
                          "normAttorneyId": "NATYHvD82kLpEx2vZW",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "311804",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 2090,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCoD8wRRFAL6wfH6",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-05-17T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-06-16T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "EMILY",
                          "lastName": "COLLINS",
                          "middleName": "CHANDLER",
                          "name": "EMILY CHANDLER COLLINS",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYG3NkRxxBsvhoke",
                          "normAttorneyId": "NATYG3NkRxxBsvhoke",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "329549",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            },
                            {
                              "barNumber": "011498",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "HI"
                            }
                          ]
                        },
                        {
                          "caseCount": 1892,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCYaJS5zhZeSPujn",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2019-01-17T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-02-25T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "JOSIE",
                          "lastName": "ZIMMERMANN",
                          "middleName": "SUE",
                          "name": "JOSIE SUE ZIMMERMANN",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY3TcqEy7MWhL8s2",
                          "normAttorneyId": "NATY3TcqEy7MWhL8s2",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "324511",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 1710,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCfLX9xbgffNjSjr",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2019-12-13T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-10-27T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "ADAM",
                          "lastName": "KIDD",
                          "middleName": "LEIGH",
                          "name": "ADAM LEIGH KIDD",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYYtiAeBcyg5weYL",
                          "normAttorneyId": "NATYYtiAeBcyg5weYL",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "328520",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 1015,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCoXTYiZwD9aahu5",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-09T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-03-08T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "JAIME",
                          "lastName": "RITTON",
                          "middleName": "YOSHIMI",
                          "name": "JAIME YOSHIMI RITTON",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYuQkhYFm5NXBaqP",
                          "normAttorneyId": "NATYuQkhYFm5NXBaqP",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "303483",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            },
                            {
                              "barNumber": "54873",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "WA"
                            }
                          ]
                        },
                        {
                          "caseCount": 760,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCWZ7bQNEbuGtXQD",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-09T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-11-29T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "DONALD",
                          "lastName": "SHERRILL",
                          "middleName": null,
                          "name": "DONALD SHERRILL",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYHssASbhYuTLYrt",
                          "normAttorneyId": "NATYHssASbhYuTLYrt",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "266038",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 675,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCJG4SfPLUk3mbLV",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-09-19T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-03-29T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "CATHERINE",
                          "lastName": "FONG",
                          "middleName": "K.",
                          "name": "CATHERINE K. TANG",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYz9sL6gFfs58kvv",
                          "normAttorneyId": "NATYz9sL6gFfs58kvv",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "305349",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 647,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRChYBMfnnrB9MBRt",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-10-15T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-03-08T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "HARMONY",
                          "lastName": "OSWALD",
                          "middleName": "N.",
                          "name": "HARMONY N. OSWALD",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYRLezxXZvxNyp8L",
                          "normAttorneyId": "NATYRLezxXZvxNyp8L",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "312726",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 635,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCaRxFdveAnQ6DXd",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2019-12-10T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-11-30T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "KEVIN",
                          "lastName": "BUIZA",
                          "middleName": "BRENDON",
                          "name": "KEVIN BRENDON BUIZA",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY9STzbaLnDVeSeS",
                          "normAttorneyId": "NATY9STzbaLnDVeSeS",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "318691",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 553,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCVfZLbKF4CAe68G",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2020-04-16T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-04-14T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "REGINALDO",
                          "lastName": "VILLARREAL",
                          "middleName": "JAVIER GONZALES",
                          "name": "REGINALDO JAVIER GONZALES VILLARREAL JR",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYsUtM2SrDaZ3k2b",
                          "normAttorneyId": "NATYsUtM2SrDaZ3k2b",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "321475",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 546,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC5XjHP8eJu7fuai",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-22T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-03-12T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "RACHEL",
                          "lastName": "NAPIER",
                          "middleName": "NIKKOLE",
                          "name": "RACHEL NIKKOLE NAPIER",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYFwFWF7fANydayY",
                          "normAttorneyId": "NATYFwFWF7fANydayY",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "314000",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 521,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCMneTftcbZvnJm2",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-17T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-02-05T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "JANALIE",
                          "lastName": "HENRIQUES",
                          "middleName": "ANN",
                          "name": "JANALIE ANN HENRIQUES",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYDnCJnMwmYMDCBq",
                          "normAttorneyId": "NATYDnCJnMwmYMDCBq",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "111589",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 306,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCecpWTc8jDnmgfN",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-05-31T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-11-29T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "MICHELLE",
                          "lastName": "MITCHELL",
                          "middleName": "DENISE",
                          "name": "MICHELLE DENISE MITCHELL",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY3i5XcMBub2PdH8",
                          "normAttorneyId": "NATY3i5XcMBub2PdH8",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "221841",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 300,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCY4AFhmk2BHoNVF",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2020-04-06T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-06-16T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "KURTISS",
                          "lastName": "JACOBS",
                          "middleName": "ANTHONY",
                          "name": "KURTISS ANTHONY JACOBS",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYFqAmYszeU4hos8",
                          "normAttorneyId": "NATYFqAmYszeU4hos8",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "218950",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 195,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCUULLJ7Au4zL3bh",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2021-02-09T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-11-29T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "MICHELLE",
                          "lastName": "MITCHELL",
                          "middleName": "M",
                          "name": "MICHELLE M MITCHELL",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYcQxHDcqj9kA5hZ",
                          "normAttorneyId": "NATYcQxHDcqj9kA5hZ",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "188467",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 169,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCghNYzsxJCyPxiq",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-03-24T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-11-29T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "LORI",
                          "lastName": "WILLIAMS",
                          "middleName": "LYNN",
                          "name": "LORI LYNN WILLIAMS",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYeaLS5kQG4WQLSk",
                          "normAttorneyId": "NATYeaLS5kQG4WQLSk",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "172219",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 127,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCAYieFG2Lspz4Y2",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-05-11T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-09-17T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "GURINDER",
                          "lastName": "KHAIRA",
                          "middleName": "SINGH",
                          "name": "GURINDER SINGH KHAIRA",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYQxbPcAEu2LcZhs",
                          "normAttorneyId": "NATYQxbPcAEu2LcZhs",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "319957",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 66,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCdW7g9V9mtNyjpd",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2020-12-02T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-11-30T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "NICHOLAS",
                          "lastName": "MORTL",
                          "middleName": "PATRICK",
                          "name": "NICHOLAS PATRICK MORTL",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYSSVe6FtdC7f99s",
                          "normAttorneyId": "NATYSSVe6FtdC7f99s",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "337745",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 44,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCSuanuaSSktPdWy",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-26T00:00:00+00:00",
                            "lastCaseFiledDate": "2017-04-03T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "JESSICA",
                          "lastName": "DANIELSKI",
                          "middleName": "LEE",
                          "name": "JESSICA LEE DANIELSKI",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYAAvuqLrpNZnN8i",
                          "normAttorneyId": "NATYAAvuqLrpNZnN8i",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "308940",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 27,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRChFyh3WqqgMsUhw",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2020-09-21T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-07-29T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "TODD",
                          "lastName": "MASUDA",
                          "middleName": "N.",
                          "name": "TODD N. MASUDA",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYAjygYYieqHiKWz",
                          "normAttorneyId": "NATYAjygYYieqHiKWz",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "335420",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 15,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCVEyazdFYNFnXiq",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2019-03-13T00:00:00+00:00",
                            "lastCaseFiledDate": "2019-08-05T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "TODD",
                          "lastName": "SIMONSON",
                          "middleName": "CHRISTOPHER",
                          "name": "TODD CHRISTOPHER SIMONSON",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYG87cVd75Ucf3NH",
                          "normAttorneyId": "NATYG87cVd75Ucf3NH",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "224346",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 15,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCdkuTEsM3v5qq5U",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2019-03-13T00:00:00+00:00",
                            "lastCaseFiledDate": "2019-08-05T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "TODD",
                          "lastName": "SIMONSON",
                          "middleName": "CHARLES",
                          "name": "TODD CHARLES SIMONSON",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYhnBQJ2xocfEohA",
                          "normAttorneyId": "NATYhnBQJ2xocfEohA",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "203234",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 15,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCiwWU8zGJXJDv5B",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2019-05-21T00:00:00+00:00",
                            "lastCaseFiledDate": "2019-08-12T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "CHRISTOPHER",
                          "lastName": "BEYER",
                          "middleName": "ALLEN",
                          "name": "CHRISTOPHER ALLEN BEYER",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYmDPk4fhtT4Z8Jz",
                          "normAttorneyId": "NATYmDPk4fhtT4Z8Jz",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "213264",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 14,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCFEKrQL5RNsHAgF",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2021-09-10T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-09-16T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "KEVIN",
                          "lastName": "HOLST",
                          "middleName": "LEE",
                          "name": "KEVIN LEE HOLST",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYdT69uiBZZWEejk",
                          "normAttorneyId": "NATYdT69uiBZZWEejk",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "221360",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            },
                            {
                              "barNumber": "P66274",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "MI"
                            }
                          ]
                        },
                        {
                          "caseCount": 13,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCRB8WehTyHNRRVm",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-09T00:00:00+00:00",
                            "lastCaseFiledDate": "2017-05-31T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "GRETCHEN",
                          "lastName": "SHAFFER",
                          "middleName": "TOMANEK",
                          "name": "GRETCHEN TOMANEK SHAFFER",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYbDfTgsuLPzKE3L",
                          "normAttorneyId": "NATYbDfTgsuLPzKE3L",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "254033",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 8,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCihwCjvWD673WNW",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2019-07-15T00:00:00+00:00",
                            "lastCaseFiledDate": "2019-09-13T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "CAMRYN",
                          "lastName": "BERK",
                          "middleName": "P.",
                          "name": "CAMRYN P. BERK",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYd63CyvSyTnXKw6",
                          "normAttorneyId": "NATYd63CyvSyTnXKw6",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "317565",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 6,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCcJrsV9DauzFQTe",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2021-04-09T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-08-06T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "ANNA",
                          "lastName": "KARKOON",
                          "middleName": "CHAPLAIN",
                          "name": "ANNA CHAPLAIN KARKOON",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYg5NmVVwynpYhrN",
                          "normAttorneyId": "NATYg5NmVVwynpYhrN",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "295797",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 5,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCbrvPb7J53zZdy6",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2021-09-10T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-09-15T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "GREGORY",
                          "lastName": "BABCOCK",
                          "middleName": "JAMES",
                          "name": "GREGORY JAMES BABCOCK",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYsstVGymekhTXYx",
                          "normAttorneyId": "NATYsstVGymekhTXYx",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "260437",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            },
                            {
                              "barNumber": "004682",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "DE"
                            },
                            {
                              "barNumber": "205061",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "PA"
                            }
                          ]
                        },
                        {
                          "caseCount": 3,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC5Wq6PxykG2oQhM",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-08-27T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-05-18T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "JACK",
                          "lastName": "POGOSIAN",
                          "middleName": "H.",
                          "name": "JACK H. POGOSIAN",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYxBxhpjtZGGWq4G",
                          "normAttorneyId": "NATYxBxhpjtZGGWq4G",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "305741",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCKMpszQ7UpCyeqk",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2021-10-27T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-10-29T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "CHRISTINE",
                          "lastName": "SIDUGUEN",
                          "middleName": "SUFEN-CHANG",
                          "name": "SIDUGUEN CHRISTINE S",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYbpfT97upBenSvg",
                          "normAttorneyId": "NATYbpfT97upBenSvg",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "240380",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC3TSkDu7NhZFSAC",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2019-01-25T00:00:00+00:00",
                            "lastCaseFiledDate": "2019-01-25T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "MELINE",
                          "lastName": "GRIGORYAN",
                          "middleName": null,
                          "name": "MELINE GRIGORYAN",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY2DerghwKgpeXXn",
                          "normAttorneyId": "NATY2DerghwKgpeXXn",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "321133",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCieYxas5LJCTaWE",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-04-13T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-04-13T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "JOHN",
                          "lastName": "GOODMAN",
                          "middleName": "CHARLES",
                          "name": "JOHN CHARLES GOODMAN",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY3VA5nzHvgnNYbY",
                          "normAttorneyId": "NATY3VA5nzHvgnNYbY",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "176375",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC2PHhYhetoanL3N",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2020-07-15T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-07-15T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "SAMANTHA",
                          "lastName": "LOPEZ",
                          "middleName": "MARCELA",
                          "name": "SAMANTHA MARCELA LOPEZ",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY4ksEuzytnHon6u",
                          "normAttorneyId": "NATY4ksEuzytnHon6u",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "321284",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCAhbCSyNAnufsdP",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2019-12-16T00:00:00+00:00",
                            "lastCaseFiledDate": "2019-12-16T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "RAMSEYFAIZ",
                          "lastName": "ABBOUSHI",
                          "middleName": "M.",
                          "name": "RAMSEYFAIZ M. ABBOUSHI",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYAGZqLEoMGPKiHB",
                          "normAttorneyId": "NATYAGZqLEoMGPKiHB",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "315237",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCHj2hGVytkWTtz3",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-11-09T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-11-09T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "CAROLINE",
                          "lastName": "LUTZ",
                          "middleName": "MARY",
                          "name": "CAROLINE MARY LUTZ",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYB72CF3jvZVb4Mb",
                          "normAttorneyId": "NATYB72CF3jvZVb4Mb",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "274836",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            },
                            {
                              "barNumber": null,
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "IL"
                            }
                          ]
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCUp55wM9er9QJAk",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2020-07-06T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-07-06T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "RUTH",
                          "lastName": "ROWLETTE",
                          "middleName": "ANN",
                          "name": "RUTH ANN ROWLETTE",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYFmwpMCw4ZLks6U",
                          "normAttorneyId": "NATYFmwpMCw4ZLks6U",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "164419",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCMDS2uq5vJxZD2b",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-03-06T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-03-06T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "PAUL",
                          "lastName": "PEYRAT",
                          "middleName": "IRVING",
                          "name": "PAUL IRVING PEYRAT",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYPCU2jCQ9LH9Rz2",
                          "normAttorneyId": "NATYPCU2jCQ9LH9Rz2",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "31423",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCCjZfRaxc2FwBkZ",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-04-13T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-04-13T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "JOHN",
                          "lastName": "GOODMAN",
                          "middleName": "ADRIAN",
                          "name": "JOHN ADRIAN GOODMAN",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYQycsAN7653hmDB",
                          "normAttorneyId": "NATYQycsAN7653hmDB",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "131608",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCDBX8oXWGpKWKsx",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2020-12-21T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-12-21T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "SAMANTHA",
                          "lastName": "ECKELMAN",
                          "middleName": "BETH",
                          "name": "SAMANTHA BETH ECKELMAN",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYaW5X9uyfFE4LGp",
                          "normAttorneyId": "NATYaW5X9uyfFE4LGp",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "236934",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            },
                            {
                              "barNumber": "10393",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "NV"
                            }
                          ]
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCJBQimnTMJ2iRuP",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-04-13T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-04-13T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "JOHN",
                          "lastName": "GOODMAN",
                          "middleName": "MICHAEL",
                          "name": "JOHN MICHAEL GOODMAN",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYaoydRajTneeZmQ",
                          "normAttorneyId": "NATYaoydRajTneeZmQ",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "147569",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            },
                            {
                              "barNumber": "1251255",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "NY"
                            }
                          ]
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRChZU9ms5xWiMutm",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-03-09T00:00:00+00:00",
                            "lastCaseFiledDate": "2017-03-09T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "GARY",
                          "lastName": "LOBEL",
                          "middleName": "DEAN",
                          "name": "LOBEL GARY DEAN",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYjx3goCmFxgVgw6",
                          "normAttorneyId": "NATYjx3goCmFxgVgw6",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "105983",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCRU8cwFb8H8BbLH",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-07-19T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-07-19T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "DAVID",
                          "lastName": "PIKE",
                          "middleName": "MATTHEW",
                          "name": "DAVID MATTHEW PIKE",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYmMamZTFMeTkNUF",
                          "normAttorneyId": "NATYmMamZTFMeTkNUF",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "139720",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            },
                            {
                              "barNumber": "2196053",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "NY"
                            }
                          ]
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC6K3nb4eKZdxGhN",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-10-25T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-10-25T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "JAMAL",
                          "lastName": "MUHAMMAD",
                          "middleName": "SADAT",
                          "name": "JAMAL SADAT MUHAMMAD",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYn3HiWi5HNmraKC",
                          "normAttorneyId": "NATYn3HiWi5HNmraKC",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "290712",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCTSKghHWZPV88ND",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2020-03-05T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-03-05T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "STELIOS",
                          "lastName": "HARRIS",
                          "middleName": "ANDREW",
                          "name": "STELIOS ANDREW HARRIS",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYo53WEkHRgJqve9",
                          "normAttorneyId": "NATYo53WEkHRgJqve9",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "242116",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            },
                            {
                              "barNumber": "315537",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "PA"
                            }
                          ]
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCgodz3w6ELfifDk",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-09-25T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-09-25T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "BRIAN",
                          "lastName": "LANGEDYK",
                          "middleName": "T.",
                          "name": "BRIAN T. LANGEDYK",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYqp4yiNRxAyNE4t",
                          "normAttorneyId": "NATYqp4yiNRxAyNE4t",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "337250",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCoKtvspe7fJRHKM",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2020-02-13T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-02-13T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "STEVE",
                          "lastName": "LEVY",
                          "middleName": null,
                          "name": "STEVE LEVY",
                          "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATYsYdH4n4Q2QhEKm",
                          "normAttorneyId": "NATYsYdH4n4Q2QhEKm",
                          "object": "AssociatedNormAttorney",
                          "stateBarDataArray": [
                            {
                              "barNumber": "180062",
                              "barSourceType": "state_bar",
                              "object": "BarRecordPreview",
                              "stateCode": "CA"
                            }
                          ]
                        }
                      ],
                      "nextPageAPI": null,
                      "previousPageAPI": null,
                      "totalCount": 55,
                      "totalPages": 1
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/AssociatedNormAttorneyResponse"
                }
              }
            },
            "description": "OK"
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "sample400AnalyticsQuery": {
                    "value": {
                      "code": "UN400",
                      "details": "caseFiledDate is not in a required format",
                      "message": "INVALID_INPUT",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Bad Request"
          },
          "404": {
            "content": {
              "application/json": {
                "examples": {
                  "sample404AnalyticsQuery": {
                    "value": {
                      "code": "UN404",
                      "details": "caseTypeId not found",
                      "message": "RESOURCE_NOT_FOUND",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Not Found"
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "example-1": {
                    "value": {
                      "code": "UN500",
                      "details": "Has encountered a situation which needs to be handled.",
                      "message": "INTERNAL_SERVER_ERROR",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Internal Server Error"
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Attorneys that represented the Party.",
        "tags": [
          "Party Analytics API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [
        {
          "description": "Norm ID of the Party.\n  - minimum: 18\n  - maximum: 18\n",
          "examples": {
            "HTTP200-sampleAnalyticsQuery": {
              "summary": "sampleAnalyticsQuery",
              "value": "NORGrPmQyLdx9NGHcT"
            },
            "HTTP400-sample400AnalyticsQuery": {
              "summary": "sample400AnalyticsQuery",
              "value": "NORGrPmQyLdx9NGHcT"
            },
            "HTTP404-sample404AnalyticsQuery": {
              "summary": "sample404AnalyticsQuery",
              "value": "NJUDT7jCZyFNeLGpRq"
            }
          },
          "in": "path",
          "name": "normPartyId",
          "required": true,
          "schema": {
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          }
        }
      ],
      "x-api-name": "AssociatedNormAttorneysForNormPartyAPI",
      "x-unicourt-tag": "PartyAnalyticsAPIs"
    },
    "/normParty/{normPartyId}/associatedNormJudges": {
      "get": {
        "description": "Returns a list of Judges the party has faced.\n<br><br>\n## Terms and Connectors\n| Connector | Schema   | Description  | Example |\n| ------| ------| ------|------|\n| **AND** ||Find analytics containing all connected terms. The word AND does not have to be capitalized.|**courtId:\"CORTV4vCEaKrhystBz\" AND courtLocationId:\"COLO6b82CkRqS846hx\"**|\n| **IN()** || Allows you to specify multiple values, for a limit of up to 10.| **courtId IN (\"CORTKQiA4LJuv54tEj\",\"CORTqrgr5iFOXfIBmk\")**|\n| **courtId** | Multiple Ids Allowed |Find Analytics for a particular Court Object. | **courtId:\"CORTV4vCEaKrhystBz\"** |\n| **courtSystemId** | Multiple Ids Allowed |Find Analytics for a particular Court System Object. | **courtSystemId:\"COSYACHBdMewtaG5DY\"** |\n| **courtTypeId** | Multiple Ids Allowed |Find Analytics for a particular Court Type Object. | **courtTypeId:\"COTPm8jjc2PAydpFhq\"** |\n| **courtLocationId** | Multiple Ids Allowed |Find Analytics for a particular Court Location Object. | **courtLocationId:\"COLO6b82CkRqS846hx\"** |\n| **caseTypeId** | Multiple Ids Allowed |Find Analytics for a particular Case Type Object. | **caseTypeId:\"CTYPATMYyaJekdgj2c\"** |\n| **caseTypeGroupId** | Multiple Ids Allowed |Find Analytics for a particular Case Type Group Object. | **caseTypeGroupId:\"CTYG8gZ6hPRKhhYi4Y\"** |\n| **areaOfLawId** | Multiple Ids Allowed |Find Analytics for a particular Area Of Law Object. | **areaOfLawId:\"AOFL2UxEWfVmTPMyqf\"** |\n| **caseClassId** | Multiple Ids Allowed |Find Analytics for a particular Case Class Category Object. | **caseClassId:\"CSCLNjbKTN7Yfo2wdb\"** |\n| **caseFiledDate** | Single Allowed  |Find Analytics within a particular date range. | **caseFiledDate:[2018-05-08T00:00:00+00:00TO2019-05-08T00:00:00+00:00]** |\n| **JurisdictionGeo** | Multiple filters Allowed |Find Analytics within a particular Jurisdiction Geo. | **(JurisdictionGeo:(state:\"California\"))** |\n| **confidenceScore** | Single Allowed |Find Analytics for a given ConfidenceScore  | **confidenceScore>=0.5** |\n| **bestMatch** | Single Allowed |True if the normEntity has the highest Confidence Score of all possible normEntities | **bestMatch:true** |\n<br>\n## Example Query\nQuery to get all judges associated with Party with norm id NORGrPmQyLdx9NGHcT of all cases with case type id CTYPATMYyaJekdgj2c and  case filed date between Jan 1st, 2017 to Nov 30th,2021<br>\nq=caseTypeId:\"CTYPATMYyaJekdgj2c\" AND caseFiledDate:[2017-01-01T00:00:00+00:00TO2021-11-30T00:00:00+00:00]\n<br><br>\n",
        "operationId": "getNormJudgesAssociatedWithNormParty",
        "parameters": [
          {
            "description": "The URL encoded query you are searching for. The query can be as simple as a keyword, but supports many additional options and filters. All options are documented above.",
            "examples": {
              "HTTP200-modifiedValue": {
                "summary": "Default value",
                "value": ""
              },
              "HTTP200-sampleAnalyticsQuery": {
                "summary": "sampleAnalyticsQuery",
                "value": "caseTypeId:\"CTYPATMYyaJekdgj2c\" AND caseFiledDate:[2017-01-01T00:00:00+00:00TO2021-11-30T00:00:00+00:00]"
              },
              "HTTP400-sample400AnalyticsQuery": {
                "summary": "sample400AnalyticsQuery",
                "value": "caseTypeId:\"CTYPATMYyaJekdgj2c\" AND caseFiledDate:[2018-01-01T00:00:00+00:00TO2021-11-3000:00:00+00:00]"
              },
              "HTTP404-sample404AnalyticsQuery": {
                "summary": "sample404AnalyticsQuery",
                "value": "caseTypeId:\"CTYPATMYy1Jekdgj2c\" AND caseFiledDate:[2018-01-01T00:00:00+00:00TO2021-11-30T00:00:00+00:00]"
              }
            },
            "in": "query",
            "name": "q",
            "schema": {
              "maxLength": 2048,
              "nullable": false,
              "type": "string"
            }
          },
          {
            "$ref": "#/components/parameters/AnalyticsPageParam"
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleAnalyticsQuery": {
                    "value": {
                      "associatedNormJudgeArray": [
                        {
                          "caseCount": 8608,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCj67vtjevM47cen",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-02-05T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-01-08T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "ANN",
                          "lastName": "PARK",
                          "middleName": "H.",
                          "name": "ANN H. PARK",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDT7jCZyFNeLGpRq",
                          "normJudgeId": "NJUDT7jCZyFNeLGpRq",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 5759,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCCzeXfhxFWqmWTZ",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-05T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-12-31T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "GRACIELA",
                          "lastName": "FREIXES",
                          "middleName": "L.",
                          "name": "FREIXES GRACIELA L",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUD3SNsKALeLqwE2z",
                          "normJudgeId": "NJUD3SNsKALeLqwE2z",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 5759,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCBbZR2ZuvWQChgT",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-05T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-12-31T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "GRACIELA",
                          "lastName": "FREIXES",
                          "middleName": null,
                          "name": "FREIXES GRACIELA F",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDsFYNsR9gVcHM2y",
                          "normJudgeId": "NJUDsFYNsR9gVcHM2y",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 3357,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC4h2FYEVJdM86vC",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2019-01-08T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-11-30T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "RANDY",
                          "lastName": "RHODES",
                          "middleName": null,
                          "name": "RANDY RHODES",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDk7HwoQsnzsFM6b",
                          "normJudgeId": "NJUDk7HwoQsnzsFM6b",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 3212,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCUgv7xT6ri4rZ4x",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2019-01-11T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-08-25T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "ROBERT",
                          "lastName": "SCHUIT",
                          "middleName": "J.",
                          "name": "ROBERT J. SCHUIT",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDEoqEtC3kQRbCGk",
                          "normJudgeId": "NJUDEoqEtC3kQRbCGk",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 2893,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCQtFPwJWwF5u9rw",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-03T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-02-05T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "THOMAS",
                          "lastName": "LONG",
                          "middleName": null,
                          "name": "LONG THOMAS B",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDbhvsJtLXNLDKGm",
                          "normJudgeId": "NJUDbhvsJtLXNLDKGm",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 2891,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC8rxXz6DYTj37M5",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-03T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-02-05T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "THOMAS",
                          "lastName": "LONG",
                          "middleName": "D.",
                          "name": "LONG THOMAS D",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDs6tspKwTsH4PEU",
                          "normJudgeId": "NJUDs6tspKwTsH4PEU",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 1462,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCbhELHFTCdxnEBf",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2020-08-21T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-05-27T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "ANDREW",
                          "lastName": "KIM",
                          "middleName": null,
                          "name": "KIM ANDREW K",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDKi8xxZGXJTUrCc",
                          "normJudgeId": "NJUDKi8xxZGXJTUrCc",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 1462,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRChn2AR8RcZ44TTK",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2020-08-21T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-05-27T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "ANDREW",
                          "lastName": "KIM",
                          "middleName": "C.",
                          "name": "KIM ANDREW C",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDfqA3MfAhi4fpEN",
                          "normJudgeId": "NJUDfqA3MfAhi4fpEN",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 1225,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCWmzoK8ogwDndQn",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-23T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-11-29T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "DAVID",
                          "lastName": "WILLIAMS",
                          "middleName": "A.",
                          "name": "DAVID A. WILLIAMS",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDg3KR8ntrzVYrAx",
                          "normJudgeId": "NJUDg3KR8ntrzVYrAx",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 1217,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCnxFD9hpwnq7PPh",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-05-22T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-11-29T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "JAY",
                          "lastName": "ROBINSON",
                          "middleName": null,
                          "name": "JAY ROBINSON",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUD2D4vroFzHnNjFA",
                          "normJudgeId": "NJUD2D4vroFzHnNjFA",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 1101,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCJG7MohYtjF7St5",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-05T00:00:00+00:00",
                            "lastCaseFiledDate": "2017-10-10T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "VALERIE",
                          "lastName": "SALKIN",
                          "middleName": null,
                          "name": "VALERIE SALKIN",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUD2cXnuFz3c7o4bi",
                          "normJudgeId": "NJUD2cXnuFz3c7o4bi",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 1097,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCjneWB5QbYfhKAV",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-09T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-04-06T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "CHRISTOPHER",
                          "lastName": "HARMON",
                          "middleName": "B.",
                          "name": "HARMON CHRISTOPHER B",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUD3vEnjHy9BzCQXC",
                          "normJudgeId": "NJUD3vEnjHy9BzCQXC",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 1097,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCT7hzfJG3c6iJ7w",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-09T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-04-06T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "CHRISTOPHER",
                          "lastName": "HARMON",
                          "middleName": null,
                          "name": "CHRISTOPHER HARMON",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDkBFzr3y4N7wCjS",
                          "normJudgeId": "NJUDkBFzr3y4N7wCjS",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 1073,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCjW5KVFJ7WbFr8g",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-10T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-08-04T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "MARK",
                          "lastName": "CULLERS",
                          "middleName": "E.",
                          "name": "MARK E. CULLERS",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUD5GSHKxKfkoJqdg",
                          "normJudgeId": "NJUD5GSHKxKfkoJqdg",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 744,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC9gPTLXYkraG66U",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2019-01-11T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-09-22T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "MARIE",
                          "lastName": "WOOD",
                          "middleName": null,
                          "name": "MARIE WOOD",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDsnUHLUMQVJGotC",
                          "normJudgeId": "NJUDsnUHLUMQVJGotC",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 669,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCnLSf4AE7Cy9t2J",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2019-07-24T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-12-24T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "VICTORIA",
                          "lastName": "KOLAKOWSKI",
                          "middleName": null,
                          "name": "KOLAKOWSKI VICTORIA",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDMKqcDxNtxp82zb",
                          "normJudgeId": "NJUDMKqcDxNtxp82zb",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 669,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCbwUr4vX2N84pKc",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2019-07-24T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-12-24T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "VICTORIA",
                          "lastName": "KOLAKOWSKI",
                          "middleName": null,
                          "name": "VICTORIA KOLAKOWSKI",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDUTxrfv5mtS8LDS",
                          "normJudgeId": "NJUDUTxrfv5mtS8LDS",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 612,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCLaABn2C9KdjXEK",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-05T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-11-23T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "BARBARA",
                          "lastName": "KRONLUND",
                          "middleName": "A.",
                          "name": "BARBARA A. KRONLUND",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDe6BuEBzbzjnZGi",
                          "normJudgeId": "NJUDe6BuEBzbzjnZGi",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 612,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC3Z265KCXyeyepq",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-05T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-11-23T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "BARBARA",
                          "lastName": "KRONLUND",
                          "middleName": null,
                          "name": "BARBARA KRONLUND",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDgiMCiiZupirf8c",
                          "normJudgeId": "NJUDgiMCiiZupirf8c",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 591,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC7HNXg83xbsJkty",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-10T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-02-11T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "SAMUEL",
                          "lastName": "DALESANDRO",
                          "middleName": null,
                          "name": "SAMUEL DALESANDRO JR.",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDBoHbJUhHTKdWPR",
                          "normJudgeId": "NJUDBoHbJUhHTKdWPR",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 563,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCDGcfK95EyYqA4v",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-05T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-02-10T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "ROGER",
                          "lastName": "ROSS",
                          "middleName": null,
                          "name": "ROGER ROSS",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDmhA6T7XZT5yaiW",
                          "normJudgeId": "NJUDmhA6T7XZT5yaiW",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 562,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCSq3qCrzWVNr2Dh",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-09T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-11-29T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "STEPHEN",
                          "lastName": "BENSON",
                          "middleName": "E.",
                          "name": "STEPHEN E. BENSON",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDGBXamVbBSSgZNy",
                          "normJudgeId": "NJUDGBXamVbBSSgZNy",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 562,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCMcZrnz8cowvnxY",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-09T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-11-29T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "STEPHEN",
                          "lastName": "BENSON",
                          "middleName": "E",
                          "name": "STEPHEN E BENSON",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDpNgoQk8LTBGMfd",
                          "normJudgeId": "NJUDpNgoQk8LTBGMfd",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 545,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCkuBVU9NyJiV8Cu",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-05T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-04-09T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "CARTER",
                          "lastName": "HOLLY",
                          "middleName": "P.",
                          "name": "CARTER P. HOLLY",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUD26fS5HHwwKk6ps",
                          "normJudgeId": "NJUD26fS5HHwwKk6ps",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 545,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCB8MBJzKwWY5oHH",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-05T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-04-09T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "CARTER",
                          "lastName": "HOLLY",
                          "middleName": null,
                          "name": "CARTER HOLLY",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDegBjHBEXzFXfjp",
                          "normJudgeId": "NJUDegBjHBEXzFXfjp",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 538,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCHqnQig7tFuNrWH",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2021-06-01T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-11-29T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "SCOTT",
                          "lastName": "HERIN",
                          "middleName": null,
                          "name": "SCOTT HERIN",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDef6dFCuDCRAwWy",
                          "normJudgeId": "NJUDef6dFCuDCRAwWy",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 538,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCd6u8Bp6nGopCfS",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2021-06-01T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-11-29T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "SCOTT",
                          "lastName": "HERIN",
                          "middleName": "R.",
                          "name": "HERIN SCOTT R",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDneq3sFudxKqPfv",
                          "normJudgeId": "NJUDneq3sFudxKqPfv",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 471,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC6DSbUQFkvp2zvm",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-02-23T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-11-30T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "DAVID",
                          "lastName": "FOSTER",
                          "middleName": null,
                          "name": "DAVID FOSTER",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDzh3mvYaBK7i3g4",
                          "normJudgeId": "NJUDzh3mvYaBK7i3g4",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 463,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCgZ4YwWVNtovqau",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-30T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-04-20T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "TAMARA",
                          "lastName": "MOSBARGER",
                          "middleName": "L.",
                          "name": "MOSBARGER TAMARA L",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUD27h9eiQYLjrcR4",
                          "normJudgeId": "NJUD27h9eiQYLjrcR4",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 463,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCZqcAvfcnGPqo6P",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-30T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-04-20T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "TAMARA",
                          "lastName": "MOSBARGER",
                          "middleName": "L.",
                          "name": "TAMARA L. MOSBARGER",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDBCUNVtEFPfnVq6",
                          "normJudgeId": "NJUDBCUNVtEFPfnVq6",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 450,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC5ZidkhvZHzEwU2",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-03-03T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-11-29T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "GEORGE",
                          "lastName": "ABDALLAH",
                          "middleName": null,
                          "name": "GEORGE ABDALLAH",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDCJzSMxUzDVRKA4",
                          "normJudgeId": "NJUDCJzSMxUzDVRKA4",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 450,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCXFsRVXHAkNorBW",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-03-03T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-11-29T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "GEORGE",
                          "lastName": "ABDALLAH",
                          "middleName": "J.",
                          "name": "GEORGE J. ABDALLAH JR.",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDSg8koqSoH5qUZx",
                          "normJudgeId": "NJUDSg8koqSoH5qUZx",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 332,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCg4H6reYVRztv4p",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-19T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-10-02T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "GARRETT",
                          "lastName": "WONG",
                          "middleName": "L.",
                          "name": "GARRETT L. WONG",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDJc8CdRtk2Z9Urd",
                          "normJudgeId": "NJUDJc8CdRtk2Z9Urd",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 325,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCgBVAoWqJ8MJXEo",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-06T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-03-12T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "MICHAEL",
                          "lastName": "MULVIHILL",
                          "middleName": "J.",
                          "name": "MICHAEL J. MULVIHILL",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDiWeZ7SghbSofJs",
                          "normJudgeId": "NJUDiWeZ7SghbSofJs",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 302,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCeduH2rrCFkqQso",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-17T00:00:00+00:00",
                            "lastCaseFiledDate": "2017-10-23T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "AMY",
                          "lastName": "YERKEY",
                          "middleName": null,
                          "name": "AMY YERKEY",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDrhNUmmp5zmMbVK",
                          "normJudgeId": "NJUDrhNUmmp5zmMbVK",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 256,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCSkDBedxV4CQcic",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-02-14T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-04-06T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "DAVID",
                          "lastName": "GREGORY",
                          "middleName": null,
                          "name": "DAVID GREGORY",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDjwNYKPsxowM69B",
                          "normJudgeId": "NJUDjwNYKPsxowM69B",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 240,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCcjKrQPMXjHSwZ8",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-09T00:00:00+00:00",
                            "lastCaseFiledDate": "2019-02-08T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "JACQUELINE",
                          "lastName": "STERN",
                          "middleName": "M",
                          "name": "JACQUELINE M STERN",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUD6yvmpLjsHScehx",
                          "normJudgeId": "NJUD6yvmpLjsHScehx",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 240,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCnrCxTUUuhXnKL5",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-09T00:00:00+00:00",
                            "lastCaseFiledDate": "2019-02-08T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "JACQUELINE",
                          "lastName": "STERN",
                          "middleName": "M.",
                          "name": "JACQUELINE M. STERN",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDFUyuvzm6f7pLq9",
                          "normJudgeId": "NJUDFUyuvzm6f7pLq9",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 236,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC7wDjNuVU3uutFc",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-26T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-11-19T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "JOSE",
                          "lastName": "BENAVIDES",
                          "middleName": "R.",
                          "name": "JOSE R. BENAVIDES",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDWfLoQKqXdSuwaY",
                          "normJudgeId": "NJUDWfLoQKqXdSuwaY",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 236,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCBba2jnW6jLcmY7",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-26T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-11-19T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "JOSE",
                          "lastName": "BENAVIDES",
                          "middleName": null,
                          "name": "JOSE BENAVIDES",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDYyEwxnMPxG8Ngy",
                          "normJudgeId": "NJUDYyEwxnMPxG8Ngy",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 219,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC9v85xWmf8Hn2qx",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2019-01-03T00:00:00+00:00",
                            "lastCaseFiledDate": "2019-09-11T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "SUSANNE",
                          "lastName": "FENSTERMACHER",
                          "middleName": "M.",
                          "name": "SUSANNE M. FENSTERMACHER",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUD5AYUFPBxrp5aFw",
                          "normJudgeId": "NJUD5AYUFPBxrp5aFw",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 219,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCSnunc5RNKaEQb8",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2019-01-03T00:00:00+00:00",
                            "lastCaseFiledDate": "2019-09-11T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "SUSANNE",
                          "lastName": "FENSTERMACHER",
                          "middleName": null,
                          "name": "SUSANNE FENSTERMACHER",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUD8Myw2uTUjRNjDT",
                          "normJudgeId": "NJUD8Myw2uTUjRNjDT",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 217,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCVVdM3fR6GFqdwM",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-04T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-01-06T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "ROBERT",
                          "lastName": "TAFOYA",
                          "middleName": null,
                          "name": "ROBERT TAFOYA",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDWBrSm96mNQiAdZ",
                          "normJudgeId": "NJUDWBrSm96mNQiAdZ",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 217,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC5eRdvEuXW4VqL5",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-04T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-01-06T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "ROBERT",
                          "lastName": "TAFOYA",
                          "middleName": "S.",
                          "name": "ROBERT S. TAFOYA",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDyP83vrUyriWBop",
                          "normJudgeId": "NJUDyP83vrUyriWBop",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 211,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCEJEiSK4xzoLoV2",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-17T00:00:00+00:00",
                            "lastCaseFiledDate": "2019-04-30T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "EARL",
                          "lastName": "MAAS",
                          "middleName": "H.",
                          "name": "EARL H. MAAS III",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDDyZU3Fc8mGVGMc",
                          "normJudgeId": "NJUDDyZU3Fc8mGVGMc",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 211,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCMWorSUkaBk9Pxx",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-17T00:00:00+00:00",
                            "lastCaseFiledDate": "2019-04-30T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "EARL",
                          "lastName": "MAAS",
                          "middleName": "H",
                          "name": "EARL H MAAS III",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDT7tQUsT6naf8qa",
                          "normJudgeId": "NJUDT7tQUsT6naf8qa",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 211,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCK98mGUxiG2g23B",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-05T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-07-06T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "MONICA",
                          "lastName": "DIAZ",
                          "middleName": null,
                          "name": "MONICA DIAZ",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDTbCtKctzrxxgai",
                          "normJudgeId": "NJUDTbCtKctzrxxgai",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 210,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCHE3w3Q4tN8PmbR",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-05T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-09-28T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "ELIZABETH",
                          "lastName": "HUMPHREYS",
                          "middleName": null,
                          "name": "ELIZABETH HUMPHREYS",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDCWgUocgWtXu3qE",
                          "normJudgeId": "NJUDCWgUocgWtXu3qE",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 206,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCicEEuWQeAJGVaV",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-06-26T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-11-30T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "GABRIEL",
                          "lastName": "BRICKEY",
                          "middleName": null,
                          "name": "GABRIEL BRICKEY",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDPhGt2mK8qFBuiT",
                          "normJudgeId": "NJUDPhGt2mK8qFBuiT",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 205,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCFz7L5Fwar8AM6d",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-06T00:00:00+00:00",
                            "lastCaseFiledDate": "2019-02-15T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "TIMOTHY",
                          "lastName": "CASSERLY",
                          "middleName": "M",
                          "name": "TIMOTHY M CASSERLY",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDeJjkwHn3fAiwvt",
                          "normJudgeId": "NJUDeJjkwHn3fAiwvt",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 205,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCDMGZGdq8FC3PZK",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-06T00:00:00+00:00",
                            "lastCaseFiledDate": "2019-02-15T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "TIMOTHY",
                          "lastName": "CASSERLY",
                          "middleName": "M.",
                          "name": "CASSERLY TIMOTHY M",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDqz8C9zbzv8rUKy",
                          "normJudgeId": "NJUDqz8C9zbzv8rUKy",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 203,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCeaJ3YXZ4FgSsRJ",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-12T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-04-02T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "KENNETH",
                          "lastName": "GREEN",
                          "middleName": null,
                          "name": "KENNETH GREEN",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDsFh4qfoj4A5wpR",
                          "normJudgeId": "NJUDsFh4qfoj4A5wpR",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 201,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCRQu58wEqNuktgF",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-03-21T00:00:00+00:00",
                            "lastCaseFiledDate": "2019-03-15T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "W.",
                          "lastName": "SCOTT",
                          "middleName": "STEPHEN",
                          "name": "W. STEPHEN SCOTT",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDM97Nqa2UTRwp7c",
                          "normJudgeId": "NJUDM97Nqa2UTRwp7c",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 198,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCivA4D9PZVJZ79t",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-09T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-08-09T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "RONALD",
                          "lastName": "FRAZIER",
                          "middleName": "F",
                          "name": "RONALD F FRAZIER",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDCbN9wkmkj3SDbw",
                          "normJudgeId": "NJUDCbN9wkmkj3SDbw",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 198,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCEvecBw9dTQkEFC",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-09T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-08-09T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "RONALD",
                          "lastName": "FRAZIER",
                          "middleName": "F.",
                          "name": "FRAZIER RONALD F",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDsbK9UrVyusMris",
                          "normJudgeId": "NJUDsbK9UrVyusMris",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 197,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCTWNDkZwUBqW8vt",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-03-30T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-11-29T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "JAYNE",
                          "lastName": "LEE",
                          "middleName": null,
                          "name": "JAYNE LEE",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDbiZDMHjmc4AKro",
                          "normJudgeId": "NJUDbiZDMHjmc4AKro",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 175,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCSnyVqHauufa7X5",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2019-01-07T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-10-07T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "CHARLES",
                          "lastName": "BURCH",
                          "middleName": "BEN",
                          "name": "CHARLES BEN BURCH",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDU922xbm8QNNzxm",
                          "normJudgeId": "NJUDU922xbm8QNNzxm",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 168,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCZJZhz5y8pb4dXJ",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2020-02-21T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-07-21T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "EUMI",
                          "lastName": "LEE",
                          "middleName": null,
                          "name": "EUMI LEE",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDmgVbYWF6F8JWNZ",
                          "normJudgeId": "NJUDmgVbYWF6F8JWNZ",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 168,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCUf9axNX5gGykF2",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2020-02-21T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-07-21T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "EUMI",
                          "lastName": "LEE",
                          "middleName": null,
                          "name": "LEE EUMI",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDqVAzWJSB5C88DR",
                          "normJudgeId": "NJUDqVAzWJSB5C88DR",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 162,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCP2BBTZDWqNDKTX",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-12-19T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-11-29T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "ROBERT",
                          "lastName": "WATERS",
                          "middleName": null,
                          "name": "ROBERT WATERS",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDqaEvtanGTtHGia",
                          "normJudgeId": "NJUDqaEvtanGTtHGia",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 145,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCSeXyjqrsugJk2w",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-10-05T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-09-15T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "KHYMBERLI",
                          "lastName": "APALOO",
                          "middleName": "S.Y.",
                          "name": "KHYMBERLI S.Y. APALOO",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDq2soNtT855keru",
                          "normJudgeId": "NJUDq2soNtT855keru",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 143,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCArsHKwJL6DsV7S",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-11-17T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-09-29T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "ERNST",
                          "lastName": "HALPERIN",
                          "middleName": "A.",
                          "name": "ERNST A. HALPERIN",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDKvfpVgm3LoW8W2",
                          "normJudgeId": "NJUDKvfpVgm3LoW8W2",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 140,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC6aEQamC7bUkwBb",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-06-28T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-08-24T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "SAMUEL",
                          "lastName": "FENG",
                          "middleName": "K.",
                          "name": "SAMUEL K. FENG",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDoUAPpnJv6Y9Vrf",
                          "normJudgeId": "NJUDoUAPpnJv6Y9Vrf",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 129,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCoUBo9GceibM7gE",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-26T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-09-30T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "D.",
                          "lastName": "THARPE",
                          "middleName": "TYLER",
                          "name": "D. TYLER THARPE",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDWuBhrxHooGefKk",
                          "normJudgeId": "NJUDWuBhrxHooGefKk",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 125,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCo6x9py7qFnpEbc",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-02-10T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-04-17T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "MARK",
                          "lastName": "BACCIARINI",
                          "middleName": "V.",
                          "name": "MARK V. BACCIARINI",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDTMB4FcEfX9GBQi",
                          "normJudgeId": "NJUDTMB4FcEfX9GBQi",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 114,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCfPyt5TRAXo8Jd5",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-04-17T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-03-30T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "JOSEPH",
                          "lastName": "SCOTT",
                          "middleName": "C.",
                          "name": "JOSEPH C. SCOTT",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDBggB9M2Le8Po69",
                          "normJudgeId": "NJUDBggB9M2Le8Po69",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 112,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCEtaFwAJ9VhFi3L",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-09T00:00:00+00:00",
                            "lastCaseFiledDate": "2019-02-08T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "ROBERT",
                          "lastName": "DAHLQUIST",
                          "middleName": "P.",
                          "name": "ROBERT P. DAHLQUIST",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDecRYCM9CrRmTCf",
                          "normJudgeId": "NJUDecRYCM9CrRmTCf",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 112,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCgbUjNqDewsdu7K",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-09T00:00:00+00:00",
                            "lastCaseFiledDate": "2019-02-08T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "ROBERT",
                          "lastName": "DAHLQUIST",
                          "middleName": "P",
                          "name": "DAHLQUIST ROBERT P",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDnwqjsXmYMgCXvp",
                          "normJudgeId": "NJUDnwqjsXmYMgCXvp",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 111,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCFp75Ui55mW2XSh",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-12-18T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-11-23T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "JOSE",
                          "lastName": "ALVA",
                          "middleName": null,
                          "name": "JOSE ALVA",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDCgWdmsbZZGtWd6",
                          "normJudgeId": "NJUDCgWdmsbZZGtWd6",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 111,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCPc9kTWdQLykWE9",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-12-18T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-11-23T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "JOSE",
                          "lastName": "ALVA",
                          "middleName": "L",
                          "name": "JOSE L ALVA",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDG5xZXehEQsXjEL",
                          "normJudgeId": "NJUDG5xZXehEQsXjEL",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 100,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCcBkmfR8zoncUuB",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-25T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-08-23T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "CRAIG",
                          "lastName": "PHILLIPS",
                          "middleName": null,
                          "name": "CRAIG PHILLIPS",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDMEysEX7xndGboC",
                          "normJudgeId": "NJUDMEysEX7xndGboC",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 87,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCmMx4CPGEcx7r7t",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-13T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-09-10T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "LYNN",
                          "lastName": "PONCIN",
                          "middleName": null,
                          "name": "LYNN PONCIN",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDD7rxYsG4VxptC3",
                          "normJudgeId": "NJUDD7rxYsG4VxptC3",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 83,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCjJg9oTtZQdFXuj",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-30T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-10-07T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "MICHAEL",
                          "lastName": "CANDELA",
                          "middleName": null,
                          "name": "MICHAEL CANDELA",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUD7N2s85xQRHsdyu",
                          "normJudgeId": "NJUD7N2s85xQRHsdyu",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 83,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCiD4b5uVJJhUc45",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-30T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-10-07T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "MICHAEL",
                          "lastName": "CANDELA",
                          "middleName": "P.",
                          "name": "MICHAEL P. CANDELA",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDZFvumwWXzJVhQD",
                          "normJudgeId": "NJUDZFvumwWXzJVhQD",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 80,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCRHuBxQjCPQ9spB",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-04-28T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-05-15T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "LISA",
                          "lastName": "NOVAK",
                          "middleName": "A.",
                          "name": "LISA A. NOVAK",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUD2qUQ3hWCweG4we",
                          "normJudgeId": "NJUD2qUQ3hWCweG4we",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 80,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCSFxG43SMYSTE6N",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2019-02-05T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-10-05T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "CLARE",
                          "lastName": "MAIER",
                          "middleName": null,
                          "name": "CLARE MAIER",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDmZPUfjh5h7wMUi",
                          "normJudgeId": "NJUDmZPUfjh5h7wMUi",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 80,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCFdSGwLrsvXuYBv",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2019-02-05T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-10-05T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "CLARE",
                          "lastName": "MAIER",
                          "middleName": "M.",
                          "name": "CLARE M. MAIER",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDsUdw2j6JMDVPgK",
                          "normJudgeId": "NJUDsUdw2j6JMDVPgK",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 74,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCiNAz8tYqGnXToY",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-11T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-11-01T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "V.",
                          "lastName": "SWOPE",
                          "middleName": "RAYMOND",
                          "name": "V. RAYMOND SWOPE",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDSssuBdPYz9yHor",
                          "normJudgeId": "NJUDSssuBdPYz9yHor",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 73,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCB2t9ocHBgifbhF",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-11-14T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-09-29T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "NANCY",
                          "lastName": "FINEMAN",
                          "middleName": "L.",
                          "name": "NANCY L. FINEMAN",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDvfuHR9YrXA3s9t",
                          "normJudgeId": "NJUDvfuHR9YrXA3s9t",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 71,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCKsMXGWMzcm2YDW",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-31T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-11-27T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "THEODORE",
                          "lastName": "ZAYNER",
                          "middleName": "C.",
                          "name": "THEODORE C. ZAYNER",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDbazfnqmvNsGZDC",
                          "normJudgeId": "NJUDbazfnqmvNsGZDC",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 71,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC8wNKmxtkMCaxY3",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-31T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-11-27T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "THEODORE",
                          "lastName": "ZAYNER",
                          "middleName": null,
                          "name": "THEODORE ZAYNER",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDuZmzXVGUxXk9oT",
                          "normJudgeId": "NJUDuZmzXVGUxXk9oT",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 68,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC2fa8dXj3GS7veo",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-03-15T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-08-05T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "KENNETH",
                          "lastName": "PRITCHARD",
                          "middleName": null,
                          "name": "KENNETH PRITCHARD",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDLDtWFwSScXQQsb",
                          "normJudgeId": "NJUDLDtWFwSScXQQsb",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 68,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCETmk4HPzDGD5Yf",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-03-15T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-08-05T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "KENNETH",
                          "lastName": "PRITCHARD",
                          "middleName": "G.",
                          "name": "KENNETH G. PRITCHARD",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDPR79zCQoimxvKe",
                          "normJudgeId": "NJUDPR79zCQoimxvKe",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 67,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC9TZK37W58hvfVU",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2019-11-01T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-02-03T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "BRYAN",
                          "lastName": "FOSTER",
                          "middleName": null,
                          "name": "BRYAN FOSTER",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUD8jbXPZgPSiUEQ5",
                          "normJudgeId": "NJUD8jbXPZgPSiUEQ5",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 66,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCZLoLRREpvSVL3k",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-03-09T00:00:00+00:00",
                            "lastCaseFiledDate": "2019-10-10T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "MARY",
                          "lastName": "ARAND",
                          "middleName": null,
                          "name": "MARY ARAND",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDF5WbqGSsBefww6",
                          "normJudgeId": "NJUDF5WbqGSsBefww6",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 66,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCJeHw9FT6ob7j9k",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-03-09T00:00:00+00:00",
                            "lastCaseFiledDate": "2019-10-10T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "MARY",
                          "lastName": "ARAND",
                          "middleName": "E.",
                          "name": "MARY E. ARAND",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDNnHK5WTmvSSDJj",
                          "normJudgeId": "NJUDNnHK5WTmvSSDJj",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 62,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCExUwESzb3goGsz",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-03-10T00:00:00+00:00",
                            "lastCaseFiledDate": "2019-08-05T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "RICHARD",
                          "lastName": "DUBOIS",
                          "middleName": "H.",
                          "name": "RICHARD H. DUBOIS",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUD9uiosuxdiSZKQx",
                          "normJudgeId": "NJUD9uiosuxdiSZKQx",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 62,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCFLCjstSd9cbCmT",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2019-11-22T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-03-05T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "JANET",
                          "lastName": "FRANGIE",
                          "middleName": "M.",
                          "name": "JANET M. FRANGIE",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDfU7ontppAEuU6V",
                          "normJudgeId": "NJUDfU7ontppAEuU6V",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 57,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC3EMwQgwMrHbtoL",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-04-13T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-07-13T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "RANDALL",
                          "lastName": "WHITE",
                          "middleName": "D.",
                          "name": "RANDALL D. WHITE",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUD2enxx8B2HwwTNR",
                          "normJudgeId": "NJUD2enxx8B2HwwTNR",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 57,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCNQFmLkB5oh9Yrd",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-09T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-10-26T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "JUDITH",
                          "lastName": "HAYES",
                          "middleName": "F.",
                          "name": "JUDITH F. HAYES",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUD4x4ikRtxnqhkfM",
                          "normJudgeId": "NJUD4x4ikRtxnqhkfM",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 57,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC6gAfKiTA7UYXLD",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-10-20T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-09-29T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "ROBERT",
                          "lastName": "FOILES",
                          "middleName": "D.",
                          "name": "ROBERT D. FOILES",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDt4ccVV9ZuaaoCB",
                          "normJudgeId": "NJUDt4ccVV9ZuaaoCB",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 56,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCZ8pqV57we6JjdA",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-05T00:00:00+00:00",
                            "lastCaseFiledDate": "2019-08-14T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "CARLOS",
                          "lastName": "CABRERA",
                          "middleName": null,
                          "name": "CARLOS CABRERA",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDS9dmgf2Rz2fkVz",
                          "normJudgeId": "NJUDS9dmgf2Rz2fkVz",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 56,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC25Ph26Uj7FxN6F",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-05T00:00:00+00:00",
                            "lastCaseFiledDate": "2019-08-14T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "CARLOS",
                          "lastName": "CABRERA",
                          "middleName": "A.",
                          "name": "CARLOS A. CABRERA",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDSc6qUp9WPJZZHG",
                          "normJudgeId": "NJUDSc6qUp9WPJZZHG",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 55,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCgUDdMDtY7XWouZ",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-05-01T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-09-29T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "DANNY",
                          "lastName": "CHOU",
                          "middleName": "Y.",
                          "name": "DANNY Y. CHOU",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDE5ZijnSfC6aNQX",
                          "normJudgeId": "NJUDE5ZijnSfC6aNQX",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 55,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCFrfMFFQdeSjvA7",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-04T00:00:00+00:00",
                            "lastCaseFiledDate": "2017-08-11T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "LINDA",
                          "lastName": "LOFTHUS",
                          "middleName": null,
                          "name": "LINDA LOFTHUS",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDrNLU68YDrMCkST",
                          "normJudgeId": "NJUDrNLU68YDrMCkST",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 55,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCBeYM3xUQSXPHth",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-04T00:00:00+00:00",
                            "lastCaseFiledDate": "2017-08-11T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "LINDA",
                          "lastName": "LOFTHUS",
                          "middleName": "L.",
                          "name": "LINDA L. LOFTHUS",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDxDHYHfrExG8MVR",
                          "normJudgeId": "NJUDxDHYHfrExG8MVR",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 54,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC2VWJ82ieqqFkAp",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-12T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-09-25T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "TERI",
                          "lastName": "JACKSON",
                          "middleName": "L.",
                          "name": "TERI L. JACKSON",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDGo5JE68Bc9gRZH",
                          "normJudgeId": "NJUDGo5JE68Bc9gRZH",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 53,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCSqNAuU3nMCxf5U",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2020-02-21T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-04-01T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "PATRICK",
                          "lastName": "MCKINNEY",
                          "middleName": null,
                          "name": "PATRICK MCKINNEY II",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDRqt5UYed4kqMbD",
                          "normJudgeId": "NJUDRqt5UYed4kqMbD",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        },
                        {
                          "caseCount": 53,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCYG8wAVdTwRTNTo",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2020-02-21T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-04-01T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "firstName": "PATRICK",
                          "lastName": "MCKINNEY",
                          "middleName": null,
                          "name": "PATRICK MCKINNEY",
                          "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUDUcbnLsdJJDzYUj",
                          "normJudgeId": "NJUDUcbnLsdJJDzYUj",
                          "object": "AssociatedNormJudge",
                          "version": "version"
                        }
                      ],
                      "nextPageAPI": "https://enterpriseapi.unicourt.com/normParty/NORGrPmQyLdx9NGHcT/associatedNormJudges?pageNumber=2&q=caseTypeId%3A%22CTYPATMYyaJekdgj2c%22+AND+caseFiledDate%3A%5B2017-01-01T00%3A00%3A00%2B00%3A00TO2021-11-30T00%3A00%3A00%2B00%3A00%5D",
                      "previousPageAPI": null,
                      "totalCount": 352,
                      "totalPages": 4
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/AssociatedNormJudgeResponse"
                }
              }
            },
            "description": "OK"
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "sample400AnalyticsQuery": {
                    "value": {
                      "code": "UN400",
                      "details": "caseFiledDate is not in a required format",
                      "message": "INVALID_INPUT",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Bad Request"
          },
          "404": {
            "content": {
              "application/json": {
                "examples": {
                  "sample404AnalyticsQuery": {
                    "value": {
                      "code": "UN404",
                      "details": "caseTypeId not found",
                      "message": "RESOURCE_NOT_FOUND",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Not Found"
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "example-1": {
                    "value": {
                      "code": "UN500",
                      "details": "Has encountered a situation which needs to be handled.",
                      "message": "INTERNAL_SERVER_ERROR",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Internal Server Error"
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Judges Faced By the Party.",
        "tags": [
          "Party Analytics API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [
        {
          "description": "Norm ID of the Party.\n  - minimum: 18\n  - maximum: 18\n",
          "examples": {
            "HTTP200-sampleAnalyticsQuery": {
              "summary": "sampleAnalyticsQuery",
              "value": "NORGrPmQyLdx9NGHcT"
            },
            "HTTP400-sample400AnalyticsQuery": {
              "summary": "sample400AnalyticsQuery",
              "value": "NORGrPmQyLdx9NGHcT"
            },
            "HTTP404-sample404AnalyticsQuery": {
              "summary": "sample404AnalyticsQuery",
              "value": "NJUDT7jCZyFNeLGpRq"
            }
          },
          "in": "path",
          "name": "normPartyId",
          "required": true,
          "schema": {
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          }
        }
      ],
      "x-api-name": "AssociatedNormJudgesForNormPartyAPI",
      "x-unicourt-tag": "PartyAnalyticsAPIs"
    },
    "/normParty/{normPartyId}/associatedNormLawFirms": {
      "get": {
        "description": "Returns a list of Law Firms the Party has been represented by.\n## Terms and Connectors\n| Connector | Schema   | Description  | Example |\n| ------| ------| ------|------|\n| **AND** ||Find analytics containing all connected terms. The word AND does not have to be capitalized.|**courtId:\"CORTV4vCEaKrhystBz\" AND courtLocationId:\"COLO6b82CkRqS846hx\"**|\n| **IN()** || Allows you to specify multiple values, for a limit of up to 10.| **courtId IN (\"CORTKQiA4LJuv54tEj\",\"CORTqrgr5iFOXfIBmk\")**|\n| **courtId** | Multiple Ids Allowed |Find Analytics for a particular Court Object. | **courtId:\"CORTV4vCEaKrhystBz\"** |\n| **courtSystemId** | Multiple Ids Allowed |Find Analytics for a particular Court System Object. | **courtSystemId:\"COSYACHBdMewtaG5DY\"** |\n| **courtTypeId** | Multiple Ids Allowed |Find Analytics for a particular Court Type Object. | **courtTypeId:\"COTPm8jjc2PAydpFhq\"** |\n| **courtLocationId** | Multiple Ids Allowed |Find Analytics for a particular Court Location Object. | **courtLocationId:\"COLO6b82CkRqS846hx\"** |\n| **caseTypeId** | Multiple Ids Allowed |Find Analytics for a particular Case Type Object. | **caseTypeId:\"CTYPATMYyaJekdgj2c\"** |\n| **caseTypeGroupId** | Multiple Ids Allowed |Find Analytics for a particular Case Type Group Object. | **caseTypeGroupId:\"CTYG8gZ6hPRKhhYi4Y\"** |\n| **areaOfLawId** | Multiple Ids Allowed |Find Analytics for a particular Area Of Law Object. | **areaOfLawId:\"AOFL2UxEWfVmTPMyqf\"** |\n| **caseClassId** | Multiple Ids Allowed |Find Analytics for a particular Case Class Category Object. | **caseClassId:\"CSCLNjbKTN7Yfo2wdb\"** |\n| **partyRoleId** | Multiple Ids Allowed |Find Analytics for a particular Party Type Object. | **partyRoleId:\"PTYRiP8nMgPxBsPc5i\"** |\n| **partyRoleGroupId** | Multiple Ids Allowed |Find Analytics for a particular Party Type Group Object. | **partyRoleGroupId:\"PTYGBnjxbx6tKNfVEP\"** |\n| **attorneyPartyRoleId** | Multiple Ids Allowed |Find Analytics for a particular Attorney Party Type Object. | **attorneyPartyRoleId:\"PTYRiP8nMgPxBsPc5i\"** |\n| **attorneyPartyRoleGroupId** | Multiple Ids Allowed |Find Analytics for a particular Attorney Party Type Group Object. | **attorneyPartyRoleGroupId:\"PTYGBnjxbx6tKNfVEP\"** |\n| **caseFiledDate** | Single Allowed |Find Analytics within a particular date range. | **caseFiledDate:[2018-05-08T00:00:00+00:00TO2019-05-08T00:00:00+00:00]** |\n| **JurisdictionGeo** | Multiple filters Allowed |Find Analytics within a particular Jurisdiction Geo. | **(JurisdictionGeo:(state:\"California\"))** |\n| **confidenceScore** | Single Allowed |Find Analytics for a given ConfidenceScore  | **confidenceScore>=0.5** |\n| **bestMatch** | Single Allowed |True if the normEntity has the highest Confidence Score of all possible normEntities | **bestMatch:true** |\n<br>\n## Example Query\nQuery to get all lawfirms associated with Party with norm id NORGrPmQyLdx9NGHcT of all cases with case type id CTYPATMYyaJekdgj2c and  case filed date between Jan 1st, 2017 to Nov 30th,2021<br>\nq=caseTypeId:\"CTYPATMYyaJekdgj2c\" AND caseFiledDate:[2017-01-01T00:00:00+00:00TO2021-11-30T00:00:00+00:00]\n",
        "operationId": "getNormLawFirmsAssociatedWithNormParty",
        "parameters": [
          {
            "description": "The URL encoded query you are searching for. The query can be as simple as a keyword, but supports many additional options and filters. All options are documented above.",
            "examples": {
              "HTTP200-modifiedValue": {
                "summary": "Default value",
                "value": ""
              },
              "HTTP200-sampleAnalyticsQuery": {
                "summary": "sampleAnalyticsQuery",
                "value": "caseTypeId:\"CTYPATMYyaJekdgj2c\" AND caseFiledDate:[2017-01-01T00:00:00+00:00TO2021-11-30T00:00:00+00:00]"
              },
              "HTTP400-sample400AnalyticsQuery": {
                "summary": "sample400AnalyticsQuery",
                "value": "caseTypeId:\"CTYPATMYyaJekdgj2c\" AND caseFiledDate:[2018-01-01T00:00:00+00:00TO2021-11-3000:00:00+00:00]"
              },
              "HTTP404-sample404AnalyticsQuery": {
                "summary": "sample404AnalyticsQuery",
                "value": "caseTypeId:\"CTYPATMYy1Jekdgj2c\" AND caseFiledDate:[2018-01-01T00:00:00+00:00TO2021-11-30T00:00:00+00:00]"
              }
            },
            "in": "query",
            "name": "q",
            "schema": {
              "maxLength": 2048,
              "nullable": false,
              "type": "string"
            }
          },
          {
            "$ref": "#/components/parameters/AnalyticsPageParam"
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleAnalyticsQuery": {
                    "value": {
                      "associatedNormLawFirmArray": [
                        {
                          "caseCount": 39156,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC8r8pPYp87LU3Q6",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-04T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-11-30T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "HUNT & HENRIQUES, INC.",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGYevnGAWWENhEQ9",
                          "normLawFirmId": "NORGYevnGAWWENhEQ9",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "03859431",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 26316,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCnUqNVMU83vjKnn",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-03T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-11-30T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "SHASTA PORTFOLIO ASSOCIATES L.L.C.",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGJZWceBM2famVx9",
                          "normLawFirmId": "NORGJZWceBM2famVx9",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "201908010739",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 26316,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC5QxEf7QYj6jLVR",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-03T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-11-30T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "ENERGY PORTFOLIO ASSOCIATES L.L.C.",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGKu9PCVPDXKdXbu",
                          "normLawFirmId": "NORGKu9PCVPDXKdXbu",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "201713710521",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 26316,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC4p5EFNBm92kUw4",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-03T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-11-30T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "PARAMETRIC PORTFOLIO ASSOCIATES L.L.C.",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGWtwZKxBkfmJ9u4",
                          "normLawFirmId": "NORGWtwZKxBkfmJ9u4",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "201315110252",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 26316,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC6REkepSawFE5p5",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-03T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-11-30T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "PORTFOLIO REALTY ASSOCIATES, L.P.",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGcBsSQNBiiLxqsV",
                          "normLawFirmId": "NORGcBsSQNBiiLxqsV",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "B99000000208",
                              "stateCode": "FL"
                            },
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "199331400014",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 26316,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCGkJY2niRbvyjDt",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-03T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-11-30T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "CARIBFORNIA PORTFOLIO ASSOCIATES L.L.C.",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGpUnpSZ8AzStNXq",
                          "normLawFirmId": "NORGpUnpSZ8AzStNXq",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "201700510477",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 26316,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCRWgqEx3oT94dga",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-03T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-11-30T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "PORTFOLIO RECOVERY ASSOCIATES, L.L.C.",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGrPmQyLdx9NGHcT",
                          "normLawFirmId": "NORGrPmQyLdx9NGHcT",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "200413310140",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 26316,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCKcN42jx3SeSkSx",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-03T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-11-30T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "CONSERVATIVE PORTFOLIO ASSOCIATES",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGvqEg3wWMbvMnzg",
                          "normLawFirmId": "NORGvqEg3wWMbvMnzg",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "03497817",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 26316,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCXrCF8S8qzXDpTA",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-03T00:00:00+00:00",
                            "lastCaseFiledDate": "2021-11-30T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "PARAMETRIC PORTFOLIO ASSOCIATES, INC.",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGwJXq4yuDfoGFNw",
                          "normLawFirmId": "NORGwJXq4yuDfoGFNw",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "01104578",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 13,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCHxmtMJbMptA5qa",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-01-09T00:00:00+00:00",
                            "lastCaseFiledDate": "2017-05-31T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "DLA PIPER LLP US",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGTQt5fZtPFuDgBx",
                          "normLawFirmId": "NORGTQt5fZtPFuDgBx",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "202001197001",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 6,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC5DT4akJrE2FNrF",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2017-03-08T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-05-18T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "MIDLAND FUNDING L.L.C.",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGDiJQPjeed2mtvx",
                          "normLawFirmId": "NORGDiJQPjeed2mtvx",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "200801710065",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCVVpE7XNgfjFTCc",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2020-07-15T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-07-15T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "PATTY - O'",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORG4zywXkYAPD7Dmf",
                          "normLawFirmId": "NORG4zywXkYAPD7Dmf",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "01710095",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC44TsTtEYpZfcTW",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-10-25T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-10-25T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "FEDERAL DEFENDERS OF SAN DIEGO INC.",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORG7ejWyQQdd2tabK",
                          "normLawFirmId": "NORG7ejWyQQdd2tabK",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "00617276",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC9FPYVRTSFmmqNT",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2020-02-13T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-02-13T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "LAW OFFICES OF STEVE S. OH",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORG9iAWUT37NrjdJa",
                          "normLawFirmId": "NORG9iAWUT37NrjdJa",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "02560047",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCYs232UpW4CuQkZ",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2020-07-15T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-07-15T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "LAW OFFICES OF EDUARDO LOPEZ, INC.",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGBhA77imYLQXVNQ",
                          "normLawFirmId": "NORGBhA77imYLQXVNQ",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "03131990",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCWJ9EDTdXKorMy7",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2020-07-15T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-07-15T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "FATTY",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGTZ4NHiUdkTHFDD",
                          "normLawFirmId": "NORGTZ4NHiUdkTHFDD",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "02828663",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC5v4PbxacDDjdug",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2020-02-13T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-02-13T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "LAW OFFICES OF STEVE GIMBLIN, P.C.",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGXuPNMbJs9jhVv7",
                          "normLawFirmId": "NORGXuPNMbJs9jhVv7",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "03978714",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC2dbJjTuQW42tvw",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2020-07-15T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-07-15T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "LAW OFFICES OF LOPEZ AND LOPEZ",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGZQW8h3NFFRmFuh",
                          "normLawFirmId": "NORGZQW8h3NFFRmFuh",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "200619210050",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCQwgcgisd6hSkJS",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2020-02-13T00:00:00+00:00",
                            "lastCaseFiledDate": "2020-02-13T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "LAW OFFICE OF STEVE LEVY",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGfwiVLEXJ6AKbyN",
                          "normLawFirmId": "NORGfwiVLEXJ6AKbyN",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "02885355",
                              "stateCode": "CA"
                            }
                          ]
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCdWxSxFqtJqkFBi",
                          "caseTimeline": {
                            "firstCaseFiledDate": "2018-11-09T00:00:00+00:00",
                            "lastCaseFiledDate": "2018-11-09T00:00:00+00:00",
                            "object": "CaseTimeline"
                          },
                          "name": "QUALL CARDOT L.L.P.",
                          "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NORGvg8zvoym28D3D6",
                          "normLawFirmId": "NORGvg8zvoym28D3D6",
                          "object": "AssociatedNormLawFirm",
                          "sosDataArray": [
                            {
                              "object": "SOSDataPreview",
                              "sosNumber": "202014338001",
                              "stateCode": "CA"
                            }
                          ]
                        }
                      ],
                      "nextPageAPI": null,
                      "previousPageAPI": null,
                      "totalCount": 20,
                      "totalPages": 1
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/AssociatedNormLawFirmResponse"
                }
              }
            },
            "description": "OK"
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "sample400AnalyticsQuery": {
                    "value": {
                      "code": "UN400",
                      "details": "caseFiledDate is not in a required format",
                      "message": "INVALID_INPUT",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Bad Request"
          },
          "404": {
            "content": {
              "application/json": {
                "examples": {
                  "sample404AnalyticsQuery": {
                    "value": {
                      "code": "UN404",
                      "details": "caseTypeId not found",
                      "message": "RESOURCE_NOT_FOUND",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Not Found"
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "example-1": {
                    "value": {
                      "code": "UN500",
                      "details": "Has encountered a situation which needs to be handled.",
                      "message": "INTERNAL_SERVER_ERROR",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Internal Server Error"
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Law Firms that represented the Party.",
        "tags": [
          "Party Analytics API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [
        {
          "description": "Norm ID of the Party.\n  - minimum: 18\n  - maximum: 18\n",
          "examples": {
            "HTTP200-sampleAnalyticsQuery": {
              "summary": "sampleAnalyticsQuery",
              "value": "NORGrPmQyLdx9NGHcT"
            },
            "HTTP400-sample400AnalyticsQuery": {
              "summary": "sample400AnalyticsQuery",
              "value": "NORGrPmQyLdx9NGHcT"
            },
            "HTTP404-sample404AnalyticsQuery": {
              "summary": "sample404AnalyticsQuery",
              "value": "NORGdiD1tdN8sFLi72"
            }
          },
          "in": "path",
          "name": "normPartyId",
          "required": true,
          "schema": {
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          }
        }
      ],
      "x-api-name": "AssociatedNormLawFirmsForNormPartyAPI",
      "x-unicourt-tag": "PartyAnalyticsAPIs"
    },
    "/normParty/{normPartyId}/caseCountAnalyticsByOpposingNormParty": {
      "get": {
        "description": "Returns Case Analytics by Opposing Norm Party.\n## Terms and Connectors\n| Connector | Schema   | Description  | Example |\n| ------| ------| ------|------|\n| **AND** ||Find analytics containing all connected terms. The word AND does not have to be capitalized.|**courtId:\"CORTV4vCEaKrhystBz\" AND courtLocationId:\"COLO6b82CkRqS846hx\"**|\n| **IN()** || Allows you to specify multiple values, for a limit of up to 10.| **courtId IN (\"CORTKQiA4LJuv54tEj\",\"CORTV4vCEaKrhystBz\")**|\n| **courtId** | Multiple Ids Allowed |Find Analytics for a particular Court Object. | **courtId:\"CORTV4vCEaKrhystBz\"** |\n| **courtSystemId** | Multiple Ids Allowed |Find Analytics for a particular Court System Object. | **courtSystemId:\"COSYACHBdMewtaG5DY\"** |\n| **courtTypeId** | Multiple Ids Allowed |Find Analytics for a particular Court Type Object. | **courtTypeId:\"COTPm8jjc2PAydpFhq\"** |\n| **courtLocationId** | Multiple Ids Allowed |Find Analytics for a particular Court Location Object. | **courtLocationId:\"COLO6b82CkRqS846hx\"** |\n| **caseTypeId** | Multiple Ids Allowed |Find Analytics for a particular Case Type Object. | **caseTypeId:\"CTYPATMYyaJekdgj2c\"** |\n| **caseTypeGroupId** | Multiple Ids Allowed |Find Analytics for a particular Case Type Group Object. | **caseTypeGroupId:\"CTYG8gZ6hPRKhhYi4Y\"** |\n| **areaOfLawId** | Multiple Ids Allowed |Find Analytics for a particular Area Of Law Object. | **areaOfLawId:\"AOFL2UxEWfVmTPMyqf\"** |\n| **caseClassId** | Multiple Ids Allowed |Find Analytics for a particular Case Class Category Object. | **caseClassId:\"CSCLNjbKTN7Yfo2wdb\"** |\n| **partyRoleId** | Multiple Ids Allowed |Find Analytics for a particular Party Type Object. | **partyRoleId:\"PTYRiP8nMgPxBsPc5i\"** |\n| **partyRoleGroupId** | Multiple Ids Allowed |Find Analytics for a particular Party Type Group Object. | **partyRoleGroupId:\"PTYGBnjxbx6tKNfVEP\"** |\n| **attorneyPartyRoleId** | Multiple Ids Allowed |Find Analytics for a particular Attorney Party Type Object. | **attorneyPartyRoleId:\"PTYRiP8nMgPxBsPc5i\"** |\n| **attorneyPartyRoleGroupId** | Multiple Ids Allowed |Find Analytics for a particular Attorney Party Type Group Object. | **attorneyPartyRoleGroupId:\"PTYGBnjxbx6tKNfVEP\"** |\n| **normAttorneyId** | Single Allowed  |Find Analytics for a particular norm Attorney Object. | **normAttorneyId:\"NATYfwmXwRHS279WPY\"** |\n| **normLawFirmId** | Single Allowed |Find Analytics for a particular Norm LawFirm Object. | **normLawFirmId:\"NORGrPmQyLdx9NGHcT\"** |\n| **normJudgeId** | Single Allowed  |Find Analytics for a particular Judge Object. | **normJudgeId:\"NJUDT7jCZyFNeLGpRq\"** |\n| **caseFiledDate** | Single Allowed  |Find Analytics within a particular date range. | **caseFiledDate:[2018-05-08T00:00:00+00:00TO2019-05-08T00:00:00+00:00]** |\n| **JurisdictionGeo** | Multiple filters Allowed |Find Analytics within a particular Jurisdiction Geo. | **(JurisdictionGeo:(state:\"California\"))** |\n| **confidenceScore** | Single Allowed |Find Analytics for a given ConfidenceScore  | **confidenceScore>=0.5** |\n| **bestMatch** | Single Allowed |True if the normEntity has the highest Confidence Score of all possible normEntities | **bestMatch:true** |\n<br>\n## Example Query\nQuery to get case count grouped by norm party with norm id NORGrPmQyLdx9NGHcT of all cases with case type id CTYPATMYyaJekdgj2c and filed between Jan 1st, 2017 to Nov 30th,2021<br>\nq=caseTypeId:\"CTYPATMYyaJekdgj2c\" AND caseFiledDate:[2017-01-01T00:00:00+00:00TO2021-11-30T00:00:00+00:00]\n",
        "operationId": "getCaseCountAnalyticsByOpposingNormPartyForANormParty",
        "parameters": [
          {
            "description": "The URL encoded query you are searching for. The query can be as simple as a keyword, but supports many additional options and filters. All options are documented above.",
            "examples": {
              "HTTP200-modifiedValue": {
                "summary": "Default value",
                "value": ""
              },
              "HTTP200-sampleAnalyticsQuery": {
                "summary": "sampleAnalyticsQuery",
                "value": "caseTypeId:\"CTYPATMYyaJekdgj2c\" AND caseFiledDate:[2017-01-01T00:00:00+00:00TO2021-11-30T00:00:00+00:00]"
              },
              "HTTP400-sample400AnalyticsQuery": {
                "summary": "sample400AnalyticsQuery",
                "value": "caseTypeId:\"CTYPATMYyaJekdgj2c\" AND caseFiledDate:[2018-01-01T00:00:00+00:00TO2021-11-3000:00:00+00:00]"
              },
              "HTTP404-sample404AnalyticsQuery": {
                "summary": "sample404AnalyticsQuery",
                "value": "caseTypeId:\"CTYPATMYy1Jekdgj2c\" AND caseFiledDate:[2018-01-01T00:00:00+00:00TO2021-11-30T00:00:00+00:00]"
              }
            },
            "in": "query",
            "name": "q",
            "schema": {
              "maxLength": 2048,
              "nullable": false,
              "type": "string"
            }
          },
          {
            "$ref": "#/components/parameters/AnalyticsPageParam"
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleAnalyticsQuery": {
                    "value": {
                      "nextPageAPI": "https://enterpriseapi.unicourt.com/normParty/NORGrPmQyLdx9NGHcT/caseCountAnalyticsByOpposingNormParty?pageNumber=2&q=caseTypeId%3A%22CTYPATMYyaJekdgj2c%22+AND+caseFiledDate%3A%5B2017-01-01T00%3A00%3A00%2B00%3A00TO2021-11-30T00%3A00%3A00%2B00%3A00%5D",
                      "object": "CaseCountAnalyticsByNormPartyResponse",
                      "previousPageAPI": null,
                      "results": [
                        {
                          "caseCount": 14,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC6z7fiMJFTiVLuS",
                          "normPartyId": "NORGCJ2HBiSjcTuW3V",
                          "normPartyName": "PORTFOLIO ASSOCIATES, INC.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 14,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCMp4hL7yBifW5GH",
                          "normPartyId": "NORGXX6jhQwzhVEuuv",
                          "normPartyName": "PORTFOLIO RECOVERY SERVICES INC.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 14,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCC4VkaxtX2Lwuzx",
                          "normPartyId": "NORGcBsSQNBiiLxqsV",
                          "normPartyName": "PORTFOLIO REALTY ASSOCIATES, L.P.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 14,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCVX3a8r23xVj8GT",
                          "normPartyId": "NORGybh4QVJRZxa8f6",
                          "normPartyName": "PORTFOLIO RECOVERY MANAGEMENT GROUP INC.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 9,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCFNDLPUxMC4LjqV",
                          "normPartyId": "NORGedyBXHz7JCPFPf",
                          "normPartyName": "HERNANDEZ TAX 1040",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 8,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCTy75hzAuciS8Fj",
                          "normPartyId": "NORG5huY4Bkz6VDa3L",
                          "normPartyName": "THE HERNANDEZ L.L.C.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 8,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCkPwifSa5VPNpVB",
                          "normPartyId": "NORGk2NofSpHVQ7pCe",
                          "normPartyName": "HERNANDEZ'S, L.L.C.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 8,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRChnUpC3qQGDBphy",
                          "normPartyId": "NORGkKFxfSDVGVLzqi",
                          "normPartyName": "HERNANDEZ LLC",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 6,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRChNrtkE53aTjnUr",
                          "normPartyId": "NORGtJUqZUA9UTnpcG",
                          "normPartyName": "THERESA A GREENLEE, INC.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 5,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCBuBHGSUJMNwrL3",
                          "normPartyId": "NORG2DPcsiTB2pyJDi",
                          "normPartyName": "GONZALEZ, A MEDICAL CORPORATION",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 5,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC7KNWCsYrG2sxtg",
                          "normPartyId": "NORG2wU8oVbxtHapuN",
                          "normPartyName": "GONZALEZ, INC.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 5,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCn6zcrBLC2n5aw6",
                          "normPartyId": "NORGHKSyZPhzGvsRGV",
                          "normPartyName": "GONZALEZ CPA, A PROFESSIONAL CORPORATION",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 5,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCXCJQLts9fNSFnv",
                          "normPartyId": "NORGsPvTu5mmoCAtoR",
                          "normPartyName": "GONZALEZ L.L.C.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 5,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCXqfoMXTmMhx7q2",
                          "normPartyId": "NORGx9roHCHfQeyEPK",
                          "normPartyName": "GOMEZ A CONSTRUCTION INC.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 4,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRChgRmjPkYVxHHQt",
                          "normPartyId": "NORGCsfPNrfqPYq6vN",
                          "normPartyName": "NGUYEN ACCT SERVICES, INC.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 4,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCQkZZuoNo6iVYyw",
                          "normPartyId": "NORGDwPQFjinvxA6XS",
                          "normPartyName": "MARTINEZ L.L.C.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 4,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC7mxacJCSzvyvCZ",
                          "normPartyId": "NORGYevnGAWWENhEQ9",
                          "normPartyName": "HUNT & HENRIQUES, INC.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 4,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCJp2hjD38NoRMrh",
                          "normPartyId": "NORGkmC9CVAWhrBQtB",
                          "normPartyName": "MARTINEZ LLC",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 3,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCRwd3iGbjDu5nFX",
                          "normPartyId": "NORG2NgEP2PyjyQFEo",
                          "normPartyName": "MATTHEWS A SHARE SELECTIONS FUND, L.L.C.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 3,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCP2BeTrHqHddTBg",
                          "normPartyId": "NORG3bj7ZtTCEFizBe",
                          "normPartyName": "RODRIGUEZ INC.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 3,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCA3wsT5XvBxJpEU",
                          "normPartyId": "NORG5HcZg5bKLfFF3B",
                          "normPartyName": "MATTHEW F. KATES, M.D., INC.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 3,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC6sHojQT5AXe55C",
                          "normPartyId": "NORG9uxX8cmvnAqctn",
                          "normPartyName": "DR. MATTHEW MO, MD, A PROFESSIONAL CORPORATION",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 3,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCCAsZdz5AN3ftv8",
                          "normPartyId": "NORGAJGpzXHePcSPQV",
                          "normPartyName": "MATTHEW 25:31-46",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 3,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC2DEeE2iSTxHkJm",
                          "normPartyId": "NORGHwAbCFz8MAVr4J",
                          "normPartyName": "MARTINEZ, INC.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 3,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC4XY3LjiJ5RURY2",
                          "normPartyId": "NORGRUVsoERHH5ancf",
                          "normPartyName": "ANDERSONS, L.L.C.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 3,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCNYnSPkEBQ2MDVf",
                          "normPartyId": "NORGSJBkQEv9vK9g4y",
                          "normPartyName": "RODRIGUEZ, LLC, THE",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 3,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCJL92TMDyPduJUa",
                          "normPartyId": "NORGVPMrkKxx9QNcD7",
                          "normPartyName": "MATTHEW A LARDY CONSULTING, L.L.C.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 3,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCWsUUHPTpVP6TEP",
                          "normPartyId": "NORGXYekZe8BgWd6dD",
                          "normPartyName": "ANDERSON'S L.L.C.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 3,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCfsvQQuGsjQPAoT",
                          "normPartyId": "NORGbEnVMezCm8i5DX",
                          "normPartyName": "RODRIGUEZ, INC.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 3,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCTC8vVVaHFrKrwo",
                          "normPartyId": "NORGeabt4eAmqWonpq",
                          "normPartyName": "RODRIGUEZ, L.L.C.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 3,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC8gbtE742J2soYm",
                          "normPartyId": "NORGgcBZLUHKoWXrW2",
                          "normPartyName": "ANDERSON LLC, THE",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 3,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCCT7pFDgsc4yY3c",
                          "normPartyId": "NORGhi8bgftvMkw9y2",
                          "normPartyName": "MATTHEW 28",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 3,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC5px2SiyQLbNgss",
                          "normPartyId": "NORGr2U696Brj8xt8y",
                          "normPartyName": "ANDERSON AND SON",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 3,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCPowzdFHB36cc5D",
                          "normPartyId": "NORGwLeHJS74QKcRtu",
                          "normPartyName": "BAKER & A BLACK CAT, L.L.C.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 3,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCM9JcQVYdEZRJGY",
                          "normPartyId": "NORGwfULUUP9Q5TzjB",
                          "normPartyName": "RODRIGUEZ FLC",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCafQV6WckAc8GEF",
                          "normPartyId": "NORG48ouAebNYDxFiH",
                          "normPartyName": "FOSTER'S A L W",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCHtB2Px4BbAfVww",
                          "normPartyId": "NORG4M7arahRyUKGHA",
                          "normPartyName": "GORDON D. BAUMBACHER, M.D., INC., A PROFESSIONAL CORPORATION",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCbtgt2HPwikSoA3",
                          "normPartyId": "NORG4U3YwMiQoP4gm5",
                          "normPartyName": "ALVARADO 847, L.P.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC453M6mCAJoe5SK",
                          "normPartyId": "NORG6gMbQK5Q7Ernie",
                          "normPartyName": "FOSTER A DREAM, INC.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCPy7sWJTgjKKWTR",
                          "normPartyId": "NORG6t73ePvpy49Py4",
                          "normPartyName": "CAMPO (COALICION AGRICOLA DE MEMBRECIA PROFESIONAL OBRERA)",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCZemgfraa9Jdgq6",
                          "normPartyId": "NORG7ytiykkv7HTi4n",
                          "normPartyName": "CAYABYAB & WHITAKER, L.L.C.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCGqTT4tqALwUgec",
                          "normPartyId": "NORG8aMbPcQ65LKYRF",
                          "normPartyName": "FIGUEROA L.L.C.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCmFRoBTVQgEYJhs",
                          "normPartyId": "NORG9GnLVTmwwxWdMi",
                          "normPartyName": "TAYLOR WATT ELKHORN, L.P.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCBc3LRyKuZUYttZ",
                          "normPartyId": "NORG9ZUeafwTti9qEm",
                          "normPartyName": "SALGUERO CORPORATION",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCSXmdS5qBmegkjs",
                          "normPartyId": "NORGAGuPXrJqsMSkMc",
                          "normPartyName": "CASTILLO L.L.C.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCRWaeiW49dgGejU",
                          "normPartyId": "NORGB3VnBmyPMJ3hTt",
                          "normPartyName": "TAYLOR J",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCd4ooou2h7MRDFZ",
                          "normPartyId": "NORGCCepN3FETpLPJ6",
                          "normPartyName": "BRAVO A WINE AND GOURMET FOOD SOCIETY",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC5sCq8jSNGtmnrp",
                          "normPartyId": "NORGCXSPBMNiqef8T4",
                          "normPartyName": "MEDINA, L.P.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCLbMyoE6ANFetTd",
                          "normPartyId": "NORGCwFAJJYLisnwDS",
                          "normPartyName": "TAYLOR 800 K STREET PARTNERS, L.P.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCJD6996g85HonPX",
                          "normPartyId": "NORGH8goZm5iLtyXjD",
                          "normPartyName": "CERVANTES, INC.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCdnjczExDvzhs79",
                          "normPartyId": "NORGHE6unq2giMuRVR",
                          "normPartyName": "BLOCKER TRANSPORTATION",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCZSHYHTEysivJUU",
                          "normPartyId": "NORGHcYQaZ6oN8ksaQ",
                          "normPartyName": "VASQUEZ 1168",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCDwuHpP7GLZCKyg",
                          "normPartyId": "NORGJS5GssAFKDKmTB",
                          "normPartyName": "CERVANTES INC",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCVJWMMNb48b56Bn",
                          "normPartyId": "NORGJXRnDMXhB6VpQC",
                          "normPartyName": "TAYLOR 830 K STREET PARTNERS, L.P.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCZ2YwJDpGugXKqz",
                          "normPartyId": "NORGJXbJ52h5CRC9bc",
                          "normPartyName": "TAYLOR PRATT ASSOCIATES, INC.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC2zBL2cwZDaXzs6",
                          "normPartyId": "NORGKaEHuoyjGZfcN2",
                          "normPartyName": "CASTILLO'S L.L.C.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCHhKNXDXqig6ZY2",
                          "normPartyId": "NORGLcFQhB9wy5npQc",
                          "normPartyName": "HEDGEMON REAL L.L.C.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCkeWEbRT33zoCRY",
                          "normPartyId": "NORGM7v9W73EHHQ4EJ",
                          "normPartyName": "TAYLOR R.E.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCd8Qmvpw6krAEhQ",
                          "normPartyId": "NORGPvZEJfp6Ur8W2S",
                          "normPartyName": "GABRIEL A ALBANEZ, L.L.C.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCm7CfbMVePDXqii",
                          "normPartyId": "NORGQPN5R4XRPW29Wi",
                          "normPartyName": "VALDIVIA L.L.C.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCPcexPR7SXGGyCB",
                          "normPartyId": "NORGUi6yyNSqDVJc9c",
                          "normPartyName": "FOSTER A MIRACLE, INC.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCj9XV6qhq4y33ir",
                          "normPartyId": "NORGXEQLQyzi4DudWm",
                          "normPartyName": "NGUYEN MANAGEMENT COMPANY, INC.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCRXo3zjMLd6pPKg",
                          "normPartyId": "NORGY9UdQ6eaZVWRbn",
                          "normPartyName": "GORDON A GILKES, M.D., A MEDICAL CORPORATION",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCc5GKmVvwsxNLwZ",
                          "normPartyId": "NORGYSTVY8S9P8JnNo",
                          "normPartyName": "FIGUEROA, INC.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC4kwxXwNRv8VxKv",
                          "normPartyId": "NORGYdcL3RDHwg9xGK",
                          "normPartyName": "ALVARADO, INC.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCdSZwt43RToEw3v",
                          "normPartyId": "NORGcUAjUvDQZFAv3t",
                          "normPartyName": "ALVARADO INN",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCjHURtBzdLXpM6k",
                          "normPartyId": "NORGeJLQCESsYHTGsz",
                          "normPartyName": "COLEMAN, L.P.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCAMC2gdbMcu9Aks",
                          "normPartyId": "NORGebbfA7nShgJSrB",
                          "normPartyName": "FIGUEROA 7621, L.P.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCenLEJukfZ8eMy3",
                          "normPartyId": "NORGheA8UkmXHvLPer",
                          "normPartyName": "JASSO AND PARTNERS, L.L.C.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCTRPWMz8vzK7wga",
                          "normPartyId": "NORGi8bXPLKAEPXjpd",
                          "normPartyName": "HEDGEMON SC, L.L.C.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCJMBU9bJKZytxVV",
                          "normPartyId": "NORGjjrzFS732y24F7",
                          "normPartyName": "HEDGEMON L.L.C.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCimWhbsMoNuNQhi",
                          "normPartyId": "NORGkcCyeMDVjhAaBB",
                          "normPartyName": "SALGUERO'S ENTERPRISES, INC.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCNZ6XQzLSHM3XcC",
                          "normPartyId": "NORGkfb8hkNdAcMgea",
                          "normPartyName": "CERVANTES L.L.C.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCjArCTh2pxxhhXr",
                          "normPartyId": "NORGmVYuVzLUyHJeiK",
                          "normPartyName": "SALGUERO PALLETS, INC.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCCVzbA8w9Sx97Si",
                          "normPartyId": "NORGmbiiPKFMMATGYa",
                          "normPartyName": "SALGUERO TRUCKING L.L.C.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCTTZQswwVgqc23r",
                          "normPartyId": "NORGnF4eDHt8ZiAvoh",
                          "normPartyName": "TAYLOR 801 L STREET PARTNERS, L.P.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCcSaJXmhNVQ54he",
                          "normPartyId": "NORGpa44GAKWcftzAh",
                          "normPartyName": "VALDIVIA, INC.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCbnyNvMWcNbYvar",
                          "normPartyId": "NORGrdBBexSfLNp4Qg",
                          "normPartyName": "QUINTANILLA'S L.L.C.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCfmiquQSK2D4hct",
                          "normPartyId": "NORGrumLaUR76jVRgE",
                          "normPartyName": "RIVERA L.P.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRChbyQuryrWcdeCK",
                          "normPartyId": "NORGthAGRuU4soo5M6",
                          "normPartyName": "ALVARADO L.L.C.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCLg2ZEAZGR7XJZR",
                          "normPartyId": "NORGvq7pkRYH6svoNX",
                          "normPartyName": "CASTILLO'S, INC.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCGZULmEHJW9Bbtf",
                          "normPartyId": "NORGyWEaWM6fXkePYq",
                          "normPartyName": "CASTILLO, INC.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 2,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC4YbwVT9RzWkzGL",
                          "normPartyId": "NORGyfA6JRRXs8KLkp",
                          "normPartyName": "TAYLOR-HYATT COMPANY, INC.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCMpDZb39u7N6NvF",
                          "normPartyId": "NORG2CMeXAvCdpghps",
                          "normPartyName": "DOREN REAL ESTATE, L.P.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC8MgeKyW26ovHT7",
                          "normPartyId": "NORG2EQznnrEk5SH47",
                          "normPartyName": "BOARD AS A PLATFORM",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCPK5HRvFYhAJuiU",
                          "normPartyId": "NORG2TxsQ92VJaxkJ2",
                          "normPartyName": "ESTOQUE CAPITAL, L.L.C.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC8dBozEZ5jXgUrv",
                          "normPartyId": "NORG2bGxiHexYm3Yiz",
                          "normPartyName": "HAMPTON, A CALIFORNIA LIMITED PARTNERSHIP",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCipU3cpggJQvA8g",
                          "normPartyId": "NORG2bkX5nJ4viEAj2",
                          "normPartyName": "TOSTI, INC.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCX94N2pTNDKWrDT",
                          "normPartyId": "NORG2ivdq5RM9Vvm48",
                          "normPartyName": "STEPHANY L.L.C.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCAGqHwLma9kftX9",
                          "normPartyId": "NORG2mRFqUcT4x7jtA",
                          "normPartyName": "TURCIOS INC.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCPG86YHq5kysHD4",
                          "normPartyId": "NORG2pLJCSqG4vpfNJ",
                          "normPartyName": "BLACKARD'S DRILLING, INC.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCjmDspDd9GEcdPq",
                          "normPartyId": "NORG2xJKFTaRNJGQYw",
                          "normPartyName": "DON LEHMANN ENTERPRISES, INC.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC6hrEFdoCodqPMz",
                          "normPartyId": "NORG2zvvzhwbkVGBFa",
                          "normPartyName": "RUBALCAVA INDUSTRIES, INC.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCPNJvTqw6uzXGXD",
                          "normPartyId": "NORG36jtgRH8fmh5jN",
                          "normPartyName": "MORFIN'S TRAILER REPAIR INC.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCQwiNb8MSBzbGqC",
                          "normPartyId": "NORG3ANA8edwU4Uj3c",
                          "normPartyName": "SORROW ENTERTAINMENT, L.L.C.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCDygDTjABNLLezr",
                          "normPartyId": "NORG3CyERy7kFHz68V",
                          "normPartyName": "ALEXANDER, THE",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCo58R2TocbwN8Tf",
                          "normPartyId": "NORG3ErexR9Bit8hoU",
                          "normPartyName": "WINNIFRED BEACH, INC.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC7m9E4wgdMzkPVx",
                          "normPartyId": "NORG3G5zaddyYncsrv",
                          "normPartyName": "BONDOC CONSULTING, L.L.C.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRC7PwjA8DC6ZjdTa",
                          "normPartyId": "NORG3J9brVQUGX8KUP",
                          "normPartyName": "URIAS MOTORS INC.",
                          "object": "CaseCountAnalyticsByNormParty"
                        },
                        {
                          "caseCount": 1,
                          "caseSearchAPI": "https://enterpriseapi.unicourt.com/caseSearch/CSRCVBtoFxfuNomjGq",
                          "normPartyId": "NORG3K2KFYhGybfKjs",
                          "normPartyName": "HUONG AND TRAN, INC.",
                          "object": "CaseCountAnalyticsByNormParty"
                        }
                      ],
                      "totalCaseCount": 331,
                      "totalNormPartyCount": 692,
                      "totalPages": 7
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/CaseCountAnalyticsByNormPartyResponse"
                }
              }
            },
            "description": "OK"
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "sample400AnalyticsQuery": {
                    "value": {
                      "code": "UN400",
                      "details": "caseFiledDate is not in a required format",
                      "message": "INVALID_INPUT",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Bad Request"
          },
          "404": {
            "content": {
              "application/json": {
                "examples": {
                  "sample404AnalyticsQuery": {
                    "value": {
                      "code": "UN404",
                      "details": "caseTypeId not found",
                      "message": "RESOURCE_NOT_FOUND",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Not Found"
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "example-1": {
                    "value": {
                      "code": "UN500",
                      "details": "Has encountered a situation which needs to be handled.",
                      "message": "INTERNAL_SERVER_ERROR",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Internal Server Error"
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Case Count Analytics by Opposing Norm Party.",
        "tags": [
          "Case Analytics API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [
        {
          "description": "Norm ID of the Party.\n  - minimum: 18\n  - maximum: 18\n",
          "examples": {
            "HTTP200-sampleAnalyticsQuery": {
              "summary": "sampleAnalyticsQuery",
              "value": "NORGrPmQyLdx9NGHcT"
            },
            "HTTP400-sample400AnalyticsQuery": {
              "summary": "sample400AnalyticsQuery",
              "value": "NORGrPmQyLdx9NGHcT"
            },
            "HTTP404-sample404AnalyticsQuery": {
              "summary": "sample404AnalyticsQuery",
              "value": "NORGdiD1tdN8sFLi71"
            }
          },
          "in": "path",
          "name": "normPartyId",
          "required": true,
          "schema": {
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          }
        }
      ],
      "x-api-name": "CaseCountAnalyticsByOpposingNormPartyAPI",
      "x-unicourt-tag": "PartyAnalyticsAPIs"
    },
    "/normPartySearch": {
      "get": {
        "description": "### All query parameters supported for this API can be found in below schema section. Schema --> NormPartySearchQueryObject\n",
        "operationId": "searchNormalizedParties",
        "parameters": [
          {
            "description": "The URL encoded query you are searching for.\nThe query can be as simple as a keyword, but supports many additional options and filters.</a>\n",
            "examples": {
              "HTTP200-sampleSearchQuery": {
                "summary": "sampleSearchQuery",
                "value": "normPartyId:\"NORGJWPpNLekV7dKTm\""
              },
              "HTTP400-sampleSearchInvalidInputQuery": {
                "summary": "sampleSearchInvalidInputQuery",
                "value": "normPartyiId:\"NORGSCPx3qNeJiqye\""
              }
            },
            "in": "query",
            "name": "q",
            "schema": {
              "maxLength": 2000,
              "minLength": 3,
              "nullable": false,
              "type": "string"
            }
          },
          {
            "$ref": "#/components/parameters/pageParam"
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleSearchQuery": {
                    "summary": "sampleSearchQuery",
                    "value": {
                      "nextPageAPI": null,
                      "normPartySearchId": "PSRCUoacNCGj9ezvqf",
                      "normPartySearchResultArray": [
                        {
                          "firstFetchDate": "2023-02-16T13:12:34+00:00",
                          "lastFetchDate": "2023-02-16T13:12:34+00:00",
                          "matchedObjectArray": [
                            {
                              "highlightSnippet": "<b>NORGJWPpNLekV7dKTm</b>",
                              "matchedObjectAPI": "https://enterpriseapi.unicourt.com/normParty/NORGJWPpNLekV7dKTm",
                              "matchedObjectAttribute": "normPartyId",
                              "matchedObjectId": "NORGJWPpNLekV7dKTm",
                              "matchedObjectName": "NormParty",
                              "object": "MatchedObject"
                            }
                          ],
                          "name": "CAVALRY, L.L.C.",
                          "normPartyDetailsAPI": "https://enterpriseapi.unicourt.com/normParty/NORGJWPpNLekV7dKTm",
                          "normPartyId": "NORGJWPpNLekV7dKTm",
                          "object": "NormPartySearchResult",
                          "partyClassificationType": "BUSINESS"
                        }
                      ],
                      "object": "NormPartySearchResponse",
                      "pageNumber": 1,
                      "previousPageAPI": null,
                      "q": "normPartyId%3A%22NORGJWPpNLekV7dKTm%22",
                      "totalCount": 1,
                      "totalPages": 1
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/NormPartySearchResponse"
                }
              }
            },
            "description": "Success"
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleSearchInvalidInputQuery": {
                    "$ref": "#/components/examples/SAMPLE_SEARCH_INVALID_INPUT_QUERY"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Error"
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "INTERNAL_SERVER_ERROR": {
                    "$ref": "#/components/examples/INTERNAL_SERVER_ERROR"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Error"
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Party search.",
        "tags": [
          "Party Analytics API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [],
      "x-api-name": "NormalizedPartySearchAPI",
      "x-unicourt-tag": "PartyAnalyticsAPIs"
    },
    "/normPartySearch/{normPartySearchId}": {
      "get": {
        "description": "### All query parameters supported for this API can be found in below schema section. Schema --> NormPartySearchQueryObject\n",
        "operationId": "searchNormalizedPartiesById",
        "parameters": [
          {
            "$ref": "#/components/parameters/pageParam"
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleSearchQuery": {
                    "summary": "sampleSearchQuery",
                    "value": {
                      "nextPageAPI": null,
                      "normPartySearchId": "PSRCUoacNCGj9ezvqf",
                      "normPartySearchResultArray": [
                        {
                          "firstFetchDate": "2023-02-16T13:12:34+00:00",
                          "lastFetchDate": "2023-02-16T13:12:34+00:00",
                          "matchedObjectArray": [
                            {
                              "highlightSnippet": "<b>NORGJWPpNLekV7dKTm</b>",
                              "matchedObjectAPI": "https://enterpriseapi.unicourt.com/normParty/NORGJWPpNLekV7dKTm",
                              "matchedObjectAttribute": "normPartyId",
                              "matchedObjectId": "NORGJWPpNLekV7dKTm",
                              "matchedObjectName": "NormParty",
                              "object": "MatchedObject"
                            }
                          ],
                          "name": "CAVALRY, L.L.C.",
                          "normPartyDetailsAPI": "https://enterpriseapi.unicourt.com/normParty/NORGJWPpNLekV7dKTm",
                          "normPartyId": "NORGJWPpNLekV7dKTm",
                          "object": "NormPartySearchResult",
                          "partyClassificationType": "BUSINESS"
                        }
                      ],
                      "object": "NormPartySearchResponse",
                      "pageNumber": 1,
                      "previousPageAPI": null,
                      "q": "normPartyId%3A%22NORGJWPpNLekV7dKTm%22",
                      "totalCount": 1,
                      "totalPages": 1
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/NormPartySearchResponse"
                }
              }
            },
            "description": "Success"
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleInvalidPageNumberParam": {
                    "$ref": "#/components/examples/SAMPLE_SEARCH_INVALID_PAGE_NUMBER_PARAM"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Error"
          },
          "404": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleNotFoundResource": {
                    "value": {
                      "code": "UN404",
                      "details": "normPartySearchId resource you were looking for doesn't exist.",
                      "message": "RESOURCE_NOT_FOUND",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Returned if the resource is not found."
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "INTERNAL_SERVER_ERROR": {
                    "$ref": "#/components/examples/INTERNAL_SERVER_ERROR"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Error"
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Norm party search results for a given normPartySearchId.",
        "tags": [
          "Party Analytics API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [
        {
          "description": "Norm Party Search information for the given normPartySearchId.",
          "examples": {
            "HTTP200-sampleSearchQuery": {
              "summary": "sampleSearchQuery",
              "value": "PSRCUoacNCGj9ezvqf"
            },
            "HTTP400-sampleInvalidPageNumberParam": {
              "summary": "sampleInvalidPageNumberParam",
              "value": "PSRCUoacNCGj9ezvqf"
            },
            "HTTP404-sampleNotFoundResource": {
              "summary": "sampleNotFoundResource",
              "value": "PSRQ5n9Vq79t4iHXLp"
            }
          },
          "in": "path",
          "name": "normPartySearchId",
          "required": true,
          "schema": {
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          }
        }
      ],
      "x-api-name": "NormalizedPartySearchByIdAPI",
      "x-unicourt-tag": "PartyAnalyticsAPIs"
    },
    "/pacer/importCaseByCourtUsingCaseNumber": {
      "get": {
        "description": "Importing a Case in PACER using the court id and case number. \n\n\tWorkflow: \n\n\t\t1.This API will return the Find Case results from the court site in a form of array of UniCourt Case Objects. These case objects will consists only Meta information of the case if not already present in the UniCourt Database. \n\n\t\t2.To get the full updated case information one will have to request the caseUpdate API by passing the caseId. \n\n\tNote: \n\n\t\t1.Charges for Find Case in District, Bankruptcy and National Courts is free. Find case for Appeal Courts will be charged at minimum rate of $0.1. The fee charged by the court for find case can be found in the response of this API in the field courtFee. \n\n\t\t2.The results of the search has less Meta information in case objects compared to the Meta information of cases found using the PCL search APIs.",
        "operationId": "importPacerCaseByCourtUsingCaseNumber",
        "parameters": [
          {
            "description": "User ID or User Name of the PACER Account used while signing in to PACER.",
            "examples": {
              "HTTP200-PACERImportCase": {
                "summary": "PACERImportCase",
                "value": "john_doe"
              },
              "HTTP400-ClientCodeNotEntered": {
                "summary": "ClientCodeNotEntered",
                "value": "john_doe"
              },
              "HTTP400-InvalidCaseNumberFormat": {
                "summary": "InvalidCaseNumberFormat",
                "value": "john_doe"
              },
              "HTTP400-InvalidClientCodeEntered": {
                "summary": "InvalidClientCodeEntered",
                "value": "john_doe"
              },
              "HTTP400-InvalidClientCodeFormat": {
                "summary": "InvalidClientCodeFormat",
                "value": "john_doe"
              },
              "HTTP400-InvalidCourtIdFormat": {
                "summary": "InvalidPacerCaseIdFormat",
                "value": "john_doe"
              },
              "HTTP400-InvalidPacerUserIdFormat": {
                "summary": "InvalidPacerUserIdFormat",
                "value": "jo$12$hn_doe"
              },
              "HTTP400-InvalidPacerUserIdOrPassword": {
                "summary": "InvalidPacerUserIdOrPassword",
                "value": "john_doe"
              },
              "HTTP400-PacerAccountDisabled": {
                "summary": "PacerAccountDisabled",
                "value": "john_doe"
              },
              "HTTP400-PacerCredentialsNotFound": {
                "summary": "PacerCredentialsNotFound",
                "value": "john_doe"
              },
              "HTTP400-PasswordIsNotMinLength": {
                "summary": "PasswordIsNotMinLength",
                "value": "john_doe"
              },
              "HTTP400-TooManyLoginAttempts": {
                "summary": "TooManyLoginAttempts",
                "value": "john_doe"
              },
              "HTTP400-UsernameIsNotMinLength": {
                "summary": "UsernameIsNotMinLength",
                "value": "john_doe"
              }
            },
            "in": "query",
            "name": "pacerUserId",
            "required": true,
            "schema": {
              "example": "johndoe",
              "maxLength": 20,
              "minLength": 6,
              "nullable": false,
              "type": "string"
            }
          },
          {
            "description": "Client Code used while signing in to PACER account.",
            "examples": {
              "HTTP200-PACERImportCase": {
                "summary": "PACERImportCase",
                "value": "john"
              },
              "HTTP400-ClientCodeNotEntered": {
                "summary": "ClientCodeNotEntered",
                "value": ""
              },
              "HTTP400-InvalidCaseNumberFormat": {
                "summary": "InvalidCaseNumberFormat",
                "value": "john"
              },
              "HTTP400-InvalidClientCodeEntered": {
                "summary": "InvalidClientCodeEntered",
                "value": "john"
              },
              "HTTP400-InvalidClientCodeFormat": {
                "summary": "InvalidClientCodeFormat",
                "value": "jo$12$hn"
              },
              "HTTP400-InvalidCourtIdFormat": {
                "summary": "InvalidPacerCaseIdFormat",
                "value": "john"
              },
              "HTTP400-InvalidPacerUserIdFormat": {
                "summary": "InvalidPacerUserIdFormat",
                "value": "john"
              },
              "HTTP400-InvalidPacerUserIdOrPassword": {
                "summary": "InvalidPacerUserIdOrPassword",
                "value": "john"
              },
              "HTTP400-PacerAccountDisabled": {
                "summary": "PacerAccountDisabled",
                "value": "john"
              },
              "HTTP400-PacerCredentialsNotFound": {
                "summary": "PacerCredentialsNotFound",
                "value": "john"
              },
              "HTTP400-PasswordIsNotMinLength": {
                "summary": "PasswordIsNotMinLength",
                "value": "john"
              },
              "HTTP400-TooManyLoginAttempts": {
                "summary": "TooManyLoginAttempts",
                "value": "john"
              },
              "HTTP400-UsernameIsNotMinLength": {
                "summary": "UsernameIsNotMinLength",
                "value": "john"
              }
            },
            "in": "query",
            "name": "pacerClientCode",
            "required": true,
            "schema": {
              "example": "john",
              "maxLength": 32,
              "minLength": 1,
              "nullable": false,
              "type": "string"
            }
          },
          {
            "description": "Case Number which you would like to Find in PACER site and import it to UniCourt.",
            "examples": {
              "HTTP200-PACERImportCase": {
                "summary": "PACERImportCase",
                "value": "2:15-mc-12345"
              },
              "HTTP400-ClientCodeNotEntered": {
                "summary": "ClientCodeNotEntered",
                "value": "2:15-mc-12345"
              },
              "HTTP400-InvalidCaseNumberFormat": {
                "summary": "InvalidCaseNumberFormat",
                "value": "NEW-12-1245"
              },
              "HTTP400-InvalidClientCodeEntered": {
                "summary": "InvalidClientCodeEntered",
                "value": "2:15-mc-12345"
              },
              "HTTP400-InvalidClientCodeFormat": {
                "summary": "InvalidClientCodeFormat",
                "value": "2:15-mc-12345"
              },
              "HTTP400-InvalidCourtIdFormat": {
                "summary": "InvalidPacerCaseIdFormat",
                "value": "2:15-mc-12345"
              },
              "HTTP400-InvalidPacerUserIdFormat": {
                "summary": "InvalidPacerUserIdFormat",
                "value": "2:15-mc-12345"
              },
              "HTTP400-InvalidPacerUserIdOrPassword": {
                "summary": "InvalidPacerUserIdOrPassword",
                "value": "2:15-mc-12345"
              },
              "HTTP400-PacerAccountDisabled": {
                "summary": "PacerAccountDisabled",
                "value": "2:15-mc-12345"
              },
              "HTTP400-PacerCredentialsNotFound": {
                "summary": "PacerCredentialsNotFound",
                "value": "2:15-mc-12345"
              },
              "HTTP400-PasswordIsNotMinLength": {
                "summary": "PasswordIsNotMinLength",
                "value": "2:15-mc-12345"
              },
              "HTTP400-TooManyLoginAttempts": {
                "summary": "TooManyLoginAttempts",
                "value": "2:15-mc-12345"
              },
              "HTTP400-UsernameIsNotMinLength": {
                "summary": "UsernameIsNotMinLength",
                "value": "2:15-mc-12345"
              }
            },
            "in": "query",
            "name": "caseNumber",
            "required": true,
            "schema": {
              "example": "2:15-mc-12345",
              "maxLength": 50,
              "minLength": 3,
              "nullable": false,
              "type": "string"
            }
          },
          {
            "description": "Court Id of the Case number being provided.",
            "examples": {
              "HTTP200-PACERImportCase": {
                "summary": "PACERImportCase",
                "value": "CORTjF63b8Z4d2i9UB"
              },
              "HTTP400-ClientCodeNotEntered": {
                "summary": "ClientCodeNotEntered",
                "value": "CORTjF63b8Z4d2i9UB"
              },
              "HTTP400-InvalidCaseNumberFormat": {
                "summary": "InvalidCaseNumberFormat",
                "value": "CORTjF63b8Z4d2i9UB"
              },
              "HTTP400-InvalidClientCodeEntered": {
                "summary": "InvalidClientCodeEntered",
                "value": "CORTjF63b8Z4d2i9UB"
              },
              "HTTP400-InvalidClientCodeFormat": {
                "summary": "InvalidClientCodeFormat",
                "value": "CORTjF63b8Z4d2i9UB"
              },
              "HTTP400-InvalidCourtIdFormat": {
                "summary": "InvalidPacerCaseIdFormat",
                "value": "CDDTzxHBpbPa1psRkL"
              },
              "HTTP400-InvalidPacerUserIdFormat": {
                "summary": "InvalidPacerUserIdFormat",
                "value": "CORTjF63b8Z4d2i9UB"
              },
              "HTTP400-InvalidPacerUserIdOrPassword": {
                "summary": "InvalidPacerUserIdOrPassword",
                "value": "CORTjF63b8Z4d2i9UB"
              },
              "HTTP400-PacerAccountDisabled": {
                "summary": "PacerAccountDisabled",
                "value": "CORTjF63b8Z4d2i9UB"
              },
              "HTTP400-PacerCredentialsNotFound": {
                "summary": "PacerCredentialsNotFound",
                "value": "CORTjF63b8Z4d2i9UB"
              },
              "HTTP400-PasswordIsNotMinLength": {
                "summary": "PasswordIsNotMinLength",
                "value": "CORTjF63b8Z4d2i9UB"
              },
              "HTTP400-TooManyLoginAttempts": {
                "summary": "TooManyLoginAttempts",
                "value": "CORTjF63b8Z4d2i9UB"
              },
              "HTTP400-UsernameIsNotMinLength": {
                "summary": "UsernameIsNotMinLength",
                "value": "CORTjF63b8Z4d2i9UB"
              }
            },
            "in": "query",
            "name": "courtId",
            "required": true,
            "schema": {
              "maxLength": 18,
              "minLength": 18,
              "nullable": false,
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "PACERImportCase": {
                    "$ref": "#/components/examples/PACERImportCase"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/PACERImportCase"
                }
              }
            },
            "description": "The request is recieved."
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "ClientCodeNotEntered": {
                    "$ref": "#/components/examples/FailurePacerClientCodeNotEntered"
                  },
                  "InvalidCaseNumberFormat": {
                    "$ref": "#/components/examples/FailurePCLInvalidCaseNumberFormat"
                  },
                  "InvalidClientCodeEntered": {
                    "$ref": "#/components/examples/FailureInvalidClientCode"
                  },
                  "InvalidClientCodeFormat": {
                    "$ref": "#/components/examples/FailureClientCodeIsInvalid"
                  },
                  "InvalidCourtIdFormat": {
                    "$ref": "#/components/examples/FailurePCLInvalidCourtIdFormat"
                  },
                  "InvalidPacerUserIdFormat": {
                    "$ref": "#/components/examples/FailurePacerUserIdIsInvalid"
                  },
                  "InvalidPacerUserIdOrPassword": {
                    "$ref": "#/components/examples/FailurePacerUserIdOrPassword"
                  },
                  "PacerAccountDisabled": {
                    "$ref": "#/components/examples/FailurePacerAccountDisabled"
                  },
                  "PacerCredentialsNotFound": {
                    "$ref": "#/components/examples/FailurePacerCredentialsNotFound"
                  },
                  "PasswordIsNotMinLength": {
                    "$ref": "#/components/examples/FailurePasswordIsNotMinLength"
                  },
                  "TooManyLoginAttempts": {
                    "$ref": "#/components/examples/FailureTooManyLoginAttempts"
                  },
                  "UsernameIsNotMinLength": {
                    "$ref": "#/components/examples/FailureUsernameIsNotMinLength"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Invalid Input Parameter"
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "ServerError": {
                    "$ref": "#/components/examples/FailureServerError"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Server Error"
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Find PACER Case for a requested Case Number and Court.",
        "tags": [
          "PACER API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [],
      "x-api-name": "PACERImportCaseByCourtUsingCaseNumberAPI",
      "x-unicourt-tag": "PACERAPIs"
    },
    "/pacerCaseLocator/caseSearch/allCourts": {
      "get": {
        "description": "PACER Case Locator Case Search API for All Courts.",
        "operationId": "AllCourtsPacerCaseLocatorCaseSearch",
        "parameters": [
          {
            "description": "User ID or User Name of the PACER Account used while signing in to PACER.",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": "john_doe"
              },
              "HTTP400-CaseTitleValidation": {
                "summary": "CaseTitleValidation",
                "value": "john_doe"
              },
              "HTTP400-ClientCodeNotEntered": {
                "summary": "ClientCodeNotEntered",
                "value": "john_doe"
              },
              "HTTP400-InvalidCaseNumberFormat": {
                "summary": "InvalidCaseNumberFormat",
                "value": "john_doe"
              },
              "HTTP400-InvalidCaseOfficeFormat": {
                "summary": "InvalidCaseOfficeFormat",
                "value": "john_doe"
              },
              "HTTP400-InvalidCaseSequenceNumberFormat": {
                "summary": "InvalidCaseSequenceNumberFormat",
                "value": "john_doe"
              },
              "HTTP400-InvalidCaseStatus": {
                "summary": "InvalidCaseStatus",
                "value": "john_doe"
              },
              "HTTP400-InvalidCaseType": {
                "summary": "InvalidCaseType",
                "value": "john_doe"
              },
              "HTTP400-InvalidCaseYearFormat": {
                "summary": "InvalidCaseYearFormat",
                "value": "john_doe"
              },
              "HTTP400-InvalidClientCodeEntered": {
                "summary": "InvalidClientCodeEntered",
                "value": "john_doe"
              },
              "HTTP400-InvalidCourtRegionId": {
                "summary": "InvalidCourtRegionId",
                "value": "john_doe"
              },
              "HTTP400-InvalidPacerCaseIdFormat": {
                "summary": "InvalidPacerCaseIdFormat",
                "value": "john_doe"
              },
              "HTTP400-InvalidPacerUserIdOrPassword": {
                "summary": "InvalidPacerUserIdOrPassword",
                "value": "john_doe"
              },
              "HTTP400-InvalidQueryParameters": {
                "summary": "InvalidQueryParameters",
                "value": "john_doe"
              },
              "HTTP400-InvalidSortQuery": {
                "summary": "InvalidSortQuery",
                "value": "john_doe"
              },
              "HTTP400-InvalidSortQueryFormat": {
                "summary": "InvalidSortQueryFormat",
                "value": "john_doe"
              },
              "HTTP400-InvalidStartAndEndFiledDate": {
                "summary": "InvalidStartAndEndFiledDate",
                "value": "john_doe"
              },
              "HTTP400-InvalidStartAndEndTerminatedDate": {
                "summary": "InvalidStartAndEndTerminatedDate",
                "value": "john_doe"
              },
              "HTTP400-PacerAccountDisabled": {
                "summary": "PacerAccountDisabled",
                "value": "john_doe"
              },
              "HTTP400-PacerCredentialsNotFound": {
                "summary": "PacerCredentialsNotFound",
                "value": "john_doe"
              },
              "HTTP400-PageNumberParameterNotPassed": {
                "summary": "PageNumberParameterNotPassed",
                "value": "john_doe"
              },
              "HTTP400-PasswordIsNotMinLength": {
                "summary": "PasswordIsNotMinLength",
                "value": "john_doe"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": "john_doe"
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": "john$doe123"
              },
              "HTTP400-RequestedPageNumberIsInvalid": {
                "summary": "RequestedPageNumberIsInvalid",
                "value": "john_doe"
              },
              "HTTP400-RequiredCaseSearchValidation": {
                "summary": "RequiredCaseSearchValidation",
                "value": "john_doe"
              },
              "HTTP400-TooManyLoginAttempts": {
                "summary": "TooManyLoginAttempts",
                "value": "john_doe"
              },
              "HTTP400-UsernameIsNotMinLength": {
                "summary": "UsernameIsNotMinLength",
                "value": "john_doe"
              }
            },
            "in": "query",
            "name": "pacerUserId",
            "required": true,
            "schema": {
              "example": "johndoe",
              "maxLength": 20,
              "minLength": 6,
              "nullable": false,
              "type": "string"
            }
          },
          {
            "description": "Client Code used while signing in to PACER account.",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": "john"
              },
              "HTTP400-CaseTitleValidation": {
                "summary": "CaseTitleValidation",
                "value": "john"
              },
              "HTTP400-ClientCodeNotEntered": {
                "summary": "ClientCodeNotEntered",
                "value": "john"
              },
              "HTTP400-InvalidCaseNumberFormat": {
                "summary": "InvalidCaseNumberFormat",
                "value": "john"
              },
              "HTTP400-InvalidCaseOfficeFormat": {
                "summary": "InvalidCaseOfficeFormat",
                "value": "john"
              },
              "HTTP400-InvalidCaseSequenceNumberFormat": {
                "summary": "InvalidCaseSequenceNumberFormat",
                "value": "john"
              },
              "HTTP400-InvalidCaseStatus": {
                "summary": "InvalidCaseStatus",
                "value": "john"
              },
              "HTTP400-InvalidCaseType": {
                "summary": "InvalidCaseType",
                "value": "john"
              },
              "HTTP400-InvalidCaseYearFormat": {
                "summary": "InvalidCaseYearFormat",
                "value": "john"
              },
              "HTTP400-InvalidClientCodeEntered": {
                "summary": "InvalidClientCodeEntered",
                "value": "john"
              },
              "HTTP400-InvalidCourtRegionId": {
                "summary": "InvalidCourtRegionId",
                "value": "john"
              },
              "HTTP400-InvalidPacerCaseIdFormat": {
                "summary": "InvalidPacerCaseIdFormat",
                "value": "john"
              },
              "HTTP400-InvalidPacerUserIdOrPassword": {
                "summary": "InvalidPacerUserIdOrPassword",
                "value": "john"
              },
              "HTTP400-InvalidQueryParameters": {
                "summary": "InvalidQueryParameters",
                "value": "john"
              },
              "HTTP400-InvalidSortQuery": {
                "summary": "InvalidSortQuery",
                "value": "john"
              },
              "HTTP400-InvalidSortQueryFormat": {
                "summary": "InvalidSortQueryFormat",
                "value": "john"
              },
              "HTTP400-InvalidStartAndEndFiledDate": {
                "summary": "InvalidStartAndEndFiledDate",
                "value": "john"
              },
              "HTTP400-InvalidStartAndEndTerminatedDate": {
                "summary": "InvalidStartAndEndTerminatedDate",
                "value": "john"
              },
              "HTTP400-PacerAccountDisabled": {
                "summary": "PacerAccountDisabled",
                "value": "john"
              },
              "HTTP400-PacerCredentialsNotFound": {
                "summary": "PacerCredentialsNotFound",
                "value": "john"
              },
              "HTTP400-PageNumberParameterNotPassed": {
                "summary": "PageNumberParameterNotPassed",
                "value": "john"
              },
              "HTTP400-PasswordIsNotMinLength": {
                "summary": "PasswordIsNotMinLength",
                "value": "john"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": "john$123_doe"
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": "john"
              },
              "HTTP400-RequestedPageNumberIsInvalid": {
                "summary": "RequestedPageNumberIsInvalid",
                "value": "john"
              },
              "HTTP400-RequiredCaseSearchValidation": {
                "summary": "RequiredCaseSearchValidation",
                "value": "john"
              },
              "HTTP400-TooManyLoginAttempts": {
                "summary": "TooManyLoginAttempts",
                "value": "john"
              },
              "HTTP400-UsernameIsNotMinLength": {
                "summary": "UsernameIsNotMinLength",
                "value": "john"
              }
            },
            "in": "query",
            "name": "pacerClientCode",
            "required": true,
            "schema": {
              "example": "john",
              "maxLength": 32,
              "minLength": 1,
              "nullable": false,
              "type": "string"
            }
          },
          {
            "description": "If the court type is selected as All or if you need data for a specific case number format, then you need to use this option. Case numbers may be entered in each of the following formats: \n\n\tyy-nnnnn \n\n\tyy-tp-nnnnn \n\n\tyy tp nnnnn \n\n\tyytpnnnnn \n\n\to:yy-nnnnn \n\n\to:yy-tp-nnnnn \n\n\to:yy tp nnnnn \n\n\to:yytpnnnnn \n\nwhere: \n\nyy  case year (may be 2 or 4 digits) \n\nnnnnn  case number (up to 5 digits) \n\ntp  case type (up to 2 characters) \n\no  office where the case was filed (1 digit).",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": "21-119"
              },
              "HTTP400-CaseTitleValidation": {
                "summary": "CaseTitleValidation",
                "value": "12-256"
              },
              "HTTP400-InvalidCaseNumberFormat": {
                "summary": "InvalidCaseNumberFormat",
                "value": "12-256-WDR"
              },
              "HTTP400-InvalidCaseOfficeFormat": {
                "summary": "InvalidCaseOfficeFormat",
                "value": "12-256"
              },
              "HTTP400-InvalidCaseSequenceNumberFormat": {
                "summary": "InvalidCaseSequenceNumberFormat",
                "value": "12-256"
              },
              "HTTP400-InvalidCaseStatus": {
                "summary": "InvalidCaseStatus",
                "value": "12-256"
              },
              "HTTP400-InvalidCaseType": {
                "summary": "InvalidCaseType",
                "value": "12-256"
              },
              "HTTP400-InvalidCaseYearFormat": {
                "summary": "InvalidCaseYearFormat",
                "value": "12-256"
              },
              "HTTP400-InvalidCourtRegionId": {
                "summary": "InvalidCourtRegionId",
                "value": "12-256"
              },
              "HTTP400-InvalidPacerCaseIdFormat": {
                "summary": "InvalidPacerCaseIdFormat",
                "value": "12-256"
              },
              "HTTP400-InvalidQueryParameters": {
                "summary": "InvalidQueryParameters",
                "value": "12-256"
              },
              "HTTP400-InvalidSortQuery": {
                "summary": "InvalidSortQuery",
                "value": "12-256"
              },
              "HTTP400-InvalidSortQueryFormat": {
                "summary": "InvalidSortQueryFormat",
                "value": "12-256"
              },
              "HTTP400-InvalidStartAndEndFiledDate": {
                "summary": "InvalidStartAndEndFiledDate",
                "value": "12-256"
              },
              "HTTP400-InvalidStartAndEndTerminatedDate": {
                "summary": "InvalidStartAndEndTerminatedDate",
                "value": "12-256"
              },
              "HTTP400-PageNumberParameterNotPassed": {
                "summary": "PageNumberParameterNotPassed",
                "value": "12-256"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": "12-256"
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": "12-256"
              },
              "HTTP400-RequestedPageNumberIsInvalid": {
                "summary": "RequestedPageNumberIsInvalid",
                "value": "12-256"
              },
              "HTTP400-RequiredCaseSearchValidation": {
                "summary": "RequiredCaseSearchValidation",
                "value": null
              }
            },
            "in": "query",
            "name": "caseNumber",
            "schema": {
              "example": "12-1234",
              "maxLength": 50,
              "minLength": 3,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "Sequentially generated number that identifies the case in PACER system.",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": 17118
              },
              "HTTP400-CaseTitleValidation": {
                "summary": "CaseTitleValidation",
                "value": 256
              },
              "HTTP400-InvalidCaseNumberFormat": {
                "summary": "InvalidCaseNumberFormat",
                "value": 256
              },
              "HTTP400-InvalidCaseOfficeFormat": {
                "summary": "InvalidCaseOfficeFormat",
                "value": 256
              },
              "HTTP400-InvalidCaseSequenceNumberFormat": {
                "summary": "InvalidCaseSequenceNumberFormat",
                "value": 256
              },
              "HTTP400-InvalidCaseStatus": {
                "summary": "InvalidCaseStatus",
                "value": 256
              },
              "HTTP400-InvalidCaseType": {
                "summary": "InvalidCaseType",
                "value": 256
              },
              "HTTP400-InvalidCaseYearFormat": {
                "summary": "InvalidCaseYearFormat",
                "value": 256
              },
              "HTTP400-InvalidCourtRegionId": {
                "summary": "InvalidCourtRegionId",
                "value": 256
              },
              "HTTP400-InvalidPacerCaseIdFormat": {
                "summary": "InvalidPacerCaseIdFormat",
                "value": "pacer"
              },
              "HTTP400-InvalidQueryParameters": {
                "summary": "InvalidQueryParameters",
                "value": 256
              },
              "HTTP400-InvalidSortQuery": {
                "summary": "InvalidSortQuery",
                "value": 256
              },
              "HTTP400-InvalidSortQueryFormat": {
                "summary": "InvalidSortQueryFormat",
                "value": 256
              },
              "HTTP400-InvalidStartAndEndFiledDate": {
                "summary": "InvalidStartAndEndFiledDate",
                "value": 256
              },
              "HTTP400-InvalidStartAndEndTerminatedDate": {
                "summary": "InvalidStartAndEndTerminatedDate",
                "value": 256
              },
              "HTTP400-PageNumberParameterNotPassed": {
                "summary": "PageNumberParameterNotPassed",
                "value": 256
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": 256
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": 256
              },
              "HTTP400-RequestedPageNumberIsInvalid": {
                "summary": "RequestedPageNumberIsInvalid",
                "value": 256
              }
            },
            "in": "query",
            "name": "pacerCaseId",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "You can search using the case name even if you know one party. \n\n\tExamples: \n\n\tA search for case title john doe v will result in all cases with the case title John Doe v. \n\n\tA search for case title Acme, Inc. will result in all case titles starting with Acme, Inc.",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": null
              },
              "HTTP400-CaseTitleValidation": {
                "summary": "CaseTitleValidation",
                "value": "A"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseTitle",
            "schema": {
              "maxLength": 255,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "The divisional office in which the case was filed.",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": null
              },
              "HTTP400-InvalidCaseOfficeFormat": {
                "summary": "InvalidCaseOfficeFormat",
                "value": "cv"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseOffice",
            "schema": {
              "maxLength": 1,
              "type": "integer"
            }
          },
          {
            "description": "The sequence number of a given case. Ex 12345",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": null
              },
              "HTTP400-InvalidCaseSequenceNumberFormat": {
                "summary": "InvalidCaseSequenceNumberFormat",
                "value": "12-256"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseSequenceNumber",
            "schema": {
              "maxLength": 6,
              "type": "integer"
            }
          },
          {
            "description": "The two digits or four digits of the year in which the case was filed.",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": null
              },
              "HTTP400-InvalidCaseYearFormat": {
                "summary": "InvalidCaseYearFormat",
                "value": 2012
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseYear",
            "schema": {
              "maxLength": 4,
              "nullable": true,
              "type": "integer"
            }
          },
          {
            "description": "Search can be narrowed down by passing caseTypes. Please use the <a href='https://docs.unicourt.com/pacer-glossary/appendix-a-case-types'>APPENDIX A: Case Types</a> mentioned in the API Documentation. \n\n\tScenario: When mulitple case types needs to be requested. \n\n\tImagine for a given case number 12-1234 I would like to search only with the case type civil(cv) and criminal(cr), My query in the request will look like the example mentioned below. \n\n\tExample: caseTypeArray=cv&caseTypeArray=cr",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": null
              },
              "HTTP400-InvalidCaseType": {
                "summary": "InvalidCaseType",
                "value": 1234
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseTypeArray",
            "schema": {
              "items": {
                "maxLength": 255,
                "nullable": true,
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "Search can be narrowed down by passing courtRegionId. Please use the <a href='https://docs.unicourt.com/pacer-glossary/appendix-b-court-regions'>APPENDIX B: Court Regions</a> mentioned in the API Documentation. \n\n\tScenario: When mulitple court region ids needs to be requested. \n\n\tImagine for a given case number 12-1234 I would like to search in the court regions California Central (cac) and California Eastern (cae), My query in the request will look like the example mentioned below. \n\n\tExample: courtRegionIdArray=cac&courtRegionIdArray=cae",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": null
              },
              "HTTP400-InvalidCourtRegionId": {
                "summary": "InvalidCourtRegionId",
                "value": "civil"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "courtRegionIdArray",
            "schema": {
              "items": {
                "maxLength": 255,
                "nullable": true,
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "Narrowing the search by limiting the cases which matches the criteria for case filed start date on or after the given date. Format: YYYY-MM-DDTHH:MM:SS+ZZ:zz, Ex: 2017-12-20T12:54:24+00:00",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": null
              },
              "HTTP400-InvalidStartAndEndFiledDate": {
                "summary": "InvalidStartAndEndFiledDate",
                "value": "2012-12-20T12:54:24+00:00"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseFiledStartDate",
            "schema": {
              "format": "date-time",
              "maxLength": 25,
              "minLength": 25,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "Narrowing the search by limiting the cases which matches the criteria for case filed end date on or before the given date. Format: YYYY-MM-DDTHH:MM:SS+ZZ:zz, Ex: 2017-12-20T12:54:24+00:00",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": null
              },
              "HTTP400-InvalidStartAndEndFiledDate": {
                "summary": "InvalidStartAndEndFiledDate",
                "value": "2012-12-19T12:54:24+00:00"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseFiledEndDate",
            "schema": {
              "format": "date-time",
              "maxLength": 25,
              "minLength": 25,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "Narrowing the search by limiting the cases which matches the criteria for case terminated start date on or after the given date. Format: YYYY-MM-DDTHH:MM:SS+ZZ:zz, Ex: 2017-12-20T12:54:24+00:00",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": null
              },
              "HTTP400-InvalidStartAndEndTerminatedDate": {
                "summary": "InvalidStartAndEndTerminatedDate",
                "value": "2017-12-20T12:54:24+00:00"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseTerminatedStartDate",
            "schema": {
              "format": "date-time",
              "maxLength": 25,
              "minLength": 25,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "Narrowing the search by limiting the cases which matches the criteria for case terminated end date on or before the given date. Format: YYYY-MM-DDTHH:MM:SS+ZZ:zz, Ex: 2017-12-20T12:54:24+00:00",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": null
              },
              "HTTP400-InvalidStartAndEndTerminatedDate": {
                "summary": "InvalidStartAndEndTerminatedDate",
                "value": "2017-12-19T12:54:24+00:00"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseTerminatedEndDate",
            "schema": {
              "format": "date-time",
              "maxLength": 25,
              "minLength": 25,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "The criteria based on which the search results are to be sorted. Please use the <a href='https://docs.unicourt.com/pacer-glossary/appendix-c-sort-parameter'>APPENDIX C: Sort Parameter - Sortable Case Parameters</a> mentioned in the API Documentation. The fields can be sorted either ASC or DESC. \n\n\tScenario: When mulitple sort paramters needs to be requested. \n\n\tImagine for a given case number 12-1234 I would like to sort the results in the Ascending order of courtId and caseId, My query in the request will look like the example mentioned below. \n\n\tExample: sortParameterQuery=courtId,ASC&caseId,ASC",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": null
              },
              "HTTP400-InvalidSortQuery": {
                "summary": "InvalidSortQuery",
                "value": "sort=caseYear"
              },
              "HTTP400-InvalidSortQueryFormat": {
                "summary": "InvalidSortQueryFormat",
                "value": "[sort=caseYear,DESC]"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "sortParameterQuery",
            "schema": {
              "default": "sort=caseYear,DESC",
              "maxLength": 100,
              "minLength": 5,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "Status of a case. 'closed' for a Terminated case, 'open' for Pending cases. If this parameter is not sent both cases that fall in open and closed will be queried.",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": null
              },
              "HTTP400-InvalidCaseStatus": {
                "summary": "InvalidCaseStatus",
                "value": "all"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseStatus",
            "schema": {
              "enum": [
                "open",
                "closed"
              ],
              "maxLength": 100,
              "minLength": 3,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "Page Number for a given Job ID or for the search your going to make.",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": 1
              },
              "HTTP400-CaseTitleValidation": {
                "summary": "CaseTitleValidation",
                "value": 1
              },
              "HTTP400-InvalidCaseNumberFormat": {
                "summary": "InvalidCaseNumberFormat",
                "value": 1
              },
              "HTTP400-InvalidCaseOfficeFormat": {
                "summary": "InvalidCaseOfficeFormat",
                "value": 1
              },
              "HTTP400-InvalidCaseSequenceNumberFormat": {
                "summary": "InvalidCaseSequenceNumberFormat",
                "value": 1
              },
              "HTTP400-InvalidCaseStatus": {
                "summary": "InvalidCaseStatus",
                "value": 1
              },
              "HTTP400-InvalidCaseType": {
                "summary": "InvalidCaseType",
                "value": 1
              },
              "HTTP400-InvalidCaseYearFormat": {
                "summary": "InvalidCaseYearFormat",
                "value": 1
              },
              "HTTP400-InvalidCourtRegionId": {
                "summary": "InvalidCourtRegionId",
                "value": 1
              },
              "HTTP400-InvalidPacerCaseIdFormat": {
                "summary": "InvalidPacerCaseIdFormat",
                "value": 1
              },
              "HTTP400-InvalidQueryParameters": {
                "summary": "InvalidQueryParameters",
                "value": 1
              },
              "HTTP400-InvalidSortQuery": {
                "summary": "InvalidSortQuery",
                "value": 1
              },
              "HTTP400-InvalidSortQueryFormat": {
                "summary": "InvalidSortQueryFormat",
                "value": 1
              },
              "HTTP400-InvalidStartAndEndFiledDate": {
                "summary": "InvalidStartAndEndFiledDate",
                "value": 1
              },
              "HTTP400-InvalidStartAndEndTerminatedDate": {
                "summary": "InvalidStartAndEndTerminatedDate",
                "value": 1
              },
              "HTTP400-PageNumberParameterNotPassed": {
                "summary": "PageNumberParameterNotPassed",
                "value": null
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": 1
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": 1
              },
              "HTTP400-RequestedPageNumberIsInvalid": {
                "summary": "RequestedPageNumberIsInvalid",
                "value": "one"
              },
              "HTTP400-RequiredCaseSearchValidation": {
                "summary": "RequiredCaseSearchValidation",
                "value": 1
              }
            },
            "in": "query",
            "name": "pageNumber",
            "schema": {
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "PCLCase": {
                    "$ref": "#/components/examples/PCLCase"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/PCLCase"
                }
              }
            },
            "description": "The request is recieved."
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "CaseTitleValidation": {
                    "$ref": "#/components/examples/FailurePCLCaseTitleValidation"
                  },
                  "ClientCodeNotEntered": {
                    "$ref": "#/components/examples/FailurePacerClientCodeNotEntered"
                  },
                  "InvalidCaseNumberFormat": {
                    "$ref": "#/components/examples/FailurePCLInvalidCaseNumberFormat"
                  },
                  "InvalidCaseOfficeFormat": {
                    "$ref": "#/components/examples/FailurePCLInvalidCaseOffice"
                  },
                  "InvalidCaseSequenceNumberFormat": {
                    "$ref": "#/components/examples/FailurePCLInvalidCaseSequenceNumber"
                  },
                  "InvalidCaseStatus": {
                    "$ref": "#/components/examples/FailureInvalidCaseStatus"
                  },
                  "InvalidCaseType": {
                    "$ref": "#/components/examples/FailureInvalidCaseType"
                  },
                  "InvalidCaseYearFormat": {
                    "$ref": "#/components/examples/FailurePCLInvalidCaseYear"
                  },
                  "InvalidCourtRegionId": {
                    "$ref": "#/components/examples/FailureInvalidCourtRegionId"
                  },
                  "InvalidPacerUserIdOrPassword": {
                    "$ref": "#/components/examples/FailurePacerUserIdOrPassword"
                  },
                  "InvalidSortQuery": {
                    "$ref": "#/components/examples/FailureInvalidSortParameterPassed"
                  },
                  "InvalidSortQueryFormat": {
                    "$ref": "#/components/examples/FailureInvalidSortParameterQueryFormat"
                  },
                  "InvalidStartAndEndFiledDate": {
                    "$ref": "#/components/examples/FailurePCLCaseFiledDateValidation"
                  },
                  "InvalidStartAndEndTerminatedDate": {
                    "$ref": "#/components/examples/FailurePCLCaseTerminatedDateValidation"
                  },
                  "PacerAccountDisabled": {
                    "$ref": "#/components/examples/FailurePacerAccountDisabled"
                  },
                  "PacerCredentialsNotFound": {
                    "$ref": "#/components/examples/FailurePacerCredentialsNotFound"
                  },
                  "PageNumberParameterNotPassed": {
                    "$ref": "#/components/examples/FailurePageNumberIdNotPassed"
                  },
                  "RequestedClientCodeIsInvalid": {
                    "$ref": "#/components/examples/FailureClientCodeIsInvalid"
                  },
                  "RequestedPacerUserIdIsInvalid": {
                    "$ref": "#/components/examples/FailurePacerUserIdIsInvalid"
                  },
                  "RequestedPageNumberIsInvalid": {
                    "$ref": "#/components/examples/FailureInvalidPageNumber"
                  },
                  "RequiredCaseSearchValidation": {
                    "$ref": "#/components/examples/FailurePCLRequiredFieldCaseSearch"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Invalid Input Parameter"
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "ServerError": {
                    "$ref": "#/components/examples/FailureServerError"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Server Error"
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "PACER Case Locator Search API for All Courts.",
        "tags": [
          "PACER API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [],
      "x-api-name": "PCLCaseAllCourtsAPI",
      "x-unicourt-tag": "PACERAPIs"
    },
    "/pacerCaseLocator/caseSearch/appealCourts": {
      "get": {
        "description": "PACER Case Locator Case Search API for Appeal Courts.",
        "operationId": "AppealCourtsPacerCaseLocatorCaseSearch",
        "parameters": [
          {
            "description": "User ID or User Name of the PACER Account used while signing in to PACER.",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": "john_doe"
              },
              "HTTP400-CaseTitleValidation": {
                "summary": "CaseTitleValidation",
                "value": "john_doe"
              },
              "HTTP400-ClientCodeNotEntered": {
                "summary": "ClientCodeNotEntered",
                "value": "john_doe"
              },
              "HTTP400-InvalidCaseNumberFormat": {
                "summary": "InvalidCaseNumberFormat",
                "value": "john_doe"
              },
              "HTTP400-InvalidCaseOfficeFormat": {
                "summary": "InvalidCaseOfficeFormat",
                "value": "john_doe"
              },
              "HTTP400-InvalidCaseSequenceNumberFormat": {
                "summary": "InvalidCaseSequenceNumberFormat",
                "value": "john_doe"
              },
              "HTTP400-InvalidCaseStatus": {
                "summary": "InvalidCaseStatus",
                "value": "john_doe"
              },
              "HTTP400-InvalidCaseType": {
                "summary": "InvalidCaseType",
                "value": "john_doe"
              },
              "HTTP400-InvalidCaseYearFormat": {
                "summary": "InvalidCaseYearFormat",
                "value": "john_doe"
              },
              "HTTP400-InvalidClientCodeEntered": {
                "summary": "InvalidClientCodeEntered",
                "value": "john_doe"
              },
              "HTTP400-InvalidCourtRegionId": {
                "summary": "InvalidCourtRegionId",
                "value": "john_doe"
              },
              "HTTP400-InvalidPacerCaseIdFormat": {
                "summary": "InvalidPacerCaseIdFormat",
                "value": "john_doe"
              },
              "HTTP400-InvalidPacerUserIdOrPassword": {
                "summary": "InvalidPacerUserIdOrPassword",
                "value": "john_doe"
              },
              "HTTP400-InvalidQueryParameters": {
                "summary": "InvalidQueryParameters",
                "value": "john_doe"
              },
              "HTTP400-InvalidSortQuery": {
                "summary": "InvalidSortQuery",
                "value": "john_doe"
              },
              "HTTP400-InvalidSortQueryFormat": {
                "summary": "InvalidSortQueryFormat",
                "value": "john_doe"
              },
              "HTTP400-InvalidStartAndEndFiledDate": {
                "summary": "InvalidStartAndEndFiledDate",
                "value": "john_doe"
              },
              "HTTP400-InvalidStartAndEndTerminatedDate": {
                "summary": "InvalidStartAndEndTerminatedDate",
                "value": "john_doe"
              },
              "HTTP400-PacerAccountDisabled": {
                "summary": "PacerAccountDisabled",
                "value": "john_doe"
              },
              "HTTP400-PacerCredentialsNotFound": {
                "summary": "PacerCredentialsNotFound",
                "value": "john_doe"
              },
              "HTTP400-PageNumberParameterNotPassed": {
                "summary": "PageNumberParameterNotPassed",
                "value": "john_doe"
              },
              "HTTP400-PasswordIsNotMinLength": {
                "summary": "PasswordIsNotMinLength",
                "value": "john_doe"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": "john_doe"
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": "john$doe123"
              },
              "HTTP400-RequestedPageNumberIsInvalid": {
                "summary": "RequestedPageNumberIsInvalid",
                "value": "john_doe"
              },
              "HTTP400-RequiredCaseSearchValidation": {
                "summary": "RequiredCaseSearchValidation",
                "value": "john_doe"
              },
              "HTTP400-TooManyLoginAttempts": {
                "summary": "TooManyLoginAttempts",
                "value": "john_doe"
              },
              "HTTP400-UsernameIsNotMinLength": {
                "summary": "UsernameIsNotMinLength",
                "value": "john_doe"
              }
            },
            "in": "query",
            "name": "pacerUserId",
            "required": true,
            "schema": {
              "example": "johndoe",
              "maxLength": 20,
              "minLength": 6,
              "nullable": false,
              "type": "string"
            }
          },
          {
            "description": "Client Code used while signing in to PACER account.",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": "john"
              },
              "HTTP400-CaseTitleValidation": {
                "summary": "CaseTitleValidation",
                "value": "john"
              },
              "HTTP400-ClientCodeNotEntered": {
                "summary": "ClientCodeNotEntered",
                "value": "john"
              },
              "HTTP400-InvalidCaseNumberFormat": {
                "summary": "InvalidCaseNumberFormat",
                "value": "john"
              },
              "HTTP400-InvalidCaseOfficeFormat": {
                "summary": "InvalidCaseOfficeFormat",
                "value": "john"
              },
              "HTTP400-InvalidCaseSequenceNumberFormat": {
                "summary": "InvalidCaseSequenceNumberFormat",
                "value": "john"
              },
              "HTTP400-InvalidCaseStatus": {
                "summary": "InvalidCaseStatus",
                "value": "john"
              },
              "HTTP400-InvalidCaseType": {
                "summary": "InvalidCaseType",
                "value": "john"
              },
              "HTTP400-InvalidCaseYearFormat": {
                "summary": "InvalidCaseYearFormat",
                "value": "john"
              },
              "HTTP400-InvalidClientCodeEntered": {
                "summary": "InvalidClientCodeEntered",
                "value": "john"
              },
              "HTTP400-InvalidCourtRegionId": {
                "summary": "InvalidCourtRegionId",
                "value": "john"
              },
              "HTTP400-InvalidPacerCaseIdFormat": {
                "summary": "InvalidPacerCaseIdFormat",
                "value": "john"
              },
              "HTTP400-InvalidPacerUserIdOrPassword": {
                "summary": "InvalidPacerUserIdOrPassword",
                "value": "john"
              },
              "HTTP400-InvalidQueryParameters": {
                "summary": "InvalidQueryParameters",
                "value": "john"
              },
              "HTTP400-InvalidSortQuery": {
                "summary": "InvalidSortQuery",
                "value": "john"
              },
              "HTTP400-InvalidSortQueryFormat": {
                "summary": "InvalidSortQueryFormat",
                "value": "john"
              },
              "HTTP400-InvalidStartAndEndFiledDate": {
                "summary": "InvalidStartAndEndFiledDate",
                "value": "john"
              },
              "HTTP400-InvalidStartAndEndTerminatedDate": {
                "summary": "InvalidStartAndEndTerminatedDate",
                "value": "john"
              },
              "HTTP400-PacerAccountDisabled": {
                "summary": "PacerAccountDisabled",
                "value": "john"
              },
              "HTTP400-PacerCredentialsNotFound": {
                "summary": "PacerCredentialsNotFound",
                "value": "john"
              },
              "HTTP400-PageNumberParameterNotPassed": {
                "summary": "PageNumberParameterNotPassed",
                "value": "john"
              },
              "HTTP400-PasswordIsNotMinLength": {
                "summary": "PasswordIsNotMinLength",
                "value": "john"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": "john$123"
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": "john"
              },
              "HTTP400-RequestedPageNumberIsInvalid": {
                "summary": "RequestedPageNumberIsInvalid",
                "value": "john"
              },
              "HTTP400-RequiredCaseSearchValidation": {
                "summary": "RequiredCaseSearchValidation",
                "value": "john"
              },
              "HTTP400-TooManyLoginAttempts": {
                "summary": "TooManyLoginAttempts",
                "value": "john"
              },
              "HTTP400-UsernameIsNotMinLength": {
                "summary": "UsernameIsNotMinLength",
                "value": "john"
              }
            },
            "in": "query",
            "name": "pacerClientCode",
            "required": true,
            "schema": {
              "example": "john",
              "maxLength": 32,
              "minLength": 1,
              "nullable": false,
              "type": "string"
            }
          },
          {
            "description": "If the court type is selected as All or if you need data for a specific case number format, then you need to use this option. Case numbers may be entered in each of the following formats: \n\n\tyy-nnnnn  \n\nwhere: \n\nyy  case year (may be 2 or 4 digits) \n\nnnnnn  case number (up to 5 digits).",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": "07-1026"
              },
              "HTTP400-CaseTitleValidation": {
                "summary": "CaseTitleValidation",
                "value": "12-256"
              },
              "HTTP400-InvalidCaseNumberFormat": {
                "summary": "InvalidCaseNumberFormat",
                "value": "12-256-WDR"
              },
              "HTTP400-InvalidCaseOfficeFormat": {
                "summary": "InvalidCaseOfficeFormat",
                "value": "12-256"
              },
              "HTTP400-InvalidCaseSequenceNumberFormat": {
                "summary": "InvalidCaseSequenceNumberFormat",
                "value": "12-256"
              },
              "HTTP400-InvalidCaseStatus": {
                "summary": "InvalidCaseStatus",
                "value": "12-256"
              },
              "HTTP400-InvalidCaseType": {
                "summary": "InvalidCaseType",
                "value": "12-256"
              },
              "HTTP400-InvalidCaseYearFormat": {
                "summary": "InvalidCaseYearFormat",
                "value": "12-256"
              },
              "HTTP400-InvalidCourtRegionId": {
                "summary": "InvalidCourtRegionId",
                "value": "12-256"
              },
              "HTTP400-InvalidNatureOfSuit": {
                "summary": "InvalidNatureOfSuit",
                "value": "12-256"
              },
              "HTTP400-InvalidPacerCaseIdFormat": {
                "summary": "InvalidPacerCaseIdFormat",
                "value": "12-256"
              },
              "HTTP400-InvalidQueryParameters": {
                "summary": "InvalidQueryParameters",
                "value": "12-256"
              },
              "HTTP400-InvalidSortQuery": {
                "summary": "InvalidSortQuery",
                "value": "12-256"
              },
              "HTTP400-InvalidSortQueryFormat": {
                "summary": "InvalidSortQueryFormat",
                "value": "12-256"
              },
              "HTTP400-InvalidStartAndEndFiledDate": {
                "summary": "InvalidStartAndEndFiledDate",
                "value": "12-256"
              },
              "HTTP400-InvalidStartAndEndTerminatedDate": {
                "summary": "InvalidStartAndEndTerminatedDate",
                "value": "12-256"
              },
              "HTTP400-PageNumberParameterNotPassed": {
                "summary": "PageNumberParameterNotPassed",
                "value": "12-256"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": "12-256"
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": "12-256"
              },
              "HTTP400-RequestedPageNumberIsInvalid": {
                "summary": "RequestedPageNumberIsInvalid",
                "value": "12-256"
              },
              "HTTP400-RequiredCaseSearchValidation": {
                "summary": "RequiredCaseSearchValidation",
                "value": null
              }
            },
            "in": "query",
            "name": "caseNumber",
            "schema": {
              "example": "12-1234",
              "maxLength": 50,
              "minLength": 3,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "Sequentially generated number that identifies the case in PACER system.",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": null
              },
              "HTTP400-CaseTitleValidation": {
                "summary": "CaseTitleValidation",
                "value": 256
              },
              "HTTP400-InvalidCaseNumberFormat": {
                "summary": "InvalidCaseNumberFormat",
                "value": 256
              },
              "HTTP400-InvalidCaseOfficeFormat": {
                "summary": "InvalidCaseOfficeFormat",
                "value": 256
              },
              "HTTP400-InvalidCaseSequenceNumberFormat": {
                "summary": "InvalidCaseSequenceNumberFormat",
                "value": 256
              },
              "HTTP400-InvalidCaseStatus": {
                "summary": "InvalidCaseStatus",
                "value": 256
              },
              "HTTP400-InvalidCaseType": {
                "summary": "InvalidCaseType",
                "value": 256
              },
              "HTTP400-InvalidCaseYearFormat": {
                "summary": "InvalidCaseYearFormat",
                "value": 256
              },
              "HTTP400-InvalidCourtRegionId": {
                "summary": "InvalidCourtRegionId",
                "value": 256
              },
              "HTTP400-InvalidNatureOfSuit": {
                "summary": "InvalidNatureOfSuit",
                "value": 256
              },
              "HTTP400-InvalidPacerCaseIdFormat": {
                "summary": "InvalidPacerCaseIdFormat",
                "value": "pacer"
              },
              "HTTP400-InvalidQueryParameters": {
                "summary": "InvalidQueryParameters",
                "value": 256
              },
              "HTTP400-InvalidSortQuery": {
                "summary": "InvalidSortQuery",
                "value": 256
              },
              "HTTP400-InvalidSortQueryFormat": {
                "summary": "InvalidSortQueryFormat",
                "value": 256
              },
              "HTTP400-InvalidStartAndEndFiledDate": {
                "summary": "InvalidStartAndEndFiledDate",
                "value": 256
              },
              "HTTP400-InvalidStartAndEndTerminatedDate": {
                "summary": "InvalidStartAndEndTerminatedDate",
                "value": 256
              },
              "HTTP400-PageNumberParameterNotPassed": {
                "summary": "PageNumberParameterNotPassed",
                "value": 256
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": 256
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": 256
              },
              "HTTP400-RequestedPageNumberIsInvalid": {
                "summary": "RequestedPageNumberIsInvalid",
                "value": 256
              }
            },
            "in": "query",
            "name": "pacerCaseId",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "You can search using the case name even if you know one party. \n\n\tExamples: \n\n\tA search for case title john doe v will result in all cases with the case title John Doe v. \n\n\tA search for case title Acme, Inc. will result in all case titles starting with Acme, Inc.",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": null
              },
              "HTTP400-CaseTitleValidation": {
                "summary": "CaseTitleValidation",
                "value": "A"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedPageNumberIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseTitle",
            "schema": {
              "maxLength": 255,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "The divisional office in which the case was filed.",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": null
              },
              "HTTP400-InvalidCaseOfficeFormat": {
                "summary": "InvalidCaseOfficeFormat",
                "value": "cv"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseOffice",
            "schema": {
              "maxLength": 1,
              "nullable": true,
              "type": "integer"
            }
          },
          {
            "description": "The sequence number of a given case. Ex 12345",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": null
              },
              "HTTP400-InvalidCaseSequenceNumberFormat": {
                "summary": "InvalidCaseSequenceNumberFormat",
                "value": "12-256"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseSequenceNumber",
            "schema": {
              "maxLength": 6,
              "type": "integer"
            }
          },
          {
            "description": "The two digits or four digits of the year in which the case was filed.",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": null
              },
              "HTTP400-InvalidCaseYearFormat": {
                "summary": "InvalidCaseYearFormat",
                "value": 2012
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseYear",
            "schema": {
              "maxLength": 4,
              "type": "integer"
            }
          },
          {
            "description": "Search can be narrowed down by passing caseTypes. Please use the <a href='https://docs.unicourt.com/pacer-glossary/appendix-a-case-types'>APPENDIX A: Case Types</a> mentioned in the API Documentation. \n\n\tScenario: When mulitple case types needs to be requested. \n\n\tImagine for a given case number 12-1234 I would like to search only with the case type civil(cv) and criminal(cr), My query in the request will look like the example mentioned below. \n\n\tExample: caseTypeArray=cv&caseTypeArray=cr",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": null
              },
              "HTTP400-InvalidCaseType": {
                "summary": "InvalidCaseType",
                "value": 1234
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseTypeArray",
            "schema": {
              "items": {
                "maxLength": 255,
                "nullable": true,
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "Search can be narrowed down by passing Nature Of Suits. Please use the <a href='https://docs.unicourt.com/pacer-glossary/appendix-e-nature-of-suits'>APPENDIX E - Appellate Nature Of Suits</a> mentioned in the API Documentation. \n\n\tScenario: When mulitple nature of suits needs to be requested. \n\n\tImagine for a given case number 12-1234 I would like to search with the nature of suit 1110 (Insurance) and 1150 (Overpayments & Enforc. of Judgments), My query in the request will look like the example mentioned below. \n\n\tExample: natureOfSuitsArray=1110&natureOfSuitsArray=1150",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": null
              },
              "HTTP400-InvalidNatureOfSuit": {
                "summary": "InvalidNatureOfSuit",
                "value": "appeal"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "natureOfSuitsArray",
            "schema": {
              "items": {
                "maxLength": 255,
                "nullable": true,
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "Search can be narrowed down by passing courtRegionId. Please use the <a href='https://docs.unicourt.com/pacer-glossary/appendix-b-court-regions'>APPENDIX B: Court Regions</a> mentioned in the API Documentation. \n\n\tScenario: When mulitple court region ids needs to be requested. \n\n\tImagine for a given case number 12-1234 I would like to search in the court regions California Central (cac) and California Eastern (cae), My query in the request will look like the example mentioned below. \n\n\tExample: courtRegionIdArray=cac&courtRegionIdArray=cae",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": null
              },
              "HTTP400-InvalidCourtRegionId": {
                "summary": "InvalidCourtRegionId",
                "value": "civil"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "courtRegionIdArray",
            "schema": {
              "items": {
                "maxLength": 255,
                "nullable": true,
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "Narrowing the search by limiting the cases which matches the criteria for case filed start date on or after the given date. Format: YYYY-MM-DDTHH:MM:SS+ZZ:zz, Ex: 2017-12-20T12:54:24+00:00",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": null
              },
              "HTTP400-InvalidStartAndEndFiledDate": {
                "summary": "InvalidStartAndEndFiledDate",
                "value": "2012-12-20T12:54:24+00:00"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseFiledStartDate",
            "schema": {
              "format": "date-time",
              "maxLength": 25,
              "minLength": 25,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "Narrowing the search by limiting the cases which matches the criteria for case filed end date on or before the given date. Format: YYYY-MM-DDTHH:MM:SS+ZZ:zz, Ex: 2017-12-20T12:54:24+00:00",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": null
              },
              "HTTP400-InvalidStartAndEndFiledDate": {
                "summary": "InvalidStartAndEndFiledDate",
                "value": "2012-12-19T12:54:24+00:00"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseFiledEndDate",
            "schema": {
              "format": "date-time",
              "maxLength": 25,
              "minLength": 25,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "Narrowing the search by limiting the cases which matches the criteria for case terminated start date on or after the given date. Format: YYYY-MM-DDTHH:MM:SS+ZZ:zz, Ex: 2017-12-20T12:54:24+00:00",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": null
              },
              "HTTP400-InvalidStartAndEndTerminatedDate": {
                "summary": "InvalidStartAndEndTerminatedDate",
                "value": "2017-12-20T12:54:24+00:00"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseTerminatedStartDate",
            "schema": {
              "format": "date-time",
              "maxLength": 25,
              "minLength": 25,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "Narrowing the search by limiting the cases which matches the criteria for case terminated end date on or before the given date. Format: YYYY-MM-DDTHH:MM:SS+ZZ:zz, Ex: 2017-12-20T12:54:24+00:00",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": null
              },
              "HTTP400-InvalidStartAndEndTerminatedDate": {
                "summary": "InvalidStartAndEndTerminatedDate",
                "value": "2017-12-19T12:54:24+00:00"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseTerminatedEndDate",
            "schema": {
              "format": "date-time",
              "maxLength": 25,
              "minLength": 25,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "The criteria based on which the search results are to be sorted. Please use the <a href='https://docs.unicourt.com/pacer-glossary/appendix-c-sort-parameter'>APPENDIX C: Sort Parameter - Sortable Case Parameters</a> mentioned in the API Documentation. The fields can be sorted either ASC or DESC. \n\n\tScenario: When mulitple sort paramters needs to be requested. \n\n\tImagine for a given case number 12-1234 I would like to sort the results in the Ascending order of courtId and caseId, My query in the request will look like the example mentioned below. \n\n\tExample: sortParameterQuery=courtId,ASC&caseId,ASC",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": null
              },
              "HTTP400-InvalidSortQuery": {
                "summary": "InvalidSortQuery",
                "value": "sort=caseYear"
              },
              "HTTP400-InvalidSortQueryFormat": {
                "summary": "InvalidSortQueryFormat",
                "value": "[sort=caseYear,DESC]"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "sortParameterQuery",
            "schema": {
              "default": "sort=caseYear,DESC",
              "maxLength": 100,
              "minLength": 5,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "Status of a case. 'closed' for a Terminated case, 'open' for Pending cases. If this parameter is not sent both cases that fall in open and closed will be queried.",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": null
              },
              "HTTP400-InvalidCaseStatus": {
                "summary": "InvalidCaseStatus",
                "value": "all"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseStatus",
            "schema": {
              "enum": [
                "open",
                "closed"
              ],
              "maxLength": 100,
              "minLength": 3,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "Page Number for a given Job ID or for the search your going to make.",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": 1
              },
              "HTTP400-CaseTitleValidation": {
                "summary": "CaseTitleValidation",
                "value": 1
              },
              "HTTP400-InvalidCaseNumberFormat": {
                "summary": "InvalidCaseNumberFormat",
                "value": 1
              },
              "HTTP400-InvalidCaseOfficeFormat": {
                "summary": "InvalidCaseOfficeFormat",
                "value": 1
              },
              "HTTP400-InvalidCaseSequenceNumberFormat": {
                "summary": "InvalidCaseSequenceNumberFormat",
                "value": 1
              },
              "HTTP400-InvalidCaseStatus": {
                "summary": "InvalidCaseStatus",
                "value": 1
              },
              "HTTP400-InvalidCaseType": {
                "summary": "InvalidCaseType",
                "value": 1
              },
              "HTTP400-InvalidCaseYearFormat": {
                "summary": "InvalidCaseYearFormat",
                "value": 1
              },
              "HTTP400-InvalidCourtRegionId": {
                "summary": "InvalidCourtRegionId",
                "value": 1
              },
              "HTTP400-InvalidNatureOfSuit": {
                "summary": "InvalidNatureOfSuit",
                "value": "appeal"
              },
              "HTTP400-InvalidPacerCaseIdFormat": {
                "summary": "InvalidPacerCaseIdFormat",
                "value": 1
              },
              "HTTP400-InvalidQueryParameters": {
                "summary": "InvalidQueryParameters",
                "value": 1
              },
              "HTTP400-InvalidSortQuery": {
                "summary": "InvalidSortQuery",
                "value": 1
              },
              "HTTP400-InvalidSortQueryFormat": {
                "summary": "InvalidSortQueryFormat",
                "value": 1
              },
              "HTTP400-InvalidStartAndEndFiledDate": {
                "summary": "InvalidStartAndEndFiledDate",
                "value": 1
              },
              "HTTP400-InvalidStartAndEndTerminatedDate": {
                "summary": "InvalidStartAndEndTerminatedDate",
                "value": 1
              },
              "HTTP400-PageNumberParameterNotPassed": {
                "summary": "PageNumberParameterNotPassed",
                "value": null
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": 1
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": 1
              },
              "HTTP400-RequestedPageNumberIsInvalid": {
                "summary": "RequestedPageNumberIsInvalid",
                "value": "one"
              },
              "HTTP400-RequiredCaseSearchValidation": {
                "summary": "RequiredCaseSearchValidation",
                "value": 1
              }
            },
            "in": "query",
            "name": "pageNumber",
            "schema": {
              "example": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "PCLCase": {
                    "$ref": "#/components/examples/PCLCase"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/PCLCase"
                }
              }
            },
            "description": "The request is recieved."
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "CaseTitleValidation": {
                    "$ref": "#/components/examples/FailurePCLCaseTitleValidation"
                  },
                  "ClientCodeNotEntered": {
                    "$ref": "#/components/examples/FailurePacerClientCodeNotEntered"
                  },
                  "InvalidCaseNumberFormat": {
                    "$ref": "#/components/examples/FailurePCLInvalidCaseNumberFormatForAppeal"
                  },
                  "InvalidCaseOfficeFormat": {
                    "$ref": "#/components/examples/FailurePCLInvalidCaseOffice"
                  },
                  "InvalidCaseSequenceNumberFormat": {
                    "$ref": "#/components/examples/FailurePCLInvalidCaseSequenceNumber"
                  },
                  "InvalidCaseStatus": {
                    "$ref": "#/components/examples/FailureInvalidCaseStatus"
                  },
                  "InvalidCaseType": {
                    "$ref": "#/components/examples/FailureInvalidCaseType"
                  },
                  "InvalidCaseYearFormat": {
                    "$ref": "#/components/examples/FailurePCLInvalidCaseYear"
                  },
                  "InvalidCourtRegionId": {
                    "$ref": "#/components/examples/FailureInvalidCourtRegionId"
                  },
                  "InvalidNatureOfSuit": {
                    "$ref": "#/components/examples/FailureInvalidNatureOfSuitAppeal"
                  },
                  "InvalidPacerUserIdOrPassword": {
                    "$ref": "#/components/examples/FailurePacerUserIdOrPassword"
                  },
                  "InvalidSortQuery": {
                    "$ref": "#/components/examples/FailureInvalidSortParameterPassed"
                  },
                  "InvalidSortQueryFormat": {
                    "$ref": "#/components/examples/FailureInvalidSortParameterQueryFormat"
                  },
                  "InvalidStartAndEndFiledDate": {
                    "$ref": "#/components/examples/FailurePCLCaseFiledDateValidation"
                  },
                  "InvalidStartAndEndTerminatedDate": {
                    "$ref": "#/components/examples/FailurePCLCaseTerminatedDateValidation"
                  },
                  "PacerAccountDisabled": {
                    "$ref": "#/components/examples/FailurePacerAccountDisabled"
                  },
                  "PacerCredentialsNotFound": {
                    "$ref": "#/components/examples/FailurePacerCredentialsNotFound"
                  },
                  "PageNumberParameterNotPassed": {
                    "$ref": "#/components/examples/FailurePageNumberIdNotPassed"
                  },
                  "RequestedClientCodeIsInvalid": {
                    "$ref": "#/components/examples/FailureClientCodeIsInvalid"
                  },
                  "RequestedPacerUserIdIsInvalid": {
                    "$ref": "#/components/examples/FailurePacerUserIdIsInvalid"
                  },
                  "RequestedPageNumberIsInvalid": {
                    "$ref": "#/components/examples/FailureInvalidPageNumber"
                  },
                  "RequiredCaseSearchValidation": {
                    "$ref": "#/components/examples/FailurePCLRequiredFieldCaseSearch"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Invalid Input Parameter"
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "ServerError": {
                    "$ref": "#/components/examples/FailureServerError"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Server Error"
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "PACER Case Locator Search API for All Courts.",
        "tags": [
          "PACER API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [],
      "x-api-name": "PCLCaseAppealCourtsAPI",
      "x-unicourt-tag": "PACERAPIs"
    },
    "/pacerCaseLocator/caseSearch/bankruptcyCourts": {
      "get": {
        "description": "PACER Case Locator Case Search API for Bankruptcy Courts.",
        "operationId": "BankruptcyCourtsPacerCaseLocatorCaseSearch",
        "parameters": [
          {
            "description": "User ID or User Name of the PACER Account used while signing in to PACER.",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": "john_doe"
              },
              "HTTP400-CaseTitleValidation": {
                "summary": "CaseTitleValidation",
                "value": "john_doe"
              },
              "HTTP400-ClientCodeNotEntered": {
                "summary": "ClientCodeNotEntered",
                "value": "john_doe"
              },
              "HTTP400-InvalidCaseNumberFormat": {
                "summary": "InvalidCaseNumberFormat",
                "value": "john_doe"
              },
              "HTTP400-InvalidCaseOfficeFormat": {
                "summary": "InvalidCaseOfficeFormat",
                "value": "john_doe"
              },
              "HTTP400-InvalidCaseSequenceNumberFormat": {
                "summary": "InvalidCaseSequenceNumberFormat",
                "value": "john_doe"
              },
              "HTTP400-InvalidCaseStatus": {
                "summary": "InvalidCaseStatus",
                "value": "john_doe"
              },
              "HTTP400-InvalidCaseType": {
                "summary": "InvalidCaseType",
                "value": "john_doe"
              },
              "HTTP400-InvalidCaseYearFormat": {
                "summary": "InvalidCaseYearFormat",
                "value": "john_doe"
              },
              "HTTP400-InvalidClientCodeEntered": {
                "summary": "InvalidClientCodeEntered",
                "value": "john_doe"
              },
              "HTTP400-InvalidCourtRegionId": {
                "summary": "InvalidCourtRegionId",
                "value": "john_doe"
              },
              "HTTP400-InvalidPacerCaseIdFormat": {
                "summary": "InvalidPacerCaseIdFormat",
                "value": "john_doe"
              },
              "HTTP400-InvalidPacerUserIdOrPassword": {
                "summary": "InvalidPacerUserIdOrPassword",
                "value": "john_doe"
              },
              "HTTP400-InvalidQueryParameters": {
                "summary": "InvalidQueryParameters",
                "value": "john_doe"
              },
              "HTTP400-InvalidSortQuery": {
                "summary": "InvalidSortQuery",
                "value": "john_doe"
              },
              "HTTP400-InvalidSortQueryFormat": {
                "summary": "InvalidSortQueryFormat",
                "value": "john_doe"
              },
              "HTTP400-InvalidStartAndEndFiledDate": {
                "summary": "InvalidStartAndEndFiledDate",
                "value": "john_doe"
              },
              "HTTP400-InvalidStartAndEndTerminatedDate": {
                "summary": "InvalidStartAndEndTerminatedDate",
                "value": "john_doe"
              },
              "HTTP400-PacerAccountDisabled": {
                "summary": "PacerAccountDisabled",
                "value": "john_doe"
              },
              "HTTP400-PacerCredentialsNotFound": {
                "summary": "PacerCredentialsNotFound",
                "value": "john_doe"
              },
              "HTTP400-PageNumberParameterNotPassed": {
                "summary": "PageNumberParameterNotPassed",
                "value": "john_doe"
              },
              "HTTP400-PasswordIsNotMinLength": {
                "summary": "PasswordIsNotMinLength",
                "value": "john_doe"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": "john_doe"
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": "john$doe123"
              },
              "HTTP400-RequestedPageNumberIsInvalid": {
                "summary": "RequestedPageNumberIsInvalid",
                "value": "john_doe"
              },
              "HTTP400-RequiredCaseSearchValidation": {
                "summary": "RequiredCaseSearchValidation",
                "value": "john_doe"
              },
              "HTTP400-TooManyLoginAttempts": {
                "summary": "TooManyLoginAttempts",
                "value": "john_doe"
              },
              "HTTP400-UsernameIsNotMinLength": {
                "summary": "UsernameIsNotMinLength",
                "value": "john_doe"
              }
            },
            "in": "query",
            "name": "pacerUserId",
            "required": true,
            "schema": {
              "example": "johndoe",
              "maxLength": 20,
              "minLength": 6,
              "nullable": false,
              "type": "string"
            }
          },
          {
            "description": "Client Code used while signing in to PACER account.",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": "john"
              },
              "HTTP400-CaseTitleValidation": {
                "summary": "CaseTitleValidation",
                "value": "john"
              },
              "HTTP400-InvalidCaseNumberFormat": {
                "summary": "InvalidCaseNumberFormat",
                "value": "john"
              },
              "HTTP400-InvalidCaseOfficeFormat": {
                "summary": "InvalidCaseOfficeFormat",
                "value": "john"
              },
              "HTTP400-InvalidCaseSequenceNumberFormat": {
                "summary": "InvalidCaseSequenceNumberFormat",
                "value": "john"
              },
              "HTTP400-InvalidCaseStatus": {
                "summary": "InvalidCaseStatus",
                "value": "john"
              },
              "HTTP400-InvalidCaseType": {
                "summary": "InvalidCaseType",
                "value": "john"
              },
              "HTTP400-InvalidCaseYearFormat": {
                "summary": "InvalidCaseYearFormat",
                "value": "john"
              },
              "HTTP400-InvalidCourtRegionId": {
                "summary": "InvalidCourtRegionId",
                "value": "john"
              },
              "HTTP400-InvalidPacerCaseIdFormat": {
                "summary": "InvalidPacerCaseIdFormat",
                "value": "john"
              },
              "HTTP400-InvalidQueryParameters": {
                "summary": "InvalidQueryParameters",
                "value": "john"
              },
              "HTTP400-InvalidSortQuery": {
                "summary": "InvalidSortQuery",
                "value": "john"
              },
              "HTTP400-InvalidSortQueryFormat": {
                "summary": "InvalidSortQueryFormat",
                "value": "john"
              },
              "HTTP400-InvalidStartAndEndFiledDate": {
                "summary": "InvalidStartAndEndFiledDate",
                "value": "john"
              },
              "HTTP400-InvalidStartAndEndTerminatedDate": {
                "summary": "InvalidStartAndEndTerminatedDate",
                "value": "john"
              },
              "HTTP400-PageNumberParameterNotPassed": {
                "summary": "PageNumberParameterNotPassed",
                "value": "john"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": "john$123"
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": "john"
              },
              "HTTP400-RequestedPageNumberIsInvalid": {
                "summary": "RequestedPageNumberIsInvalid",
                "value": "john"
              },
              "HTTP400-RequiredCaseSearchValidation": {
                "summary": "RequiredCaseSearchValidation",
                "value": "john"
              }
            },
            "in": "query",
            "name": "pacerClientCode",
            "required": true,
            "schema": {
              "example": "john",
              "maxLength": 32,
              "minLength": 1,
              "nullable": false,
              "type": "string"
            }
          },
          {
            "description": "If the court type is selected as All or if you need data for a specific case number format, then you need to use this option. Case numbers may be entered in each of the following formats: \n\n\tyy-nnnnn \n\n\tyy-tp-nnnnn \n\n\tyy tp nnnnn \n\n\tyytpnnnnn \n\n\to:yy-nnnnn \n\n\to:yy-tp-nnnnn \n\n\to:yy tp nnnnn \n\n\to:yytpnnnnn \n\nwhere: \n\nyy  case year (may be 2 or 4 digits) \n\nnnnnn  case number (up to 5 digits) \n\ntp  case type (up to 2 characters) \n\no  office where the case was filed (1 digit).",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": "07-1026"
              },
              "HTTP400-CaseTitleValidation": {
                "summary": "CaseTitleValidation",
                "value": "12-256"
              },
              "HTTP400-InvalidCaseNumberFormat": {
                "summary": "InvalidCaseNumberFormat",
                "value": "12-256-WDR"
              },
              "HTTP400-InvalidCaseOfficeFormat": {
                "summary": "InvalidCaseOfficeFormat",
                "value": "12-256"
              },
              "HTTP400-InvalidCaseSequenceNumberFormat": {
                "summary": "InvalidCaseSequenceNumberFormat",
                "value": "12-256"
              },
              "HTTP400-InvalidCaseStatus": {
                "summary": "InvalidCaseStatus",
                "value": "12-256"
              },
              "HTTP400-InvalidCaseType": {
                "summary": "InvalidCaseType",
                "value": "12-256"
              },
              "HTTP400-InvalidCaseYearFormat": {
                "summary": "InvalidCaseYearFormat",
                "value": "12-256"
              },
              "HTTP400-InvalidCourtRegionId": {
                "summary": "InvalidCourtRegionId",
                "value": "12-256"
              },
              "HTTP400-InvalidFederalBankruptcyChapter": {
                "summary": "InvalidFederalBankruptcyChapter",
                "value": "12-256"
              },
              "HTTP400-InvalidPacerCaseIdFormat": {
                "summary": "InvalidPacerCaseIdFormat",
                "value": "12-256"
              },
              "HTTP400-InvalidQueryParameters": {
                "summary": "InvalidQueryParameters",
                "value": "12-256"
              },
              "HTTP400-InvalidSortQuery": {
                "summary": "InvalidSortQuery",
                "value": "12-256"
              },
              "HTTP400-InvalidSortQueryFormat": {
                "summary": "InvalidSortQueryFormat",
                "value": "12-256"
              },
              "HTTP400-InvalidStartAndEndDischargedDate": {
                "summary": "InvalidStartAndEndDischargedDate",
                "value": "12-256"
              },
              "HTTP400-InvalidStartAndEndDismissedDate": {
                "summary": "InvalidStartAndEndDismissedDate",
                "value": "12-256"
              },
              "HTTP400-InvalidStartAndEndFiledDate": {
                "summary": "InvalidStartAndEndFiledDate",
                "value": "12-256"
              },
              "HTTP400-InvalidStartAndEndTerminatedDate": {
                "summary": "InvalidStartAndEndTerminatedDate",
                "value": "12-256"
              },
              "HTTP400-PageNumberParameterNotPassed": {
                "summary": "PageNumberParameterNotPassed",
                "value": "12-256"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": "12-256"
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": "12-256"
              },
              "HTTP400-RequestedPageNumberIsInvalid": {
                "summary": "RequestedPageNumberIsInvalid",
                "value": "12-256"
              },
              "HTTP400-RequiredCaseSearchValidation": {
                "summary": "RequiredCaseSearchValidation",
                "value": null
              }
            },
            "in": "query",
            "name": "caseNumber",
            "schema": {
              "example": "12-1234",
              "maxLength": 50,
              "minLength": 3,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "Sequentially generated number that identifies the case in PACER system.",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": null
              },
              "HTTP400-CaseTitleValidation": {
                "summary": "CaseTitleValidation",
                "value": 256
              },
              "HTTP400-InvalidCaseNumberFormat": {
                "summary": "InvalidCaseNumberFormat",
                "value": 256
              },
              "HTTP400-InvalidCaseOfficeFormat": {
                "summary": "InvalidCaseOfficeFormat",
                "value": 256
              },
              "HTTP400-InvalidCaseSequenceNumberFormat": {
                "summary": "InvalidCaseSequenceNumberFormat",
                "value": 256
              },
              "HTTP400-InvalidCaseStatus": {
                "summary": "InvalidCaseStatus",
                "value": 256
              },
              "HTTP400-InvalidCaseType": {
                "summary": "InvalidCaseType",
                "value": 256
              },
              "HTTP400-InvalidCaseYearFormat": {
                "summary": "InvalidCaseYearFormat",
                "value": 256
              },
              "HTTP400-InvalidCourtRegionId": {
                "summary": "InvalidCourtRegionId",
                "value": 256
              },
              "HTTP400-InvalidFederalBankruptcyChapter": {
                "summary": "InvalidFederalBankruptcyChapter",
                "value": 256
              },
              "HTTP400-InvalidPacerCaseIdFormat": {
                "summary": "InvalidPacerCaseIdFormat",
                "value": "pacer"
              },
              "HTTP400-InvalidQueryParameters": {
                "summary": "InvalidQueryParameters",
                "value": 256
              },
              "HTTP400-InvalidSortQuery": {
                "summary": "InvalidSortQuery",
                "value": 256
              },
              "HTTP400-InvalidSortQueryFormat": {
                "summary": "InvalidSortQueryFormat",
                "value": 256
              },
              "HTTP400-InvalidStartAndEndDischargedDate": {
                "summary": "InvalidStartAndEndDischargedDate",
                "value": 256
              },
              "HTTP400-InvalidStartAndEndDismissedDate": {
                "summary": "InvalidStartAndEndDismissedDate",
                "value": 256
              },
              "HTTP400-InvalidStartAndEndFiledDate": {
                "summary": "InvalidStartAndEndFiledDate",
                "value": 256
              },
              "HTTP400-InvalidStartAndEndTerminatedDate": {
                "summary": "InvalidStartAndEndTerminatedDate",
                "value": 256
              },
              "HTTP400-PageNumberParameterNotPassed": {
                "summary": "PageNumberParameterNotPassed",
                "value": 256
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": 256
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": 256
              },
              "HTTP400-RequestedPageNumberIsInvalid": {
                "summary": "RequestedPageNumberIsInvalid",
                "value": 256
              }
            },
            "in": "query",
            "name": "pacerCaseId",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "You can search using the case name even if you know one party. \n\n\tExamples: \n\n\tA search for case title john doe v will result in all cases with the case title John Doe v. \n\n\tA search for case title Acme, Inc. will result in all case titles starting with Acme, Inc.",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": null
              },
              "HTTP400-CaseTitleValidation": {
                "summary": "CaseTitleValidation",
                "value": "A"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseTitle",
            "schema": {
              "maxLength": 255,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "The divisional office in which the case was filed.",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": null
              },
              "HTTP400-InvalidCaseOfficeFormat": {
                "summary": "InvalidCaseOfficeFormat",
                "value": "cv"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseOffice",
            "schema": {
              "maxLength": 1,
              "type": "integer"
            }
          },
          {
            "description": "The sequence number of a given case. Ex 12345",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": null
              },
              "HTTP400-InvalidCaseSequenceNumberFormat": {
                "summary": "InvalidCaseSequenceNumberFormat",
                "value": "12-256"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseSequenceNumber",
            "schema": {
              "maxLength": 6,
              "type": "integer"
            }
          },
          {
            "description": "The two digits or four digits of the year in which the case was filed.",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": null
              },
              "HTTP400-InvalidCaseYearFormat": {
                "summary": "InvalidCaseYearFormat",
                "value": 2012
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseYear",
            "schema": {
              "maxLength": 4,
              "type": "integer"
            }
          },
          {
            "description": "Search can be narrowed down by passing caseTypes. Please use the <a href='https://docs.unicourt.com/pacer-glossary/appendix-a-case-types'>APPENDIX A: Case Types</a> mentioned in the API Documentation. \n\n\tScenario: When mulitple case types needs to be requested. \n\n\tImagine for a given case number 12-1234 I would like to search only with the case type civil(cv) and criminal(cr), My query in the request will look like the example mentioned below. \n\n\tExample: caseTypeArray=cv&caseTypeArray=cr",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": null
              },
              "HTTP400-InvalidCaseType": {
                "summary": "InvalidCaseType",
                "value": 1234
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseTypeArray",
            "schema": {
              "items": {
                "maxLength": 255,
                "nullable": true,
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "Search can be narrowed down by passing Federal Bankruptcy Chapters. Please use the <a href='https://docs.unicourt.com/pacer-glossary/appendix-d-bankruptcy-chapters'>APPENDIX D: Bankruptcy Chapters</a> mentioned in the API Documentation. \n\n\tScenario: When mulitple Federal Bankruptcy Chapters needs to be requested. \n\n\tImagine for a given case number 12-1234 I would like to search with the Federal Bankruptcy Chapters 7 (Chapter 7) and 11 (Chapter 11), My query in the request will look like the example mentioned below. \n\n\tExample: federalBankruptcyChapterArray=7&federalBankruptcyChapterArray=11",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": null
              },
              "HTTP400-InvalidFederalBankruptcyChapter": {
                "summary": "InvalidFederalBankruptcyChapter",
                "value": "bankruptcy"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "federalBankruptcyChapterArray",
            "schema": {
              "items": {
                "maxLength": 255,
                "nullable": true,
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "Search can be narrowed down by passing courtRegionId. Please use the <a href='https://docs.unicourt.com/pacer-glossary/appendix-b-court-regions'>APPENDIX B: Court Regions</a> mentioned in the API Documentation. \n\n\tScenario: When mulitple court region ids needs to be requested. \n\n\tImagine for a given case number 12-1234 I would like to search in the court regions California Central (cac) and California Eastern (cae), My query in the request will look like the example mentioned below. \n\n\tExample: courtRegionIdArray=cac&courtRegionIdArray=cae",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": null
              },
              "HTTP400-InvalidCourtRegionId": {
                "summary": "InvalidCourtRegionId",
                "value": "civil"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "courtRegionIdArray",
            "schema": {
              "items": {
                "maxLength": 255,
                "nullable": true,
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "Narrowing the search by limiting the cases which matches the criteria for case filed start date on or after the given date. Format: YYYY-MM-DDTHH:MM:SS+ZZ:zz, Ex: 2017-12-20T12:54:24+00:00",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": null
              },
              "HTTP400-InvalidStartAndEndFiledDate": {
                "summary": "InvalidStartAndEndFiledDate",
                "value": "2012-12-20T12:54:24+00:00"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseFiledStartDate",
            "schema": {
              "format": "date-time",
              "maxLength": 25,
              "minLength": 25,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "Narrowing the search by limiting the cases which matches the criteria for case filed end date on or before the given date. Format: YYYY-MM-DDTHH:MM:SS+ZZ:zz, Ex: 2017-12-20T12:54:24+00:00",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": null
              },
              "HTTP400-InvalidStartAndEndFiledDate": {
                "summary": "InvalidStartAndEndFiledDate",
                "value": "2012-12-19T12:54:24+00:00"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseFiledEndDate",
            "schema": {
              "format": "date-time",
              "maxLength": 25,
              "minLength": 25,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "Narrowing the search by limiting the cases which matches the criteria for case terminated start date on or after the given date. Format: YYYY-MM-DDTHH:MM:SS+ZZ:zz, Ex: 2017-12-20T12:54:24+00:00",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": null
              },
              "HTTP400-InvalidStartAndEndTerminatedDate": {
                "summary": "InvalidStartAndEndTerminatedDate",
                "value": "2017-12-20T12:54:24+00:00"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseTerminatedStartDate",
            "schema": {
              "format": "date-time",
              "maxLength": 25,
              "minLength": 25,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "Narrowing the search by limiting the cases which matches the criteria for case terminated end date on or before the given date. Format: YYYY-MM-DDTHH:MM:SS+ZZ:zz, Ex: 2017-12-20T12:54:24+00:00",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": null
              },
              "HTTP400-InvalidStartAndEndTerminatedDate": {
                "summary": "InvalidStartAndEndTerminatedDate",
                "value": "2017-12-19T12:54:24+00:00"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseTerminatedEndDate",
            "schema": {
              "format": "date-time",
              "maxLength": 25,
              "minLength": 25,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "Narrowing the search for bankruptcy cases by limiting the cases which matches the criteria for case discharged start date on or after the given date. Format: YYYY-MM-DDTHH:MM:SS+ZZ:zz, Ex: 2017-12-20T12:54:24+00:00 \n\n\tNote: This parameter is applicable since we only perform this search for Bankruptcy Court type.",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": null
              },
              "HTTP400-InvalidStartAndEndDischargedDate": {
                "summary": "InvalidStartAndEndDischargedDate",
                "value": "2017-12-20T12:54:24+00:00"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseDischargedStartDate",
            "schema": {
              "format": "date-time",
              "maxLength": 25,
              "minLength": 25,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "Narrowing the search for bankruptcy cases by limiting the cases which matches the criteria for case discharged end date on or before the given date. Format: YYYY-MM-DDTHH:MM:SS+ZZ:zz, Ex: 2017-12-20T12:54:24+00:00 \n\n\tNote: This parameter is applicable since we only perform this search for Bankruptcy Court type.",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": null
              },
              "HTTP400-InvalidStartAndEndDischargedDate": {
                "summary": "InvalidStartAndEndDischargedDate",
                "value": "2017-12-19T12:54:24+00:00"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseDischargedEndDate",
            "schema": {
              "format": "date-time",
              "maxLength": 25,
              "minLength": 25,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "Narrowing the search for bankruptcy cases by limiting the cases which matches the criteria for case dismissed start date on or after the given date. Format: YYYY-MM-DDTHH:MM:SS+ZZ:zz, Ex: 2017-12-20T12:54:24+00:00 \n\n\tNote: This parameter is applicable since we only perform this search for Bankruptcy Court type.",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": null
              },
              "HTTP400-InvalidStartAndEndDismissedDate": {
                "summary": "InvalidStartAndEndTerminatedDate",
                "value": "2017-12-20T12:54:24+00:00"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseDismissedStartDate",
            "schema": {
              "format": "date-time",
              "maxLength": 25,
              "minLength": 25,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "Narrowing the search by limiting the cases which matches the criteria for case terminated end date on or before the given date. Format: YYYY-MM-DDTHH:MM:SS+ZZ:zz, Ex: 2017-12-20T12:54:24+00:00",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": null
              },
              "HTTP400-InvalidStartAndEndDismissedDate": {
                "summary": "InvalidStartAndEndTerminatedDate",
                "value": "2017-12-19T12:54:24+00:00"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseDismissedEndDate",
            "schema": {
              "format": "date-time",
              "maxLength": 25,
              "minLength": 25,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "The criteria based on which the search results are to be sorted. Please use the <a href='https://docs.unicourt.com/pacer-glossary/appendix-c-sort-parameter'>APPENDIX C: Sort Parameter - Sortable Case Parameters</a> mentioned in the API Documentation. The fields can be sorted either ASC or DESC. \n\n\tScenario: When mulitple sort paramters needs to be requested. \n\n\tImagine for a given case number 12-1234 I would like to sort the results in the Ascending order of courtId and caseId, My query in the request will look like the example mentioned below. \n\n\tExample: sortParameterQuery=courtId,ASC&caseId,ASC",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": null
              },
              "HTTP400-InvalidSortQuery": {
                "summary": "InvalidSortQuery",
                "value": "sort=caseYear"
              },
              "HTTP400-InvalidSortQueryFormat": {
                "summary": "InvalidSortQueryFormat",
                "value": "[sort=caseYear,DESC]"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "sortParameterQuery",
            "schema": {
              "default": "sort=caseYear,DESC",
              "maxLength": 100,
              "minLength": 5,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "Status of a case. 'closed' for a Terminated case, 'open' for Pending cases. If this parameter is not sent both cases that fall in open and closed will be queried.",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": null
              },
              "HTTP400-InvalidCaseStatus": {
                "summary": "InvalidCaseStatus",
                "value": "all"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseStatus",
            "schema": {
              "enum": [
                "open",
                "closed"
              ],
              "maxLength": 100,
              "minLength": 3,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "Page Number for a given Job ID or for the search your going to make.",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": 1
              },
              "HTTP400-CaseTitleValidation": {
                "summary": "CaseTitleValidation",
                "value": 1
              },
              "HTTP400-InvalidCaseNumberFormat": {
                "summary": "InvalidCaseNumberFormat",
                "value": 1
              },
              "HTTP400-InvalidCaseOfficeFormat": {
                "summary": "InvalidCaseOfficeFormat",
                "value": 1
              },
              "HTTP400-InvalidCaseSequenceNumberFormat": {
                "summary": "InvalidCaseSequenceNumberFormat",
                "value": 1
              },
              "HTTP400-InvalidCaseStatus": {
                "summary": "InvalidCaseStatus",
                "value": 1
              },
              "HTTP400-InvalidCaseType": {
                "summary": "InvalidCaseType",
                "value": 1
              },
              "HTTP400-InvalidCaseYearFormat": {
                "summary": "InvalidCaseYearFormat",
                "value": 1
              },
              "HTTP400-InvalidCourtRegionId": {
                "summary": "InvalidCourtRegionId",
                "value": 1
              },
              "HTTP400-InvalidFederalBankruptcyChapter": {
                "summary": "InvalidFederalBankruptcyChapter",
                "value": 1
              },
              "HTTP400-InvalidPacerCaseIdFormat": {
                "summary": "InvalidPacerCaseIdFormat",
                "value": 1
              },
              "HTTP400-InvalidQueryParameters": {
                "summary": "InvalidQueryParameters",
                "value": 1
              },
              "HTTP400-InvalidSortQuery": {
                "summary": "InvalidSortQuery",
                "value": 1
              },
              "HTTP400-InvalidSortQueryFormat": {
                "summary": "InvalidSortQueryFormat",
                "value": 1
              },
              "HTTP400-InvalidStartAndEndDischargedDate": {
                "summary": "InvalidStartAndEndDischargedDate",
                "value": 1
              },
              "HTTP400-InvalidStartAndEndDismissedDate": {
                "summary": "InvalidStartAndEndDismissedDate",
                "value": 1
              },
              "HTTP400-InvalidStartAndEndFiledDate": {
                "summary": "InvalidStartAndEndFiledDate",
                "value": 1
              },
              "HTTP400-InvalidStartAndEndTerminatedDate": {
                "summary": "InvalidStartAndEndTerminatedDate",
                "value": 1
              },
              "HTTP400-PageNumberParameterNotPassed": {
                "summary": "PageNumberParameterNotPassed",
                "value": null
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": 1
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": 1
              },
              "HTTP400-RequestedPageNumberIsInvalid": {
                "summary": "RequestedPageNumberIsInvalid",
                "value": "one"
              },
              "HTTP400-RequiredCaseSearchValidation": {
                "summary": "RequiredCaseSearchValidation",
                "value": 1
              }
            },
            "in": "query",
            "name": "pageNumber",
            "schema": {
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "PCLCase": {
                    "$ref": "#/components/examples/PCLCase"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/PCLCase"
                }
              }
            },
            "description": "The request is recieved."
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "CaseTitleValidation": {
                    "$ref": "#/components/examples/FailurePCLCaseTitleValidation"
                  },
                  "ClientCodeNotEntered": {
                    "$ref": "#/components/examples/FailurePacerClientCodeNotEntered"
                  },
                  "InvalidCaseNumberFormat": {
                    "$ref": "#/components/examples/FailurePCLInvalidCaseNumberFormatForAppeal"
                  },
                  "InvalidCaseOfficeFormat": {
                    "$ref": "#/components/examples/FailurePCLInvalidCaseOffice"
                  },
                  "InvalidCaseSequenceNumberFormat": {
                    "$ref": "#/components/examples/FailurePCLInvalidCaseSequenceNumber"
                  },
                  "InvalidCaseStatus": {
                    "$ref": "#/components/examples/FailureInvalidCaseStatus"
                  },
                  "InvalidCaseType": {
                    "$ref": "#/components/examples/FailureInvalidCaseType"
                  },
                  "InvalidCaseYearFormat": {
                    "$ref": "#/components/examples/FailurePCLInvalidCaseYear"
                  },
                  "InvalidCourtRegionId": {
                    "$ref": "#/components/examples/FailureInvalidCourtRegionId"
                  },
                  "InvalidFederalBankruptcyChapter": {
                    "$ref": "#/components/examples/FailureInvalidFederalBankruptcyChapterArray"
                  },
                  "InvalidPacerUserIdOrPassword": {
                    "$ref": "#/components/examples/FailurePacerUserIdOrPassword"
                  },
                  "InvalidSortQuery": {
                    "$ref": "#/components/examples/FailureInvalidSortParameterPassed"
                  },
                  "InvalidSortQueryFormat": {
                    "$ref": "#/components/examples/FailureInvalidSortParameterQueryFormat"
                  },
                  "InvalidStartAndEndDischargedDate": {
                    "$ref": "#/components/examples/FailurePCLCaseDischargedDateValidation"
                  },
                  "InvalidStartAndEndDismissedDate": {
                    "$ref": "#/components/examples/FailurePCLCaseDismissedDateValidation"
                  },
                  "InvalidStartAndEndFiledDate": {
                    "$ref": "#/components/examples/FailurePCLCaseFiledDateValidation"
                  },
                  "InvalidStartAndEndTerminatedDate": {
                    "$ref": "#/components/examples/FailurePCLCaseTerminatedDateValidation"
                  },
                  "PacerAccountDisabled": {
                    "$ref": "#/components/examples/FailurePacerAccountDisabled"
                  },
                  "PacerCredentialsNotFound": {
                    "$ref": "#/components/examples/FailurePacerCredentialsNotFound"
                  },
                  "PageNumberParameterNotPassed": {
                    "$ref": "#/components/examples/FailurePageNumberIdNotPassed"
                  },
                  "RequestedClientCodeIsInvalid": {
                    "$ref": "#/components/examples/FailureClientCodeIsInvalid"
                  },
                  "RequestedPacerUserIdIsInvalid": {
                    "$ref": "#/components/examples/FailurePacerUserIdIsInvalid"
                  },
                  "RequestedPageNumberIsInvalid": {
                    "$ref": "#/components/examples/FailureInvalidPageNumber"
                  },
                  "RequiredCaseSearchValidation": {
                    "$ref": "#/components/examples/FailurePCLRequiredFieldCaseSearch"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Invalid Input Parameter"
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "ServerError": {
                    "$ref": "#/components/examples/FailureServerError"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Server Error"
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "PACER Case Locator Search API for Bankruptcy Courts.",
        "tags": [
          "PACER API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [],
      "x-api-name": "PCLCaseBankruptcyCourtsAPI",
      "x-unicourt-tag": "PACERAPIs"
    },
    "/pacerCaseLocator/caseSearch/civilCourts": {
      "get": {
        "description": "PACER Case Locator Case Search API for Civil Courts.",
        "operationId": "CivilCourtsPacerCaseLocatorCaseSearch",
        "parameters": [
          {
            "description": "User ID or User Name of the PACER Account used while signing in to PACER.",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": "john_doe"
              },
              "HTTP400-CaseTitleValidation": {
                "summary": "CaseTitleValidation",
                "value": "john_doe"
              },
              "HTTP400-ClientCodeNotEntered": {
                "summary": "ClientCodeNotEntered",
                "value": "john_doe"
              },
              "HTTP400-InvalidCaseNumberFormat": {
                "summary": "InvalidCaseNumberFormat",
                "value": "john_doe"
              },
              "HTTP400-InvalidCaseOfficeFormat": {
                "summary": "InvalidCaseOfficeFormat",
                "value": "john_doe"
              },
              "HTTP400-InvalidCaseSequenceNumberFormat": {
                "summary": "InvalidCaseSequenceNumberFormat",
                "value": "john_doe"
              },
              "HTTP400-InvalidCaseStatus": {
                "summary": "InvalidCaseStatus",
                "value": "john_doe"
              },
              "HTTP400-InvalidCaseType": {
                "summary": "InvalidCaseType",
                "value": "john_doe"
              },
              "HTTP400-InvalidCaseYearFormat": {
                "summary": "InvalidCaseYearFormat",
                "value": "john_doe"
              },
              "HTTP400-InvalidClientCodeEntered": {
                "summary": "InvalidClientCodeEntered",
                "value": "john_doe"
              },
              "HTTP400-InvalidCourtRegionId": {
                "summary": "InvalidCourtRegionId",
                "value": "john_doe"
              },
              "HTTP400-InvalidPacerCaseIdFormat": {
                "summary": "InvalidPacerCaseIdFormat",
                "value": "john_doe"
              },
              "HTTP400-InvalidPacerUserIdOrPassword": {
                "summary": "InvalidPacerUserIdOrPassword",
                "value": "john_doe"
              },
              "HTTP400-InvalidQueryParameters": {
                "summary": "InvalidQueryParameters",
                "value": "john_doe"
              },
              "HTTP400-InvalidSortQuery": {
                "summary": "InvalidSortQuery",
                "value": "john_doe"
              },
              "HTTP400-InvalidSortQueryFormat": {
                "summary": "InvalidSortQueryFormat",
                "value": "john_doe"
              },
              "HTTP400-InvalidStartAndEndFiledDate": {
                "summary": "InvalidStartAndEndFiledDate",
                "value": "john_doe"
              },
              "HTTP400-InvalidStartAndEndTerminatedDate": {
                "summary": "InvalidStartAndEndTerminatedDate",
                "value": "john_doe"
              },
              "HTTP400-PacerAccountDisabled": {
                "summary": "PacerAccountDisabled",
                "value": "john_doe"
              },
              "HTTP400-PacerCredentialsNotFound": {
                "summary": "PacerCredentialsNotFound",
                "value": "john_doe"
              },
              "HTTP400-PageNumberParameterNotPassed": {
                "summary": "PageNumberParameterNotPassed",
                "value": "john_doe"
              },
              "HTTP400-PasswordIsNotMinLength": {
                "summary": "PasswordIsNotMinLength",
                "value": "john_doe"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": "john_doe"
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": "john$doe123"
              },
              "HTTP400-RequestedPageNumberIsInvalid": {
                "summary": "RequestedPageNumberIsInvalid",
                "value": "john_doe"
              },
              "HTTP400-RequiredCaseSearchValidation": {
                "summary": "RequiredCaseSearchValidation",
                "value": "john_doe"
              },
              "HTTP400-TooManyLoginAttempts": {
                "summary": "TooManyLoginAttempts",
                "value": "john_doe"
              },
              "HTTP400-UsernameIsNotMinLength": {
                "summary": "UsernameIsNotMinLength",
                "value": "john_doe"
              }
            },
            "in": "query",
            "name": "pacerUserId",
            "required": true,
            "schema": {
              "example": "johndoe",
              "maxLength": 20,
              "minLength": 6,
              "nullable": false,
              "type": "string"
            }
          },
          {
            "description": "Client Code used while signing in to PACER account.",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": "john"
              },
              "HTTP400-CaseTitleValidation": {
                "summary": "CaseTitleValidation",
                "value": "john"
              },
              "HTTP400-ClientCodeNotEntered": {
                "summary": "ClientCodeNotEntered",
                "value": "john"
              },
              "HTTP400-InvalidCaseNumberFormat": {
                "summary": "InvalidCaseNumberFormat",
                "value": "john"
              },
              "HTTP400-InvalidCaseOfficeFormat": {
                "summary": "InvalidCaseOfficeFormat",
                "value": "john"
              },
              "HTTP400-InvalidCaseSequenceNumberFormat": {
                "summary": "InvalidCaseSequenceNumberFormat",
                "value": "john"
              },
              "HTTP400-InvalidCaseStatus": {
                "summary": "InvalidCaseStatus",
                "value": "john"
              },
              "HTTP400-InvalidCaseType": {
                "summary": "InvalidCaseType",
                "value": "john"
              },
              "HTTP400-InvalidCaseYearFormat": {
                "summary": "InvalidCaseYearFormat",
                "value": "john"
              },
              "HTTP400-InvalidClientCodeEntered": {
                "summary": "InvalidClientCodeEntered",
                "value": "john"
              },
              "HTTP400-InvalidCourtRegionId": {
                "summary": "InvalidCourtRegionId",
                "value": "john"
              },
              "HTTP400-InvalidPacerCaseIdFormat": {
                "summary": "InvalidPacerCaseIdFormat",
                "value": "john"
              },
              "HTTP400-InvalidPacerUserIdOrPassword": {
                "summary": "InvalidPacerUserIdOrPassword",
                "value": "john"
              },
              "HTTP400-InvalidQueryParameters": {
                "summary": "InvalidQueryParameters",
                "value": "john"
              },
              "HTTP400-InvalidSortQuery": {
                "summary": "InvalidSortQuery",
                "value": "john"
              },
              "HTTP400-InvalidSortQueryFormat": {
                "summary": "InvalidSortQueryFormat",
                "value": "john"
              },
              "HTTP400-InvalidStartAndEndFiledDate": {
                "summary": "InvalidStartAndEndFiledDate",
                "value": "john"
              },
              "HTTP400-InvalidStartAndEndTerminatedDate": {
                "summary": "InvalidStartAndEndTerminatedDate",
                "value": "john"
              },
              "HTTP400-PacerAccountDisabled": {
                "summary": "PacerAccountDisabled",
                "value": "john"
              },
              "HTTP400-PacerCredentialsNotFound": {
                "summary": "PacerCredentialsNotFound",
                "value": "john"
              },
              "HTTP400-PageNumberParameterNotPassed": {
                "summary": "PageNumberParameterNotPassed",
                "value": "john"
              },
              "HTTP400-PasswordIsNotMinLength": {
                "summary": "PasswordIsNotMinLength",
                "value": "john"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": "john$123"
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": "john"
              },
              "HTTP400-RequestedPageNumberIsInvalid": {
                "summary": "RequestedPageNumberIsInvalid",
                "value": "john"
              },
              "HTTP400-RequiredCaseSearchValidation": {
                "summary": "RequiredCaseSearchValidation",
                "value": "john"
              },
              "HTTP400-TooManyLoginAttempts": {
                "summary": "TooManyLoginAttempts",
                "value": "john"
              },
              "HTTP400-UsernameIsNotMinLength": {
                "summary": "UsernameIsNotMinLength",
                "value": "john"
              }
            },
            "in": "query",
            "name": "pacerClientCode",
            "required": true,
            "schema": {
              "example": "john",
              "maxLength": 32,
              "minLength": 1,
              "nullable": false,
              "type": "string"
            }
          },
          {
            "description": "If the court type is selected as All or if you need data for a specific case number format, then you need to use this option. Case numbers may be entered in each of the following formats: \n\n\tyy-nnnnn \n\n\tyy-tp-nnnnn \n\n\tyy tp nnnnn \n\n\tyytpnnnnn \n\n\to:yy-nnnnn \n\n\to:yy-tp-nnnnn \n\n\to:yy tp nnnnn \n\n\to:yytpnnnnn \n\nwhere: \n\nyy  case year (may be 2 or 4 digits) \n\nnnnnn  case number (up to 5 digits) \n\ntp  case type (up to 2 characters) \n\no  office where the case was filed (1 digit).",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": "07-1026"
              },
              "HTTP400-CaseTitleValidation": {
                "summary": "CaseTitleValidation",
                "value": "12-256"
              },
              "HTTP400-InvalidCaseNumberFormat": {
                "summary": "InvalidCaseNumberFormat",
                "value": "12-256-WDR"
              },
              "HTTP400-InvalidCaseOfficeFormat": {
                "summary": "InvalidCaseOfficeFormat",
                "value": "12-256"
              },
              "HTTP400-InvalidCaseSequenceNumberFormat": {
                "summary": "InvalidCaseSequenceNumberFormat",
                "value": "12-256"
              },
              "HTTP400-InvalidCaseStatus": {
                "summary": "InvalidCaseStatus",
                "value": "12-256"
              },
              "HTTP400-InvalidCaseType": {
                "summary": "InvalidCaseType",
                "value": "12-256"
              },
              "HTTP400-InvalidCaseYearFormat": {
                "summary": "InvalidCaseYearFormat",
                "value": "12-256"
              },
              "HTTP400-InvalidCourtRegionId": {
                "summary": "InvalidCourtRegionId",
                "value": "12-256"
              },
              "HTTP400-InvalidNatureOfSuit": {
                "summary": "InvalidNatureOfSuit",
                "value": "12-256"
              },
              "HTTP400-InvalidPacerCaseIdFormat": {
                "summary": "InvalidPacerCaseIdFormat",
                "value": "12-256"
              },
              "HTTP400-InvalidQueryParameters": {
                "summary": "InvalidQueryParameters",
                "value": "12-256"
              },
              "HTTP400-InvalidSortQuery": {
                "summary": "InvalidSortQuery",
                "value": "12-256"
              },
              "HTTP400-InvalidSortQueryFormat": {
                "summary": "InvalidSortQueryFormat",
                "value": "12-256"
              },
              "HTTP400-InvalidStartAndEndFiledDate": {
                "summary": "InvalidStartAndEndFiledDate",
                "value": "12-256"
              },
              "HTTP400-InvalidStartAndEndTerminatedDate": {
                "summary": "InvalidStartAndEndTerminatedDate",
                "value": "12-256"
              },
              "HTTP400-PageNumberParameterNotPassed": {
                "summary": "PageNumberParameterNotPassed",
                "value": "12-256"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": "12-256"
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": "12-256"
              },
              "HTTP400-RequestedPageNumberIsInvalid": {
                "summary": "RequestedPageNumberIsInvalid",
                "value": "12-256"
              },
              "HTTP400-RequiredCaseSearchValidation": {
                "summary": "RequiredCaseSearchValidation",
                "value": null
              }
            },
            "in": "query",
            "name": "caseNumber",
            "schema": {
              "example": "12-1234",
              "maxLength": 50,
              "minLength": 3,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "Sequentially generated number that identifies the case in PACER system.",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": null
              },
              "HTTP400-CaseTitleValidation": {
                "summary": "CaseTitleValidation",
                "value": 256
              },
              "HTTP400-InvalidCaseNumberFormat": {
                "summary": "InvalidCaseNumberFormat",
                "value": 256
              },
              "HTTP400-InvalidCaseOfficeFormat": {
                "summary": "InvalidCaseOfficeFormat",
                "value": 256
              },
              "HTTP400-InvalidCaseSequenceNumberFormat": {
                "summary": "InvalidCaseSequenceNumberFormat",
                "value": 256
              },
              "HTTP400-InvalidCaseStatus": {
                "summary": "InvalidCaseStatus",
                "value": 256
              },
              "HTTP400-InvalidCaseType": {
                "summary": "InvalidCaseType",
                "value": 256
              },
              "HTTP400-InvalidCaseYearFormat": {
                "summary": "InvalidCaseYearFormat",
                "value": 256
              },
              "HTTP400-InvalidCourtRegionId": {
                "summary": "InvalidCourtRegionId",
                "value": 256
              },
              "HTTP400-InvalidNatureOfSuit": {
                "summary": "InvalidNatureOfSuit",
                "value": 256
              },
              "HTTP400-InvalidPacerCaseIdFormat": {
                "summary": "InvalidPacerCaseIdFormat",
                "value": "pacer"
              },
              "HTTP400-InvalidQueryParameters": {
                "summary": "InvalidQueryParameters",
                "value": 256
              },
              "HTTP400-InvalidSortQuery": {
                "summary": "InvalidSortQuery",
                "value": 256
              },
              "HTTP400-InvalidSortQueryFormat": {
                "summary": "InvalidSortQueryFormat",
                "value": 256
              },
              "HTTP400-InvalidStartAndEndFiledDate": {
                "summary": "InvalidStartAndEndFiledDate",
                "value": 256
              },
              "HTTP400-InvalidStartAndEndTerminatedDate": {
                "summary": "InvalidStartAndEndTerminatedDate",
                "value": 256
              },
              "HTTP400-PageNumberParameterNotPassed": {
                "summary": "PageNumberParameterNotPassed",
                "value": 256
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": 256
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": 256
              },
              "HTTP400-RequestedPageNumberIsInvalid": {
                "summary": "RequestedPageNumberIsInvalid",
                "value": 256
              }
            },
            "in": "query",
            "name": "pacerCaseId",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "You can search using the case name even if you know one party. \n\n\tExamples: \n\n\tA search for case title john doe v will result in all cases with the case title John Doe v. \n\n\tA search for case title Acme, Inc. will result in all case titles starting with Acme, Inc.",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": null
              },
              "HTTP400-CaseTitleValidation": {
                "summary": "CaseTitleValidation",
                "value": "A"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseTitle",
            "schema": {
              "maxLength": 255,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "The divisional office in which the case was filed.",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": null
              },
              "HTTP400-InvalidCaseOfficeFormat": {
                "summary": "InvalidCaseOfficeFormat",
                "value": "cv"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseOffice",
            "schema": {
              "maxLength": 1,
              "type": "integer"
            }
          },
          {
            "description": "The sequence number of a given case. Ex 12345",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": null
              },
              "HTTP400-InvalidCaseSequenceNumberFormat": {
                "summary": "InvalidCaseSequenceNumberFormat",
                "value": "12-256"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseSequenceNumber",
            "schema": {
              "maxLength": 6,
              "type": "integer"
            }
          },
          {
            "description": "The two digits or four digits of the year in which the case was filed.",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": null
              },
              "HTTP400-InvalidCaseYearFormat": {
                "summary": "InvalidCaseYearFormat",
                "value": 2012
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseYear",
            "schema": {
              "maxLength": 4,
              "type": "integer"
            }
          },
          {
            "description": "Search can be narrowed down by passing caseTypes. Please use the <a href='https://docs.unicourt.com/pacer-glossary/appendix-a-case-types'>APPENDIX A: Case Types</a> mentioned in the API Documentation. \n\n\tScenario: When mulitple case types needs to be requested. \n\n\tImagine for a given case number 12-1234 I would like to search only with the case type civil(cv) and criminal(cr), My query in the request will look like the example mentioned below. \n\n\tExample: caseTypeArray=cv&caseTypeArray=cr",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": null
              },
              "HTTP400-InvalidCaseType": {
                "summary": "InvalidCaseType",
                "value": 1234
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseTypeArray",
            "schema": {
              "items": {
                "maxLength": 255,
                "nullable": true,
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "Search can be narrowed down by passing Nature Of Suits. Please use the <a href='https://docs.unicourt.com/pacer-glossary/appendix-e-nature-of-suits'>APPENDIX E - Civil Nature Of Suits</a> mentioned in the API Documentation. \n\n\tScenario: When mulitple nature of suits needs to be requested. \n\n\tImagine for a given case number 12-1234 I would like to search with the nature of suit 110 (Insurance) and 140 (Negotiable Instrument), My query in the request will look like the example mentioned below. \n\n\tExample: natureOfSuitsArray=110&natureOfSuitsArray=140",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": null
              },
              "HTTP400-InvalidNatureOfSuit": {
                "summary": "InvalidNatureOfSuit",
                "value": "appeal"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "natureOfSuitsArray",
            "schema": {
              "items": {
                "maxLength": 255,
                "nullable": true,
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "Search can be narrowed down by passing courtRegionId. Please use the <a href='https://docs.unicourt.com/pacer-glossary/appendix-b-court-regions'>APPENDIX B: Court Regions</a> mentioned in the API Documentation. \n\n\tScenario: When mulitple court region ids needs to be requested. \n\n\tImagine for a given case number 12-1234 I would like to search in the court regions California Central (cac) and California Eastern (cae), My query in the request will look like the example mentioned below. \n\n\tExample: courtRegionIdArray=cac&courtRegionIdArray=cae",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": null
              },
              "HTTP400-InvalidCourtRegionId": {
                "summary": "InvalidCourtRegionId",
                "value": "civil"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "courtRegionIdArray",
            "schema": {
              "items": {
                "maxLength": 255,
                "nullable": true,
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "Narrowing the search by limiting the cases which matches the criteria for case filed start date on or after the given date. Format: YYYY-MM-DDTHH:MM:SS+ZZ:zz, Ex: 2017-12-20T12:54:24+00:00",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": null
              },
              "HTTP400-InvalidStartAndEndFiledDate": {
                "summary": "InvalidStartAndEndFiledDate",
                "value": "2012-12-20T12:54:24+00:00"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseFiledStartDate",
            "schema": {
              "format": "date-time",
              "maxLength": 25,
              "minLength": 25,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "Narrowing the search by limiting the cases which matches the criteria for case filed end date on or before the given date. Format: YYYY-MM-DDTHH:MM:SS+ZZ:zz, Ex: 2017-12-20T12:54:24+00:00",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": null
              },
              "HTTP400-InvalidStartAndEndFiledDate": {
                "summary": "InvalidStartAndEndFiledDate",
                "value": "2012-12-19T12:54:24+00:00"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseFiledEndDate",
            "schema": {
              "format": "date-time",
              "maxLength": 25,
              "minLength": 25,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "Narrowing the search by limiting the cases which matches the criteria for case terminated start date on or after the given date. Format: YYYY-MM-DDTHH:MM:SS+ZZ:zz, Ex: 2017-12-20T12:54:24+00:00",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": null
              },
              "HTTP400-InvalidStartAndEndTerminatedDate": {
                "summary": "InvalidStartAndEndTerminatedDate",
                "value": "2017-12-20T12:54:24+00:00"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseTerminatedStartDate",
            "schema": {
              "format": "date-time",
              "maxLength": 25,
              "minLength": 25,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "Narrowing the search by limiting the cases which matches the criteria for case terminated end date on or before the given date. Format: YYYY-MM-DDTHH:MM:SS+ZZ:zz, Ex: 2017-12-20T12:54:24+00:00",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": null
              },
              "HTTP400-InvalidStartAndEndTerminatedDate": {
                "summary": "InvalidStartAndEndTerminatedDate",
                "value": "2017-12-19T12:54:24+00:00"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseTerminatedEndDate",
            "schema": {
              "format": "date-time",
              "maxLength": 25,
              "minLength": 25,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "The criteria based on which the search results are to be sorted. Please use the <a href='https://docs.unicourt.com/pacer-glossary/appendix-c-sort-parameter'>APPENDIX C: Sort Parameter - Sortable Case Parameters</a> mentioned in the API Documentation. The fields can be sorted either ASC or DESC. \n\n\tScenario: When mulitple sort paramters needs to be requested. \n\n\tImagine for a given case number 12-1234 I would like to sort the results in the Ascending order of courtId and caseId, My query in the request will look like the example mentioned below. \n\n\tExample: sortParameterQuery=courtId,ASC&caseId,ASC",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": null
              },
              "HTTP400-InvalidSortQuery": {
                "summary": "InvalidSortQuery",
                "value": "sort=caseYear"
              },
              "HTTP400-InvalidSortQueryFormat": {
                "summary": "InvalidSortQueryFormat",
                "value": "[sort=caseYear,DESC]"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "sortParameterQuery",
            "schema": {
              "default": "sort=caseYear,DESC",
              "maxLength": 100,
              "minLength": 5,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "Status of a case. 'closed' for a Terminated case, 'open' for Pending cases. If this parameter is not sent both cases that fall in open and closed will be queried.",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": null
              },
              "HTTP400-InvalidCaseStatus": {
                "summary": "InvalidCaseStatus",
                "value": "all"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseStatus",
            "schema": {
              "enum": [
                "open",
                "closed"
              ],
              "maxLength": 100,
              "minLength": 3,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "Page Number for a given Job ID or for the search your going to make.",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": 1
              },
              "HTTP400-CaseTitleValidation": {
                "summary": "CaseTitleValidation",
                "value": 1
              },
              "HTTP400-InvalidCaseNumberFormat": {
                "summary": "InvalidCaseNumberFormat",
                "value": 1
              },
              "HTTP400-InvalidCaseOfficeFormat": {
                "summary": "InvalidCaseOfficeFormat",
                "value": 1
              },
              "HTTP400-InvalidCaseSequenceNumberFormat": {
                "summary": "InvalidCaseSequenceNumberFormat",
                "value": 1
              },
              "HTTP400-InvalidCaseStatus": {
                "summary": "InvalidCaseStatus",
                "value": 1
              },
              "HTTP400-InvalidCaseType": {
                "summary": "InvalidCaseType",
                "value": 1
              },
              "HTTP400-InvalidCaseYearFormat": {
                "summary": "InvalidCaseYearFormat",
                "value": 1
              },
              "HTTP400-InvalidCourtRegionId": {
                "summary": "InvalidCourtRegionId",
                "value": 1
              },
              "HTTP400-InvalidNatureOfSuit": {
                "summary": "InvalidNatureOfSuit",
                "value": "appeal"
              },
              "HTTP400-InvalidPacerCaseIdFormat": {
                "summary": "InvalidPacerCaseIdFormat",
                "value": 1
              },
              "HTTP400-InvalidQueryParameters": {
                "summary": "InvalidQueryParameters",
                "value": 1
              },
              "HTTP400-InvalidSortQuery": {
                "summary": "InvalidSortQuery",
                "value": 1
              },
              "HTTP400-InvalidSortQueryFormat": {
                "summary": "InvalidSortQueryFormat",
                "value": 1
              },
              "HTTP400-InvalidStartAndEndFiledDate": {
                "summary": "InvalidStartAndEndFiledDate",
                "value": 1
              },
              "HTTP400-InvalidStartAndEndTerminatedDate": {
                "summary": "InvalidStartAndEndTerminatedDate",
                "value": 1
              },
              "HTTP400-PageNumberParameterNotPassed": {
                "summary": "PageNumberParameterNotPassed",
                "value": null
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": 1
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": 1
              },
              "HTTP400-RequestedPageNumberIsInvalid": {
                "summary": "RequestedPageNumberIsInvalid",
                "value": "one"
              },
              "HTTP400-RequiredCaseSearchValidation": {
                "summary": "RequiredCaseSearchValidation",
                "value": 1
              }
            },
            "in": "query",
            "name": "pageNumber",
            "schema": {
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "PCLCase": {
                    "$ref": "#/components/examples/PCLCase"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/PCLCase"
                }
              }
            },
            "description": "The request is recieved."
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "CaseTitleValidation": {
                    "$ref": "#/components/examples/FailurePCLCaseTitleValidation"
                  },
                  "ClientCodeNotEntered": {
                    "$ref": "#/components/examples/FailurePacerClientCodeNotEntered"
                  },
                  "InvalidCaseNumberFormat": {
                    "$ref": "#/components/examples/FailurePCLInvalidCaseNumberFormatForAppeal"
                  },
                  "InvalidCaseOfficeFormat": {
                    "$ref": "#/components/examples/FailurePCLInvalidCaseOffice"
                  },
                  "InvalidCaseSequenceNumberFormat": {
                    "$ref": "#/components/examples/FailurePCLInvalidCaseSequenceNumber"
                  },
                  "InvalidCaseStatus": {
                    "$ref": "#/components/examples/FailureInvalidCaseStatus"
                  },
                  "InvalidCaseType": {
                    "$ref": "#/components/examples/FailureInvalidCaseType"
                  },
                  "InvalidCaseYearFormat": {
                    "$ref": "#/components/examples/FailurePCLInvalidCaseYear"
                  },
                  "InvalidCourtRegionId": {
                    "$ref": "#/components/examples/FailureInvalidCourtRegionId"
                  },
                  "InvalidNatureOfSuit": {
                    "$ref": "#/components/examples/FailureInvalidNatureOfSuitCivil"
                  },
                  "InvalidPacerUserIdOrPassword": {
                    "$ref": "#/components/examples/FailurePacerUserIdOrPassword"
                  },
                  "InvalidSortQuery": {
                    "$ref": "#/components/examples/FailureInvalidSortParameterPassed"
                  },
                  "InvalidSortQueryFormat": {
                    "$ref": "#/components/examples/FailureInvalidSortParameterQueryFormat"
                  },
                  "InvalidStartAndEndFiledDate": {
                    "$ref": "#/components/examples/FailurePCLCaseFiledDateValidation"
                  },
                  "InvalidStartAndEndTerminatedDate": {
                    "$ref": "#/components/examples/FailurePCLCaseTerminatedDateValidation"
                  },
                  "PacerAccountDisabled": {
                    "$ref": "#/components/examples/FailurePacerAccountDisabled"
                  },
                  "PacerCredentialsNotFound": {
                    "$ref": "#/components/examples/FailurePacerCredentialsNotFound"
                  },
                  "PageNumberParameterNotPassed": {
                    "$ref": "#/components/examples/FailurePageNumberIdNotPassed"
                  },
                  "RequestedClientCodeIsInvalid": {
                    "$ref": "#/components/examples/FailureClientCodeIsInvalid"
                  },
                  "RequestedPacerUserIdIsInvalid": {
                    "$ref": "#/components/examples/FailurePacerUserIdIsInvalid"
                  },
                  "RequestedPageNumberIsInvalid": {
                    "$ref": "#/components/examples/FailureInvalidPageNumber"
                  },
                  "RequiredCaseSearchValidation": {
                    "$ref": "#/components/examples/FailurePCLRequiredFieldCaseSearch"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Invalid Input Parameter"
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "ServerError": {
                    "$ref": "#/components/examples/FailureServerError"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Server Error"
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "PACER Case Locator Search API for All Courts.",
        "tags": [
          "PACER API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [],
      "x-api-name": "PCLCaseCivilCourtsAPI",
      "x-unicourt-tag": "PACERAPIs"
    },
    "/pacerCaseLocator/caseSearch/criminalCourts": {
      "get": {
        "description": "PACER Case Locator Case Search API for Criminal Courts.",
        "operationId": "CriminalCourtsPacerCaseLocatorCaseSearch",
        "parameters": [
          {
            "description": "User ID or User Name of the PACER Account used while signing in to PACER.",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": "john_doe"
              },
              "HTTP400-CaseTitleValidation": {
                "summary": "CaseTitleValidation",
                "value": "john_doe"
              },
              "HTTP400-ClientCodeNotEntered": {
                "summary": "ClientCodeNotEntered",
                "value": "john_doe"
              },
              "HTTP400-InvalidCaseNumberFormat": {
                "summary": "InvalidCaseNumberFormat",
                "value": "john_doe"
              },
              "HTTP400-InvalidCaseOfficeFormat": {
                "summary": "InvalidCaseOfficeFormat",
                "value": "john_doe"
              },
              "HTTP400-InvalidCaseSequenceNumberFormat": {
                "summary": "InvalidCaseSequenceNumberFormat",
                "value": "john_doe"
              },
              "HTTP400-InvalidCaseStatus": {
                "summary": "InvalidCaseStatus",
                "value": "john_doe"
              },
              "HTTP400-InvalidCaseType": {
                "summary": "InvalidCaseType",
                "value": "john_doe"
              },
              "HTTP400-InvalidCaseYearFormat": {
                "summary": "InvalidCaseYearFormat",
                "value": "john_doe"
              },
              "HTTP400-InvalidClientCodeEntered": {
                "summary": "InvalidClientCodeEntered",
                "value": "john_doe"
              },
              "HTTP400-InvalidCourtRegionId": {
                "summary": "InvalidCourtRegionId",
                "value": "john_doe"
              },
              "HTTP400-InvalidPacerCaseIdFormat": {
                "summary": "InvalidPacerCaseIdFormat",
                "value": "john_doe"
              },
              "HTTP400-InvalidPacerUserIdOrPassword": {
                "summary": "InvalidPacerUserIdOrPassword",
                "value": "john_doe"
              },
              "HTTP400-InvalidQueryParameters": {
                "summary": "InvalidQueryParameters",
                "value": "john_doe"
              },
              "HTTP400-InvalidSortQuery": {
                "summary": "InvalidSortQuery",
                "value": "john_doe"
              },
              "HTTP400-InvalidSortQueryFormat": {
                "summary": "InvalidSortQueryFormat",
                "value": "john_doe"
              },
              "HTTP400-InvalidStartAndEndFiledDate": {
                "summary": "InvalidStartAndEndFiledDate",
                "value": "john_doe"
              },
              "HTTP400-InvalidStartAndEndTerminatedDate": {
                "summary": "InvalidStartAndEndTerminatedDate",
                "value": "john_doe"
              },
              "HTTP400-PacerAccountDisabled": {
                "summary": "PacerAccountDisabled",
                "value": "john_doe"
              },
              "HTTP400-PacerCredentialsNotFound": {
                "summary": "PacerCredentialsNotFound",
                "value": "john_doe"
              },
              "HTTP400-PageNumberParameterNotPassed": {
                "summary": "PageNumberParameterNotPassed",
                "value": "john_doe"
              },
              "HTTP400-PasswordIsNotMinLength": {
                "summary": "PasswordIsNotMinLength",
                "value": "john_doe"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": "john_doe"
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": "john$doe123"
              },
              "HTTP400-RequestedPageNumberIsInvalid": {
                "summary": "RequestedPageNumberIsInvalid",
                "value": "john_doe"
              },
              "HTTP400-RequiredCaseSearchValidation": {
                "summary": "RequiredCaseSearchValidation",
                "value": "john_doe"
              },
              "HTTP400-TooManyLoginAttempts": {
                "summary": "TooManyLoginAttempts",
                "value": "john_doe"
              },
              "HTTP400-UsernameIsNotMinLength": {
                "summary": "UsernameIsNotMinLength",
                "value": "john_doe"
              }
            },
            "in": "query",
            "name": "pacerUserId",
            "required": true,
            "schema": {
              "example": "johndoe",
              "maxLength": 20,
              "minLength": 6,
              "nullable": false,
              "type": "string"
            }
          },
          {
            "description": "Client Code used while signing in to PACER account.",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": "john"
              },
              "HTTP400-CaseTitleValidation": {
                "summary": "CaseTitleValidation",
                "value": "john"
              },
              "HTTP400-ClientCodeNotEntered": {
                "summary": "ClientCodeNotEntered",
                "value": "john"
              },
              "HTTP400-InvalidCaseNumberFormat": {
                "summary": "InvalidCaseNumberFormat",
                "value": "john"
              },
              "HTTP400-InvalidCaseOfficeFormat": {
                "summary": "InvalidCaseOfficeFormat",
                "value": "john"
              },
              "HTTP400-InvalidCaseSequenceNumberFormat": {
                "summary": "InvalidCaseSequenceNumberFormat",
                "value": "john"
              },
              "HTTP400-InvalidCaseStatus": {
                "summary": "InvalidCaseStatus",
                "value": "john"
              },
              "HTTP400-InvalidCaseType": {
                "summary": "InvalidCaseType",
                "value": "john"
              },
              "HTTP400-InvalidCaseYearFormat": {
                "summary": "InvalidCaseYearFormat",
                "value": "john"
              },
              "HTTP400-InvalidClientCodeEntered": {
                "summary": "InvalidClientCodeEntered",
                "value": "john"
              },
              "HTTP400-InvalidCourtRegionId": {
                "summary": "InvalidCourtRegionId",
                "value": "john"
              },
              "HTTP400-InvalidPacerCaseIdFormat": {
                "summary": "InvalidPacerCaseIdFormat",
                "value": "john"
              },
              "HTTP400-InvalidPacerUserIdOrPassword": {
                "summary": "InvalidPacerUserIdOrPassword",
                "value": "john"
              },
              "HTTP400-InvalidQueryParameters": {
                "summary": "InvalidQueryParameters",
                "value": "john"
              },
              "HTTP400-InvalidSortQuery": {
                "summary": "InvalidSortQuery",
                "value": "john"
              },
              "HTTP400-InvalidSortQueryFormat": {
                "summary": "InvalidSortQueryFormat",
                "value": "john"
              },
              "HTTP400-InvalidStartAndEndFiledDate": {
                "summary": "InvalidStartAndEndFiledDate",
                "value": "john"
              },
              "HTTP400-InvalidStartAndEndTerminatedDate": {
                "summary": "InvalidStartAndEndTerminatedDate",
                "value": "john"
              },
              "HTTP400-PacerAccountDisabled": {
                "summary": "PacerAccountDisabled",
                "value": "john"
              },
              "HTTP400-PacerCredentialsNotFound": {
                "summary": "PacerCredentialsNotFound",
                "value": "john"
              },
              "HTTP400-PageNumberParameterNotPassed": {
                "summary": "PageNumberParameterNotPassed",
                "value": "john"
              },
              "HTTP400-PasswordIsNotMinLength": {
                "summary": "PasswordIsNotMinLength",
                "value": "john"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": "john$123"
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": "john"
              },
              "HTTP400-RequestedPageNumberIsInvalid": {
                "summary": "RequestedPageNumberIsInvalid",
                "value": "john"
              },
              "HTTP400-RequiredCaseSearchValidation": {
                "summary": "RequiredCaseSearchValidation",
                "value": "john"
              },
              "HTTP400-TooManyLoginAttempts": {
                "summary": "TooManyLoginAttempts",
                "value": "john"
              },
              "HTTP400-UsernameIsNotMinLength": {
                "summary": "UsernameIsNotMinLength",
                "value": "john"
              }
            },
            "in": "query",
            "name": "pacerClientCode",
            "required": true,
            "schema": {
              "example": "john",
              "maxLength": 32,
              "minLength": 1,
              "nullable": false,
              "type": "string"
            }
          },
          {
            "description": "If the court type is selected as All or if you need data for a specific case number format, then you need to use this option. Case numbers may be entered in each of the following formats: \n\n\tyy-nnnnn \n\n\tyy-tp-nnnnn \n\n\tyy tp nnnnn \n\n\tyytpnnnnn \n\n\to:yy-nnnnn \n\n\to:yy-tp-nnnnn \n\n\to:yy tp nnnnn \n\n\to:yytpnnnnn \n\nwhere: \n\nyy  case year (may be 2 or 4 digits) \n\nnnnnn  case number (up to 5 digits) \n\ntp  case type (up to 2 characters) \n\no  office where the case was filed (1 digit).",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": "07-1026"
              },
              "HTTP400-CaseTitleValidation": {
                "summary": "CaseTitleValidation",
                "value": "12-256"
              },
              "HTTP400-InvalidCaseNumberFormat": {
                "summary": "InvalidCaseNumberFormat",
                "value": "12-256-WDR"
              },
              "HTTP400-InvalidCaseOfficeFormat": {
                "summary": "InvalidCaseOfficeFormat",
                "value": "12-256"
              },
              "HTTP400-InvalidCaseSequenceNumberFormat": {
                "summary": "InvalidCaseSequenceNumberFormat",
                "value": "12-256"
              },
              "HTTP400-InvalidCaseStatus": {
                "summary": "InvalidCaseStatus",
                "value": "12-256"
              },
              "HTTP400-InvalidCaseType": {
                "summary": "InvalidCaseType",
                "value": "12-256"
              },
              "HTTP400-InvalidCaseYearFormat": {
                "summary": "InvalidCaseYearFormat",
                "value": "12-256"
              },
              "HTTP400-InvalidCourtRegionId": {
                "summary": "InvalidCourtRegionId",
                "value": "12-256"
              },
              "HTTP400-InvalidPacerCaseIdFormat": {
                "summary": "InvalidPacerCaseIdFormat",
                "value": "12-256"
              },
              "HTTP400-InvalidQueryParameters": {
                "summary": "InvalidQueryParameters",
                "value": "12-256"
              },
              "HTTP400-InvalidSortQuery": {
                "summary": "InvalidSortQuery",
                "value": "12-256"
              },
              "HTTP400-InvalidSortQueryFormat": {
                "summary": "InvalidSortQueryFormat",
                "value": "12-256"
              },
              "HTTP400-InvalidStartAndEndFiledDate": {
                "summary": "InvalidStartAndEndFiledDate",
                "value": "12-256"
              },
              "HTTP400-InvalidStartAndEndTerminatedDate": {
                "summary": "InvalidStartAndEndTerminatedDate",
                "value": "12-256"
              },
              "HTTP400-PageNumberParameterNotPassed": {
                "summary": "PageNumberParameterNotPassed",
                "value": "12-256"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": "12-256"
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": "12-256"
              },
              "HTTP400-RequestedPageNumberIsInvalid": {
                "summary": "RequestedPageNumberIsInvalid",
                "value": "12-256"
              },
              "HTTP400-RequiredCaseSearchValidation": {
                "summary": "RequiredCaseSearchValidation",
                "value": null
              }
            },
            "in": "query",
            "name": "caseNumber",
            "schema": {
              "example": "12-1234",
              "maxLength": 50,
              "minLength": 3,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "Sequentially generated number that identifies the case in PACER system.",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": null
              },
              "HTTP400-CaseTitleValidation": {
                "summary": "CaseTitleValidation",
                "value": 256
              },
              "HTTP400-InvalidCaseNumberFormat": {
                "summary": "InvalidCaseNumberFormat",
                "value": 256
              },
              "HTTP400-InvalidCaseOfficeFormat": {
                "summary": "InvalidCaseOfficeFormat",
                "value": 256
              },
              "HTTP400-InvalidCaseSequenceNumberFormat": {
                "summary": "InvalidCaseSequenceNumberFormat",
                "value": 256
              },
              "HTTP400-InvalidCaseStatus": {
                "summary": "InvalidCaseStatus",
                "value": 256
              },
              "HTTP400-InvalidCaseType": {
                "summary": "InvalidCaseType",
                "value": 256
              },
              "HTTP400-InvalidCaseYearFormat": {
                "summary": "InvalidCaseYearFormat",
                "value": 256
              },
              "HTTP400-InvalidCourtRegionId": {
                "summary": "InvalidCourtRegionId",
                "value": 256
              },
              "HTTP400-InvalidPacerCaseIdFormat": {
                "summary": "InvalidPacerCaseIdFormat",
                "value": "pacer"
              },
              "HTTP400-InvalidQueryParameters": {
                "summary": "InvalidQueryParameters",
                "value": 256
              },
              "HTTP400-InvalidSortQuery": {
                "summary": "InvalidSortQuery",
                "value": 256
              },
              "HTTP400-InvalidSortQueryFormat": {
                "summary": "InvalidSortQueryFormat",
                "value": 256
              },
              "HTTP400-InvalidStartAndEndFiledDate": {
                "summary": "InvalidStartAndEndFiledDate",
                "value": 256
              },
              "HTTP400-InvalidStartAndEndTerminatedDate": {
                "summary": "InvalidStartAndEndTerminatedDate",
                "value": 256
              },
              "HTTP400-PageNumberParameterNotPassed": {
                "summary": "PageNumberParameterNotPassed",
                "value": 256
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": 256
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": 256
              },
              "HTTP400-RequestedPageNumberIsInvalid": {
                "summary": "RequestedPageNumberIsInvalid",
                "value": 256
              }
            },
            "in": "query",
            "name": "pacerCaseId",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "You can search using the case name even if you know one party. \n\n\tExamples: \n\n\tA search for case title john doe v will result in all cases with the case title John Doe v. \n\n\tA search for case title Acme, Inc. will result in all case titles starting with Acme, Inc.",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": null
              },
              "HTTP400-CaseTitleValidation": {
                "summary": "CaseTitleValidation",
                "value": "A"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseTitle",
            "schema": {
              "maxLength": 255,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "The divisional office in which the case was filed.",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": null
              },
              "HTTP400-InvalidCaseOfficeFormat": {
                "summary": "InvalidCaseOfficeFormat",
                "value": "cv"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseOffice",
            "schema": {
              "maxLength": 1,
              "type": "integer"
            }
          },
          {
            "description": "The sequence number of a given case. Ex 12345",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": null
              },
              "HTTP400-InvalidCaseSequenceNumberFormat": {
                "summary": "InvalidCaseSequenceNumberFormat",
                "value": "12-256"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseSequenceNumber",
            "schema": {
              "maxLength": 6,
              "type": "integer"
            }
          },
          {
            "description": "The two digits or four digits of the year in which the case was filed.",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": null
              },
              "HTTP400-InvalidCaseYearFormat": {
                "summary": "InvalidCaseYearFormat",
                "value": 2012
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseYear",
            "schema": {
              "maxLength": 4,
              "type": "integer"
            }
          },
          {
            "description": "Search can be narrowed down by passing caseTypes. Please use the <a href='https://docs.unicourt.com/pacer-glossary/appendix-a-case-types'>APPENDIX A: Case Types</a> mentioned in the API Documentation. \n\n\tScenario: When mulitple case types needs to be requested. \n\n\tImagine for a given case number 12-1234 I would like to search only with the case type civil(cv) and criminal(cr), My query in the request will look like the example mentioned below. \n\n\tExample: caseTypeArray=cv&caseTypeArray=cr",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": null
              },
              "HTTP400-InvalidCaseType": {
                "summary": "InvalidCaseType",
                "value": 1234
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseTypeArray",
            "schema": {
              "items": {
                "maxLength": 255,
                "nullable": true,
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "Search can be narrowed down by passing courtRegionId. Please use the <a href='https://docs.unicourt.com/pacer-glossary/appendix-b-court-regions'>APPENDIX B: Court Regions</a> mentioned in the API Documentation. \n\n\tScenario: When mulitple court region ids needs to be requested. \n\n\tImagine for a given case number 12-1234 I would like to search in the court regions California Central (cac) and California Eastern (cae), My query in the request will look like the example mentioned below. \n\n\tExample: courtRegionIdArray=cac&courtRegionIdArray=cae",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": null
              },
              "HTTP400-InvalidCourtRegionId": {
                "summary": "InvalidCourtRegionId",
                "value": "civil"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "courtRegionIdArray",
            "schema": {
              "items": {
                "maxLength": 255,
                "nullable": true,
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "Narrowing the search by limiting the cases which matches the criteria for case filed start date on or after the given date. Format: YYYY-MM-DDTHH:MM:SS+ZZ:zz, Ex: 2017-12-20T12:54:24+00:00",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": null
              },
              "HTTP400-InvalidStartAndEndFiledDate": {
                "summary": "InvalidStartAndEndFiledDate",
                "value": "2012-12-20T12:54:24+00:00"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseFiledStartDate",
            "schema": {
              "format": "date-time",
              "maxLength": 25,
              "minLength": 25,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "Narrowing the search by limiting the cases which matches the criteria for case filed end date on or before the given date. Format: YYYY-MM-DDTHH:MM:SS+ZZ:zz, Ex: 2017-12-20T12:54:24+00:00",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": null
              },
              "HTTP400-InvalidStartAndEndFiledDate": {
                "summary": "InvalidStartAndEndFiledDate",
                "value": "2012-12-19T12:54:24+00:00"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseFiledEndDate",
            "schema": {
              "format": "date-time",
              "maxLength": 25,
              "minLength": 25,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "Narrowing the search by limiting the cases which matches the criteria for case terminated start date on or after the given date. Format: YYYY-MM-DDTHH:MM:SS+ZZ:zz, Ex: 2017-12-20T12:54:24+00:00",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": null
              },
              "HTTP400-InvalidStartAndEndTerminatedDate": {
                "summary": "InvalidStartAndEndTerminatedDate",
                "value": "2017-12-20T12:54:24+00:00"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseTerminatedStartDate",
            "schema": {
              "format": "date-time",
              "maxLength": 25,
              "minLength": 25,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "Narrowing the search by limiting the cases which matches the criteria for case terminated end date on or before the given date. Format: YYYY-MM-DDTHH:MM:SS+ZZ:zz, Ex: 2017-12-20T12:54:24+00:00",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": null
              },
              "HTTP400-InvalidStartAndEndTerminatedDate": {
                "summary": "InvalidStartAndEndTerminatedDate",
                "value": "2017-12-19T12:54:24+00:00"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseTerminatedEndDate",
            "schema": {
              "format": "date-time",
              "maxLength": 25,
              "minLength": 25,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "The criteria based on which the search results are to be sorted. Please use the <a href='https://docs.unicourt.com/pacer-glossary/appendix-c-sort-parameter'>APPENDIX C: Sort Parameter - Sortable Case Parameters</a> mentioned in the API Documentation. The fields can be sorted either ASC or DESC. \n\n\tScenario: When mulitple sort paramters needs to be requested. \n\n\tImagine for a given case number 12-1234 I would like to sort the results in the Ascending order of courtId and caseId, My query in the request will look like the example mentioned below. \n\n\tExample: sortParameterQuery=courtId,ASC&caseId,ASC",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": null
              },
              "HTTP400-InvalidSortQuery": {
                "summary": "InvalidSortQuery",
                "value": "sort=caseYear"
              },
              "HTTP400-InvalidSortQueryFormat": {
                "summary": "InvalidSortQueryFormat",
                "value": "[sort=caseYear,DESC]"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "sortParameterQuery",
            "schema": {
              "default": "sort=caseYear,DESC",
              "maxLength": 100,
              "minLength": 5,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "Status of a case. 'closed' for a Terminated case, 'open' for Pending cases. If this parameter is not sent both cases that fall in open and closed will be queried.",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": null
              },
              "HTTP400-InvalidCaseStatus": {
                "summary": "InvalidCaseStatus",
                "value": "all"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseStatus",
            "schema": {
              "enum": [
                "open",
                "closed"
              ],
              "maxLength": 100,
              "minLength": 3,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "Page Number for a given Job ID or for the search your going to make.",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": 1
              },
              "HTTP400-CaseTitleValidation": {
                "summary": "CaseTitleValidation",
                "value": 1
              },
              "HTTP400-InvalidCaseNumberFormat": {
                "summary": "InvalidCaseNumberFormat",
                "value": 1
              },
              "HTTP400-InvalidCaseOfficeFormat": {
                "summary": "InvalidCaseOfficeFormat",
                "value": 1
              },
              "HTTP400-InvalidCaseSequenceNumberFormat": {
                "summary": "InvalidCaseSequenceNumberFormat",
                "value": 1
              },
              "HTTP400-InvalidCaseStatus": {
                "summary": "InvalidCaseStatus",
                "value": 1
              },
              "HTTP400-InvalidCaseType": {
                "summary": "InvalidCaseType",
                "value": 1
              },
              "HTTP400-InvalidCaseYearFormat": {
                "summary": "InvalidCaseYearFormat",
                "value": 1
              },
              "HTTP400-InvalidCourtRegionId": {
                "summary": "InvalidCourtRegionId",
                "value": 1
              },
              "HTTP400-InvalidPacerCaseIdFormat": {
                "summary": "InvalidPacerCaseIdFormat",
                "value": 1
              },
              "HTTP400-InvalidQueryParameters": {
                "summary": "InvalidQueryParameters",
                "value": 1
              },
              "HTTP400-InvalidSortQuery": {
                "summary": "InvalidSortQuery",
                "value": 1
              },
              "HTTP400-InvalidSortQueryFormat": {
                "summary": "InvalidSortQueryFormat",
                "value": 1
              },
              "HTTP400-InvalidStartAndEndFiledDate": {
                "summary": "InvalidStartAndEndFiledDate",
                "value": 1
              },
              "HTTP400-InvalidStartAndEndTerminatedDate": {
                "summary": "InvalidStartAndEndTerminatedDate",
                "value": 1
              },
              "HTTP400-PageNumberParameterNotPassed": {
                "summary": "PageNumberParameterNotPassed",
                "value": "sda"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": 1
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": 1
              },
              "HTTP400-RequestedPageNumberIsInvalid": {
                "summary": "RequestedPageNumberIsInvalid",
                "value": "one"
              },
              "HTTP400-RequiredCaseSearchValidation": {
                "summary": "RequiredCaseSearchValidation",
                "value": 1
              }
            },
            "in": "query",
            "name": "pageNumber",
            "schema": {
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "PCLCase": {
                    "$ref": "#/components/examples/PCLCase"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/PCLCase"
                }
              }
            },
            "description": "The request is recieved."
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "CaseTitleValidation": {
                    "$ref": "#/components/examples/FailurePCLCaseTitleValidation"
                  },
                  "ClientCodeNotEntered": {
                    "$ref": "#/components/examples/FailurePacerClientCodeNotEntered"
                  },
                  "InvalidCaseNumberFormat": {
                    "$ref": "#/components/examples/FailurePCLInvalidCaseNumberFormatForAppeal"
                  },
                  "InvalidCaseOfficeFormat": {
                    "$ref": "#/components/examples/FailurePCLInvalidCaseOffice"
                  },
                  "InvalidCaseSequenceNumberFormat": {
                    "$ref": "#/components/examples/FailurePCLInvalidCaseSequenceNumber"
                  },
                  "InvalidCaseStatus": {
                    "$ref": "#/components/examples/FailureInvalidCaseStatus"
                  },
                  "InvalidCaseType": {
                    "$ref": "#/components/examples/FailureInvalidCaseType"
                  },
                  "InvalidCaseYearFormat": {
                    "$ref": "#/components/examples/FailurePCLInvalidCaseYear"
                  },
                  "InvalidCourtRegionId": {
                    "$ref": "#/components/examples/FailureInvalidCourtRegionId"
                  },
                  "InvalidPacerUserIdOrPassword": {
                    "$ref": "#/components/examples/FailurePacerUserIdOrPassword"
                  },
                  "InvalidSortQuery": {
                    "$ref": "#/components/examples/FailureInvalidSortParameterPassed"
                  },
                  "InvalidSortQueryFormat": {
                    "$ref": "#/components/examples/FailureInvalidSortParameterQueryFormat"
                  },
                  "InvalidStartAndEndFiledDate": {
                    "$ref": "#/components/examples/FailurePCLCaseFiledDateValidation"
                  },
                  "InvalidStartAndEndTerminatedDate": {
                    "$ref": "#/components/examples/FailurePCLCaseTerminatedDateValidation"
                  },
                  "PacerAccountDisabled": {
                    "$ref": "#/components/examples/FailurePacerAccountDisabled"
                  },
                  "PacerCredentialsNotFound": {
                    "$ref": "#/components/examples/FailurePacerCredentialsNotFound"
                  },
                  "PageNumberParameterNotPassed": {
                    "$ref": "#/components/examples/FailurePageNumberIdNotPassed"
                  },
                  "RequestedClientCodeIsInvalid": {
                    "$ref": "#/components/examples/FailureClientCodeIsInvalid"
                  },
                  "RequestedPacerUserIdIsInvalid": {
                    "$ref": "#/components/examples/FailurePacerUserIdIsInvalid"
                  },
                  "RequestedPageNumberIsInvalid": {
                    "$ref": "#/components/examples/FailureInvalidPageNumber"
                  },
                  "RequiredCaseSearchValidation": {
                    "$ref": "#/components/examples/FailurePCLRequiredFieldCaseSearch"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Invalid Input Parameter"
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "ServerError": {
                    "$ref": "#/components/examples/FailureServerError"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Server Error"
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "PACER Case Locator Search API for All Courts.",
        "tags": [
          "PACER API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [],
      "x-api-name": "PCLCaseCriminalCourtsAPI",
      "x-unicourt-tag": "PACERAPIs"
    },
    "/pacerCaseLocator/caseSearch/multiDistrictCourts": {
      "get": {
        "description": "PACER Case Locator Case Search API for MultiDistrict Courts.",
        "operationId": "MultiDistrictCourtsPacerCaseLocatorCaseSearch",
        "parameters": [
          {
            "description": "User ID or User Name of the PACER Account used while signing in to PACER.",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": "john_doe"
              },
              "HTTP400-CaseTitleValidation": {
                "summary": "CaseTitleValidation",
                "value": "john_doe"
              },
              "HTTP400-ClientCodeNotEntered": {
                "summary": "ClientCodeNotEntered",
                "value": "john_doe"
              },
              "HTTP400-InvalidCaseNumberFormat": {
                "summary": "InvalidCaseNumberFormat",
                "value": "john_doe"
              },
              "HTTP400-InvalidCaseOfficeFormat": {
                "summary": "InvalidCaseOfficeFormat",
                "value": "john_doe"
              },
              "HTTP400-InvalidCaseSequenceNumberFormat": {
                "summary": "InvalidCaseSequenceNumberFormat",
                "value": "john_doe"
              },
              "HTTP400-InvalidCaseStatus": {
                "summary": "InvalidCaseStatus",
                "value": "john_doe"
              },
              "HTTP400-InvalidCaseType": {
                "summary": "InvalidCaseType",
                "value": "john_doe"
              },
              "HTTP400-InvalidCaseYearFormat": {
                "summary": "InvalidCaseYearFormat",
                "value": "john_doe"
              },
              "HTTP400-InvalidClientCodeEntered": {
                "summary": "InvalidClientCodeEntered",
                "value": "john_doe"
              },
              "HTTP400-InvalidCourtRegionId": {
                "summary": "InvalidCourtRegionId",
                "value": "john_doe"
              },
              "HTTP400-InvalidPacerCaseIdFormat": {
                "summary": "InvalidPacerCaseIdFormat",
                "value": "john_doe"
              },
              "HTTP400-InvalidPacerUserIdOrPassword": {
                "summary": "InvalidPacerUserIdOrPassword",
                "value": "john_doe"
              },
              "HTTP400-InvalidQueryParameters": {
                "summary": "InvalidQueryParameters",
                "value": "john_doe"
              },
              "HTTP400-InvalidSortQuery": {
                "summary": "InvalidSortQuery",
                "value": "john_doe"
              },
              "HTTP400-InvalidSortQueryFormat": {
                "summary": "InvalidSortQueryFormat",
                "value": "john_doe"
              },
              "HTTP400-InvalidStartAndEndFiledDate": {
                "summary": "InvalidStartAndEndFiledDate",
                "value": "john_doe"
              },
              "HTTP400-InvalidStartAndEndTerminatedDate": {
                "summary": "InvalidStartAndEndTerminatedDate",
                "value": "john_doe"
              },
              "HTTP400-PacerAccountDisabled": {
                "summary": "PacerAccountDisabled",
                "value": "john_doe"
              },
              "HTTP400-PacerCredentialsNotFound": {
                "summary": "PacerCredentialsNotFound",
                "value": "john_doe"
              },
              "HTTP400-PageNumberParameterNotPassed": {
                "summary": "PageNumberParameterNotPassed",
                "value": "john_doe"
              },
              "HTTP400-PasswordIsNotMinLength": {
                "summary": "PasswordIsNotMinLength",
                "value": "john_doe"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": "john_doe"
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": "john$doe123"
              },
              "HTTP400-RequestedPageNumberIsInvalid": {
                "summary": "RequestedPageNumberIsInvalid",
                "value": "john_doe"
              },
              "HTTP400-RequiredCaseSearchValidation": {
                "summary": "RequiredCaseSearchValidation",
                "value": "john_doe"
              },
              "HTTP400-TooManyLoginAttempts": {
                "summary": "TooManyLoginAttempts",
                "value": "john_doe"
              },
              "HTTP400-UsernameIsNotMinLength": {
                "summary": "UsernameIsNotMinLength",
                "value": "john_doe"
              }
            },
            "in": "query",
            "name": "pacerUserId",
            "required": true,
            "schema": {
              "example": "johndoe",
              "maxLength": 20,
              "minLength": 6,
              "nullable": false,
              "type": "string"
            }
          },
          {
            "description": "Client Code used while signing in to PACER account.",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": "john"
              },
              "HTTP400-CaseTitleValidation": {
                "summary": "CaseTitleValidation",
                "value": "john"
              },
              "HTTP400-ClientCodeNotEntered": {
                "summary": "ClientCodeNotEntered",
                "value": "john"
              },
              "HTTP400-InvalidCaseNumberFormat": {
                "summary": "InvalidCaseNumberFormat",
                "value": "john"
              },
              "HTTP400-InvalidCaseOfficeFormat": {
                "summary": "InvalidCaseOfficeFormat",
                "value": "john"
              },
              "HTTP400-InvalidCaseSequenceNumberFormat": {
                "summary": "InvalidCaseSequenceNumberFormat",
                "value": "john"
              },
              "HTTP400-InvalidCaseStatus": {
                "summary": "InvalidCaseStatus",
                "value": "john"
              },
              "HTTP400-InvalidCaseType": {
                "summary": "InvalidCaseType",
                "value": "john"
              },
              "HTTP400-InvalidCaseYearFormat": {
                "summary": "InvalidCaseYearFormat",
                "value": "john"
              },
              "HTTP400-InvalidClientCodeEntered": {
                "summary": "InvalidClientCodeEntered",
                "value": "john"
              },
              "HTTP400-InvalidCourtRegionId": {
                "summary": "InvalidCourtRegionId",
                "value": "john"
              },
              "HTTP400-InvalidPacerCaseIdFormat": {
                "summary": "InvalidPacerCaseIdFormat",
                "value": "john"
              },
              "HTTP400-InvalidPacerUserIdOrPassword": {
                "summary": "InvalidPacerUserIdOrPassword",
                "value": "john"
              },
              "HTTP400-InvalidQueryParameters": {
                "summary": "InvalidQueryParameters",
                "value": "john"
              },
              "HTTP400-InvalidSortQuery": {
                "summary": "InvalidSortQuery",
                "value": "john"
              },
              "HTTP400-InvalidSortQueryFormat": {
                "summary": "InvalidSortQueryFormat",
                "value": "john"
              },
              "HTTP400-InvalidStartAndEndFiledDate": {
                "summary": "InvalidStartAndEndFiledDate",
                "value": "john"
              },
              "HTTP400-InvalidStartAndEndTerminatedDate": {
                "summary": "InvalidStartAndEndTerminatedDate",
                "value": "john"
              },
              "HTTP400-PacerAccountDisabled": {
                "summary": "PacerAccountDisabled",
                "value": "john"
              },
              "HTTP400-PacerCredentialsNotFound": {
                "summary": "PacerCredentialsNotFound",
                "value": "john"
              },
              "HTTP400-PageNumberParameterNotPassed": {
                "summary": "PageNumberParameterNotPassed",
                "value": "john"
              },
              "HTTP400-PasswordIsNotMinLength": {
                "summary": "PasswordIsNotMinLength",
                "value": "john"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": "john$123"
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": "john"
              },
              "HTTP400-RequestedPageNumberIsInvalid": {
                "summary": "RequestedPageNumberIsInvalid",
                "value": "john"
              },
              "HTTP400-RequiredCaseSearchValidation": {
                "summary": "RequiredCaseSearchValidation",
                "value": "john"
              },
              "HTTP400-TooManyLoginAttempts": {
                "summary": "TooManyLoginAttempts",
                "value": "john"
              },
              "HTTP400-UsernameIsNotMinLength": {
                "summary": "UsernameIsNotMinLength",
                "value": "john"
              }
            },
            "in": "query",
            "name": "pacerClientCode",
            "required": true,
            "schema": {
              "example": "john",
              "maxLength": 32,
              "minLength": 1,
              "nullable": false,
              "type": "string"
            }
          },
          {
            "description": "If the court type is selected as All or if you need data for a specific case number format, then you need to use this option. Case numbers may be entered in each of the following formats: \n\n\tyy-nnnnn \n\n\tyy-tp-nnnnn \n\n\tyy tp nnnnn \n\n\tyytpnnnnn \n\n\to:yy-nnnnn \n\n\to:yy-tp-nnnnn \n\n\to:yy tp nnnnn \n\n\to:yytpnnnnn \n\nwhere: \n\nyy  case year (may be 2 or 4 digits) \n\nnnnnn  case number (up to 5 digits) \n\ntp  case type (up to 2 characters) \n\no  office where the case was filed (1 digit).",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": null
              },
              "HTTP400-CaseTitleValidation": {
                "summary": "CaseTitleValidation",
                "value": "12-256"
              },
              "HTTP400-FailurePCLInvalidJPMLNumber": {
                "summary": "InvalidCaseNumberFormat",
                "value": "12-256"
              },
              "HTTP400-InvalidCaseNumberFormat": {
                "summary": "InvalidCaseNumberFormat",
                "value": "12-256-WDR"
              },
              "HTTP400-InvalidCaseOfficeFormat": {
                "summary": "InvalidCaseOfficeFormat",
                "value": "12-256"
              },
              "HTTP400-InvalidCaseSequenceNumberFormat": {
                "summary": "InvalidCaseSequenceNumberFormat",
                "value": "12-256"
              },
              "HTTP400-InvalidCaseStatus": {
                "summary": "InvalidCaseStatus",
                "value": "12-256"
              },
              "HTTP400-InvalidCaseType": {
                "summary": "InvalidCaseType",
                "value": "12-256"
              },
              "HTTP400-InvalidCaseYearFormat": {
                "summary": "InvalidCaseYearFormat",
                "value": "12-256"
              },
              "HTTP400-InvalidCourtRegionId": {
                "summary": "InvalidCourtRegionId",
                "value": "12-256"
              },
              "HTTP400-InvalidPacerCaseIdFormat": {
                "summary": "InvalidPacerCaseIdFormat",
                "value": "12-256"
              },
              "HTTP400-InvalidQueryParameters": {
                "summary": "InvalidQueryParameters",
                "value": "12-256"
              },
              "HTTP400-InvalidSortQuery": {
                "summary": "InvalidSortQuery",
                "value": "12-256"
              },
              "HTTP400-InvalidSortQueryFormat": {
                "summary": "InvalidSortQueryFormat",
                "value": "12-256"
              },
              "HTTP400-InvalidStartAndEndFiledDate": {
                "summary": "InvalidStartAndEndFiledDate",
                "value": "12-256"
              },
              "HTTP400-InvalidStartAndEndTerminatedDate": {
                "summary": "InvalidStartAndEndTerminatedDate",
                "value": "12-256"
              },
              "HTTP400-PageNumberParameterNotPassed": {
                "summary": "PageNumberParameterNotPassed",
                "value": "12-256"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": "12-256"
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": "12-256"
              },
              "HTTP400-RequestedPageNumberIsInvalid": {
                "summary": "RequestedPageNumberIsInvalid",
                "value": "12-256"
              },
              "HTTP400-RequiredCaseSearchValidation": {
                "summary": "RequiredCaseSearchValidation",
                "value": null
              }
            },
            "in": "query",
            "name": "caseNumber",
            "schema": {
              "example": "12-1234",
              "maxLength": 50,
              "minLength": 3,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "Master JPML Case Number.",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": 875
              },
              "HTTP400-InvalidJPMLNumberFormat": {
                "summary": "InvalidJPMLNumberFormat",
                "value": "857-WDR"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "jpmlNumber",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Sequentially generated number that identifies the case in PACER system.",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": null
              },
              "HTTP400-CaseTitleValidation": {
                "summary": "CaseTitleValidation",
                "value": 256
              },
              "HTTP400-FailurePCLInvalidJPMLNumber": {
                "summary": "InvalidCaseNumberFormat",
                "value": 256
              },
              "HTTP400-InvalidCaseNumberFormat": {
                "summary": "InvalidCaseNumberFormat",
                "value": 256
              },
              "HTTP400-InvalidCaseOfficeFormat": {
                "summary": "InvalidCaseOfficeFormat",
                "value": 256
              },
              "HTTP400-InvalidCaseSequenceNumberFormat": {
                "summary": "InvalidCaseSequenceNumberFormat",
                "value": 256
              },
              "HTTP400-InvalidCaseStatus": {
                "summary": "InvalidCaseStatus",
                "value": 256
              },
              "HTTP400-InvalidCaseType": {
                "summary": "InvalidCaseType",
                "value": 256
              },
              "HTTP400-InvalidCaseYearFormat": {
                "summary": "InvalidCaseYearFormat",
                "value": 256
              },
              "HTTP400-InvalidCourtRegionId": {
                "summary": "InvalidCourtRegionId",
                "value": 256
              },
              "HTTP400-InvalidPacerCaseIdFormat": {
                "summary": "InvalidPacerCaseIdFormat",
                "value": "pacer"
              },
              "HTTP400-InvalidQueryParameters": {
                "summary": "InvalidQueryParameters",
                "value": 256
              },
              "HTTP400-InvalidSortQuery": {
                "summary": "InvalidSortQuery",
                "value": 256
              },
              "HTTP400-InvalidSortQueryFormat": {
                "summary": "InvalidSortQueryFormat",
                "value": 256
              },
              "HTTP400-InvalidStartAndEndFiledDate": {
                "summary": "InvalidStartAndEndFiledDate",
                "value": 256
              },
              "HTTP400-InvalidStartAndEndTerminatedDate": {
                "summary": "InvalidStartAndEndTerminatedDate",
                "value": 256
              },
              "HTTP400-PageNumberParameterNotPassed": {
                "summary": "PageNumberParameterNotPassed",
                "value": 256
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": 256
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": 256
              },
              "HTTP400-RequestedPageNumberIsInvalid": {
                "summary": "RequestedPageNumberIsInvalid",
                "value": 256
              }
            },
            "in": "query",
            "name": "pacerCaseId",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "You can search using the case name even if you know one party. \n\n\tExamples: \n\n\tA search for case title john doe v will result in all cases with the case title John Doe v. \n\n\tA search for case title Acme, Inc. will result in all case titles starting with Acme, Inc.",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": null
              },
              "HTTP400-CaseTitleValidation": {
                "summary": "CaseTitleValidation",
                "value": "A"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseTitle",
            "schema": {
              "maxLength": 255,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "The divisional office in which the case was filed.",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": null
              },
              "HTTP400-InvalidCaseOfficeFormat": {
                "summary": "InvalidCaseOfficeFormat",
                "value": "cv"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseOffice",
            "schema": {
              "maxLength": 1,
              "type": "integer"
            }
          },
          {
            "description": "The sequence number of a given case. Ex 12345",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": null
              },
              "HTTP400-InvalidCaseSequenceNumberFormat": {
                "summary": "InvalidCaseSequenceNumberFormat",
                "value": "12-256"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseSequenceNumber",
            "schema": {
              "maxLength": 6,
              "type": "integer"
            }
          },
          {
            "description": "The two digits or four digits of the year in which the case was filed.",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": null
              },
              "HTTP400-InvalidCaseYearFormat": {
                "summary": "InvalidCaseYearFormat",
                "value": 2012
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseYear",
            "schema": {
              "maxLength": 4,
              "type": "integer"
            }
          },
          {
            "description": "Search can be narrowed down by passing caseTypes. Please use the <a href='https://docs.unicourt.com/pacer-glossary/appendix-a-case-types'>APPENDIX A: Case Types</a> mentioned in the API Documentation. \n\n\tScenario: When mulitple case types needs to be requested. \n\n\tImagine for a given case number 12-1234 I would like to search only with the case type civil(cv) and criminal(cr), My query in the request will look like the example mentioned below. \n\n\tExample: caseTypeArray=cv&caseTypeArray=cr",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": null
              },
              "HTTP400-InvalidCaseType": {
                "summary": "InvalidCaseType",
                "value": 1234
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseTypeArray",
            "schema": {
              "items": {
                "maxLength": 255,
                "nullable": true,
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "Search can be narrowed down by passing courtRegionId. Please use the <a href='https://docs.unicourt.com/pacer-glossary/appendix-b-court-regions'>APPENDIX B: Court Regions</a> mentioned in the API Documentation. \n\n\tScenario: When mulitple court region ids needs to be requested. \n\n\tImagine for a given case number 12-1234 I would like to search in the court regions California Central (cac) and California Eastern (cae), My query in the request will look like the example mentioned below. \n\n\tExample: courtRegionIdArray=cac&courtRegionIdArray=cae",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": null
              },
              "HTTP400-InvalidCourtRegionId": {
                "summary": "InvalidCourtRegionId",
                "value": "civil"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "courtRegionIdArray",
            "schema": {
              "items": {
                "maxLength": 255,
                "nullable": true,
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "Narrowing the search by limiting the cases which matches the criteria for case filed start date on or after the given date. Format: YYYY-MM-DDTHH:MM:SS+ZZ:zz, Ex: 2017-12-20T12:54:24+00:00",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": null
              },
              "HTTP400-InvalidStartAndEndFiledDate": {
                "summary": "InvalidStartAndEndFiledDate",
                "value": "2012-12-20T12:54:24+00:00"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseFiledStartDate",
            "schema": {
              "format": "date-time",
              "maxLength": 25,
              "minLength": 25,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "Narrowing the search by limiting the cases which matches the criteria for case filed end date on or before the given date. Format: YYYY-MM-DDTHH:MM:SS+ZZ:zz, Ex: 2017-12-20T12:54:24+00:00",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": null
              },
              "HTTP400-InvalidStartAndEndFiledDate": {
                "summary": "InvalidStartAndEndFiledDate",
                "value": "2012-12-19T12:54:24+00:00"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseFiledEndDate",
            "schema": {
              "format": "date-time",
              "maxLength": 25,
              "minLength": 25,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "Narrowing the search by limiting the cases which matches the criteria for case terminated start date on or after the given date. Format: YYYY-MM-DDTHH:MM:SS+ZZ:zz, Ex: 2017-12-20T12:54:24+00:00",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": null
              },
              "HTTP400-InvalidStartAndEndTerminatedDate": {
                "summary": "InvalidStartAndEndTerminatedDate",
                "value": "2017-12-20T12:54:24+00:00"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseTerminatedStartDate",
            "schema": {
              "format": "date-time",
              "maxLength": 25,
              "minLength": 25,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "Narrowing the search by limiting the cases which matches the criteria for case terminated end date on or before the given date. Format: YYYY-MM-DDTHH:MM:SS+ZZ:zz, Ex: 2017-12-20T12:54:24+00:00",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": null
              },
              "HTTP400-InvalidStartAndEndTerminatedDate": {
                "summary": "InvalidStartAndEndTerminatedDate",
                "value": "2017-12-19T12:54:24+00:00"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseTerminatedEndDate",
            "schema": {
              "format": "date-time",
              "maxLength": 25,
              "minLength": 25,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "The criteria based on which the search results are to be sorted. Please use the <a href='https://docs.unicourt.com/pacer-glossary/appendix-c-sort-parameter'>APPENDIX C: Sort Parameter - Sortable Case Parameters</a> mentioned in the API Documentation. The fields can be sorted either ASC or DESC. \n\n\tScenario: When mulitple sort paramters needs to be requested. \n\n\tImagine for a given case number 12-1234 I would like to sort the results in the Ascending order of courtId and caseId, My query in the request will look like the example mentioned below. \n\n\tExample: sortParameterQuery=courtId,ASC&caseId,ASC",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": null
              },
              "HTTP400-InvalidSortQuery": {
                "summary": "InvalidSortQuery",
                "value": "sort=caseYear"
              },
              "HTTP400-InvalidSortQueryFormat": {
                "summary": "InvalidSortQueryFormat",
                "value": "[sort=caseYear,DESC]"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "sortParameterQuery",
            "schema": {
              "default": "sort=caseYear,DESC",
              "maxLength": 100,
              "minLength": 5,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "Status of a case. 'closed' for a Terminated case, 'open' for Pending cases. If this parameter is not sent both cases that fall in open and closed will be queried.",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": null
              },
              "HTTP400-InvalidCaseStatus": {
                "summary": "InvalidCaseStatus",
                "value": "all"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseStatus",
            "schema": {
              "enum": [
                "open",
                "closed"
              ],
              "maxLength": 100,
              "minLength": 3,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "Page Number for a given Job ID or for the search your going to make.",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": 1
              },
              "HTTP400-CaseTitleValidation": {
                "summary": "CaseTitleValidation",
                "value": 1
              },
              "HTTP400-FailurePCLInvalidJPMLNumber": {
                "summary": "InvalidCaseNumberFormat",
                "value": 1
              },
              "HTTP400-InvalidCaseNumberFormat": {
                "summary": "InvalidCaseNumberFormat",
                "value": 1
              },
              "HTTP400-InvalidCaseOfficeFormat": {
                "summary": "InvalidCaseOfficeFormat",
                "value": 1
              },
              "HTTP400-InvalidCaseSequenceNumberFormat": {
                "summary": "InvalidCaseSequenceNumberFormat",
                "value": 1
              },
              "HTTP400-InvalidCaseStatus": {
                "summary": "InvalidCaseStatus",
                "value": 1
              },
              "HTTP400-InvalidCaseType": {
                "summary": "InvalidCaseType",
                "value": 1
              },
              "HTTP400-InvalidCaseYearFormat": {
                "summary": "InvalidCaseYearFormat",
                "value": 1
              },
              "HTTP400-InvalidCourtRegionId": {
                "summary": "InvalidCourtRegionId",
                "value": 1
              },
              "HTTP400-InvalidPacerCaseIdFormat": {
                "summary": "InvalidPacerCaseIdFormat",
                "value": 1
              },
              "HTTP400-InvalidQueryParameters": {
                "summary": "InvalidQueryParameters",
                "value": 1
              },
              "HTTP400-InvalidSortQuery": {
                "summary": "InvalidSortQuery",
                "value": 1
              },
              "HTTP400-InvalidSortQueryFormat": {
                "summary": "InvalidSortQueryFormat",
                "value": 1
              },
              "HTTP400-InvalidStartAndEndFiledDate": {
                "summary": "InvalidStartAndEndFiledDate",
                "value": 1
              },
              "HTTP400-InvalidStartAndEndTerminatedDate": {
                "summary": "InvalidStartAndEndTerminatedDate",
                "value": 1
              },
              "HTTP400-PageNumberParameterNotPassed": {
                "summary": "PageNumberParameterNotPassed",
                "value": null
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": 1
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": 1
              },
              "HTTP400-RequestedPageNumberIsInvalid": {
                "summary": "RequestedPageNumberIsInvalid",
                "value": "one"
              },
              "HTTP400-RequiredCaseSearchValidation": {
                "summary": "RequiredCaseSearchValidation",
                "value": 1
              }
            },
            "in": "query",
            "name": "pageNumber",
            "schema": {
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "PCLCase": {
                    "$ref": "#/components/examples/PCLCase"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/PCLCase"
                }
              }
            },
            "description": "The request is recieved."
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "CaseTitleValidation": {
                    "$ref": "#/components/examples/FailurePCLCaseTitleValidation"
                  },
                  "ClientCodeNotEntered": {
                    "$ref": "#/components/examples/FailurePacerClientCodeNotEntered"
                  },
                  "InvalidCaseNumberFormat": {
                    "$ref": "#/components/examples/FailurePCLInvalidCaseNumberFormatForAppeal"
                  },
                  "InvalidCaseOfficeFormat": {
                    "$ref": "#/components/examples/FailurePCLInvalidCaseOffice"
                  },
                  "InvalidCaseSequenceNumberFormat": {
                    "$ref": "#/components/examples/FailurePCLInvalidCaseSequenceNumber"
                  },
                  "InvalidCaseStatus": {
                    "$ref": "#/components/examples/FailureInvalidCaseStatus"
                  },
                  "InvalidCaseType": {
                    "$ref": "#/components/examples/FailureInvalidCaseType"
                  },
                  "InvalidCaseYearFormat": {
                    "$ref": "#/components/examples/FailurePCLInvalidCaseYear"
                  },
                  "InvalidCourtRegionId": {
                    "$ref": "#/components/examples/FailureInvalidCourtRegionId"
                  },
                  "InvalidJPMLNumberFormat": {
                    "$ref": "#/components/examples/FailurePCLInvalidJPMLNumber"
                  },
                  "InvalidPacerUserIdOrPassword": {
                    "$ref": "#/components/examples/FailurePacerUserIdOrPassword"
                  },
                  "InvalidSortQuery": {
                    "$ref": "#/components/examples/FailureInvalidSortParameterPassed"
                  },
                  "InvalidSortQueryFormat": {
                    "$ref": "#/components/examples/FailureInvalidSortParameterQueryFormat"
                  },
                  "InvalidStartAndEndFiledDate": {
                    "$ref": "#/components/examples/FailurePCLCaseFiledDateValidation"
                  },
                  "InvalidStartAndEndTerminatedDate": {
                    "$ref": "#/components/examples/FailurePCLCaseTerminatedDateValidation"
                  },
                  "PacerAccountDisabled": {
                    "$ref": "#/components/examples/FailurePacerAccountDisabled"
                  },
                  "PacerCredentialsNotFound": {
                    "$ref": "#/components/examples/FailurePacerCredentialsNotFound"
                  },
                  "PageNumberParameterNotPassed": {
                    "$ref": "#/components/examples/FailurePageNumberIdNotPassed"
                  },
                  "RequestedClientCodeIsInvalid": {
                    "$ref": "#/components/examples/FailureClientCodeIsInvalid"
                  },
                  "RequestedPacerUserIdIsInvalid": {
                    "$ref": "#/components/examples/FailurePacerUserIdIsInvalid"
                  },
                  "RequestedPageNumberIsInvalid": {
                    "$ref": "#/components/examples/FailureInvalidPageNumber"
                  },
                  "RequiredCaseSearchValidation": {
                    "$ref": "#/components/examples/FailurePCLRequiredFieldCaseSearch"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Invalid Input Parameter"
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "ServerError": {
                    "$ref": "#/components/examples/FailureServerError"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Server Error"
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "PACER Case Locator Search API for All Courts.",
        "tags": [
          "PACER API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [],
      "x-api-name": "PCLCaseMultiDistrictCourtsAPI",
      "x-unicourt-tag": "PACERAPIs"
    },
    "/pacerCaseLocator/partySearch/allCourts": {
      "get": {
        "description": "PACER Case Locator Search API for All Courts.",
        "operationId": "AllCourtsPacerCaseLocatorPartySearch",
        "parameters": [
          {
            "description": "User ID or User Name of the PACER Account used while signing in to PACER.",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": "john_doe"
              },
              "HTTP400-CaseTitleValidation": {
                "summary": "CaseTitleValidation",
                "value": "john_doe"
              },
              "HTTP400-ClientCodeNotEntered": {
                "summary": "ClientCodeNotEntered",
                "value": "john_doe"
              },
              "HTTP400-InvalidCaseNumberFormat": {
                "summary": "InvalidCaseNumberFormat",
                "value": "john_doe"
              },
              "HTTP400-InvalidCaseOfficeFormat": {
                "summary": "InvalidCaseOfficeFormat",
                "value": "john_doe"
              },
              "HTTP400-InvalidCaseSequenceNumberFormat": {
                "summary": "InvalidCaseSequenceNumberFormat",
                "value": "john_doe"
              },
              "HTTP400-InvalidCaseStatus": {
                "summary": "InvalidCaseStatus",
                "value": "john_doe"
              },
              "HTTP400-InvalidCaseType": {
                "summary": "InvalidCaseType",
                "value": "john_doe"
              },
              "HTTP400-InvalidCaseYearFormat": {
                "summary": "InvalidCaseYearFormat",
                "value": "john_doe"
              },
              "HTTP400-InvalidClientCodeEntered": {
                "summary": "InvalidClientCodeEntered",
                "value": "john_doe"
              },
              "HTTP400-InvalidCourtRegionId": {
                "summary": "InvalidCourtRegionId",
                "value": "john_doe"
              },
              "HTTP400-InvalidPacerCaseIdFormat": {
                "summary": "InvalidPacerCaseIdFormat",
                "value": "john_doe"
              },
              "HTTP400-InvalidPacerUserIdOrPassword": {
                "summary": "InvalidPacerUserIdOrPassword",
                "value": "john_doe"
              },
              "HTTP400-InvalidQueryParameters": {
                "summary": "InvalidQueryParameters",
                "value": "john_doe"
              },
              "HTTP400-InvalidSortQuery": {
                "summary": "InvalidSortQuery",
                "value": "john_doe"
              },
              "HTTP400-InvalidSortQueryFormat": {
                "summary": "InvalidSortQueryFormat",
                "value": "john_doe"
              },
              "HTTP400-InvalidStartAndEndFiledDate": {
                "summary": "InvalidStartAndEndFiledDate",
                "value": "john_doe"
              },
              "HTTP400-InvalidStartAndEndTerminatedDate": {
                "summary": "InvalidStartAndEndTerminatedDate",
                "value": "john_doe"
              },
              "HTTP400-PacerAccountDisabled": {
                "summary": "PacerAccountDisabled",
                "value": "john_doe"
              },
              "HTTP400-PacerCredentialsNotFound": {
                "summary": "PacerCredentialsNotFound",
                "value": "john_doe"
              },
              "HTTP400-PageNumberParameterNotPassed": {
                "summary": "PageNumberParameterNotPassed",
                "value": "john_doe"
              },
              "HTTP400-PasswordIsNotMinLength": {
                "summary": "PasswordIsNotMinLength",
                "value": "john_doe"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": "john_doe"
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": "john$doe123"
              },
              "HTTP400-RequestedPageNumberIsInvalid": {
                "summary": "RequestedPageNumberIsInvalid",
                "value": "john_doe"
              },
              "HTTP400-RequiredCaseSearchValidation": {
                "summary": "RequiredCaseSearchValidation",
                "value": "john_doe"
              },
              "HTTP400-TooManyLoginAttempts": {
                "summary": "TooManyLoginAttempts",
                "value": "john_doe"
              },
              "HTTP400-UsernameIsNotMinLength": {
                "summary": "UsernameIsNotMinLength",
                "value": "john_doe"
              }
            },
            "in": "query",
            "name": "pacerUserId",
            "required": true,
            "schema": {
              "example": "johndoe",
              "maxLength": 20,
              "minLength": 6,
              "nullable": false,
              "type": "string"
            }
          },
          {
            "description": "Client Code used while signing in to PACER account.",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": "john"
              },
              "HTTP400-CaseTitleValidation": {
                "summary": "CaseTitleValidation",
                "value": "john"
              },
              "HTTP400-ClientCodeNotEntered": {
                "summary": "ClientCodeNotEntered",
                "value": "john"
              },
              "HTTP400-InvalidCaseNumberFormat": {
                "summary": "InvalidCaseNumberFormat",
                "value": "john"
              },
              "HTTP400-InvalidCaseOfficeFormat": {
                "summary": "InvalidCaseOfficeFormat",
                "value": "john"
              },
              "HTTP400-InvalidCaseSequenceNumberFormat": {
                "summary": "InvalidCaseSequenceNumberFormat",
                "value": "john"
              },
              "HTTP400-InvalidCaseStatus": {
                "summary": "InvalidCaseStatus",
                "value": "john"
              },
              "HTTP400-InvalidCaseType": {
                "summary": "InvalidCaseType",
                "value": "john"
              },
              "HTTP400-InvalidCaseYearFormat": {
                "summary": "InvalidCaseYearFormat",
                "value": "john"
              },
              "HTTP400-InvalidClientCodeEntered": {
                "summary": "InvalidClientCodeEntered",
                "value": "john"
              },
              "HTTP400-InvalidCourtRegionId": {
                "summary": "InvalidCourtRegionId",
                "value": "john"
              },
              "HTTP400-InvalidPacerCaseIdFormat": {
                "summary": "InvalidPacerCaseIdFormat",
                "value": "john"
              },
              "HTTP400-InvalidPacerUserIdOrPassword": {
                "summary": "InvalidPacerUserIdOrPassword",
                "value": "john"
              },
              "HTTP400-InvalidQueryParameters": {
                "summary": "InvalidQueryParameters",
                "value": "john"
              },
              "HTTP400-InvalidSortQuery": {
                "summary": "InvalidSortQuery",
                "value": "john"
              },
              "HTTP400-InvalidSortQueryFormat": {
                "summary": "InvalidSortQueryFormat",
                "value": "john"
              },
              "HTTP400-InvalidStartAndEndFiledDate": {
                "summary": "InvalidStartAndEndFiledDate",
                "value": "john"
              },
              "HTTP400-InvalidStartAndEndTerminatedDate": {
                "summary": "InvalidStartAndEndTerminatedDate",
                "value": "john"
              },
              "HTTP400-PacerAccountDisabled": {
                "summary": "PacerAccountDisabled",
                "value": "john"
              },
              "HTTP400-PacerCredentialsNotFound": {
                "summary": "PacerCredentialsNotFound",
                "value": "john"
              },
              "HTTP400-PageNumberParameterNotPassed": {
                "summary": "PageNumberParameterNotPassed",
                "value": "john"
              },
              "HTTP400-PasswordIsNotMinLength": {
                "summary": "PasswordIsNotMinLength",
                "value": "john"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": "john$123"
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": "john"
              },
              "HTTP400-RequestedPageNumberIsInvalid": {
                "summary": "RequestedPageNumberIsInvalid",
                "value": "john"
              },
              "HTTP400-RequiredCaseSearchValidation": {
                "summary": "RequiredCaseSearchValidation",
                "value": "john"
              },
              "HTTP400-TooManyLoginAttempts": {
                "summary": "TooManyLoginAttempts",
                "value": "john"
              },
              "HTTP400-UsernameIsNotMinLength": {
                "summary": "UsernameIsNotMinLength",
                "value": "john"
              }
            },
            "in": "query",
            "name": "pacerClientCode",
            "required": true,
            "schema": {
              "example": "john",
              "maxLength": 32,
              "minLength": 1,
              "nullable": false,
              "type": "string"
            }
          },
          {
            "description": "If the court type is selected as All or if you need data for a specific case number format, then you need to use this option. Case numbers may be entered in each of the following formats: \n\n\tyy-nnnnn \n\n\tyy-tp-nnnnn \n\n\tyy tp nnnnn \n\n\tyytpnnnnn \n\n\to:yy-nnnnn \n\n\to:yy-tp-nnnnn \n\n\to:yy tp nnnnn \n\n\to:yytpnnnnn \n\nwhere: \n\nyy  case year (may be 2 or 4 digits) \n\nnnnnn  case number (up to 5 digits) \n\ntp  case type (up to 2 characters) \n\no  office where the case was filed (1 digit).",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": "21-119"
              },
              "HTTP400-CaseTitleValidation": {
                "summary": "CaseTitleValidation",
                "value": "12-256"
              },
              "HTTP400-InvalidCaseNumberFormat": {
                "summary": "InvalidCaseNumberFormat",
                "value": "12-256-WDR"
              },
              "HTTP400-InvalidCaseOfficeFormat": {
                "summary": "InvalidCaseOfficeFormat",
                "value": "12-256"
              },
              "HTTP400-InvalidCaseSequenceNumberFormat": {
                "summary": "InvalidCaseSequenceNumberFormat",
                "value": "12-256"
              },
              "HTTP400-InvalidCaseStatus": {
                "summary": "InvalidCaseStatus",
                "value": "12-256"
              },
              "HTTP400-InvalidCaseType": {
                "summary": "InvalidCaseType",
                "value": "12-256"
              },
              "HTTP400-InvalidCaseYearFormat": {
                "summary": "InvalidCaseYearFormat",
                "value": "12-256"
              },
              "HTTP400-InvalidCaseYearFromFormat": {
                "summary": "InvalidCaseYearFromFormat",
                "value": "12-256"
              },
              "HTTP400-InvalidCaseYearToFormat": {
                "summary": "InvalidCaseYearToFormat",
                "value": "12-256"
              },
              "HTTP400-InvalidCourtRegionId": {
                "summary": "InvalidCourtRegionId",
                "value": "12-256"
              },
              "HTTP400-InvalidPacerCaseIdFormat": {
                "summary": "InvalidPacerCaseIdFormat",
                "value": "12-256"
              },
              "HTTP400-InvalidPartyExactNameMatch": {
                "summary": "InvalidPartyExactNameMatch",
                "value": "12-256"
              },
              "HTTP400-InvalidQueryParameters": {
                "summary": "InvalidQueryParameters",
                "value": "12-256"
              },
              "HTTP400-InvalidSortQuery": {
                "summary": "InvalidSortQuery",
                "value": "12-256"
              },
              "HTTP400-InvalidSortQueryFormat": {
                "summary": "InvalidSortQueryFormat",
                "value": "12-256"
              },
              "HTTP400-InvalidStartAndEndFiledDate": {
                "summary": "InvalidStartAndEndFiledDate",
                "value": "12-256"
              },
              "HTTP400-InvalidStartAndEndTerminatedDate": {
                "summary": "InvalidStartAndEndTerminatedDate",
                "value": "12-256"
              },
              "HTTP400-LastNameNotPassedWhenFirstOrMiddlePassed": {
                "summary": "LastNameNotPassedWhenFirstOrMiddlePassed",
                "value": "12-256"
              },
              "HTTP400-PageNumberParameterNotPassed": {
                "summary": "PageNumberParameterNotPassed",
                "value": "12-256"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": "12-256"
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": "12-256"
              },
              "HTTP400-RequestedPageNumberIsInvalid": {
                "summary": "RequestedPageNumberIsInvalid",
                "value": "12-256"
              },
              "HTTP400-RequiredPartySearchValidation": {
                "summary": "RequiredPartySearchValidation",
                "value": null
              }
            },
            "in": "query",
            "name": "caseNumber",
            "schema": {
              "example": "12-1234",
              "maxLength": 50,
              "minLength": 3,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "Sequentially generated number that identifies the case in PACER system.",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-CaseTitleValidation": {
                "summary": "CaseTitleValidation",
                "value": 256
              },
              "HTTP400-InvalidCaseNumberFormat": {
                "summary": "InvalidCaseNumberFormat",
                "value": 17118
              },
              "HTTP400-InvalidCaseOfficeFormat": {
                "summary": "InvalidCaseOfficeFormat",
                "value": 256
              },
              "HTTP400-InvalidCaseSequenceNumberFormat": {
                "summary": "InvalidCaseSequenceNumberFormat",
                "value": 256
              },
              "HTTP400-InvalidCaseStatus": {
                "summary": "InvalidCaseStatus",
                "value": 256
              },
              "HTTP400-InvalidCaseType": {
                "summary": "InvalidCaseType",
                "value": 256
              },
              "HTTP400-InvalidCaseYearFormat": {
                "summary": "InvalidCaseYearFormat",
                "value": 256
              },
              "HTTP400-InvalidCaseYearFromFormat": {
                "summary": "InvalidCaseYearFromFormat",
                "value": 256
              },
              "HTTP400-InvalidCaseYearToFormat": {
                "summary": "InvalidCaseYearToFormat",
                "value": 256
              },
              "HTTP400-InvalidCourtRegionId": {
                "summary": "InvalidCourtRegionId",
                "value": 256
              },
              "HTTP400-InvalidPacerCaseIdFormat": {
                "summary": "InvalidPacerCaseIdFormat",
                "value": "pacer"
              },
              "HTTP400-InvalidPartyExactNameMatch": {
                "summary": "InvalidPartyExactNameMatch",
                "value": 256
              },
              "HTTP400-InvalidQueryParameters": {
                "summary": "InvalidQueryParameters",
                "value": 256
              },
              "HTTP400-InvalidSortQuery": {
                "summary": "InvalidSortQuery",
                "value": 256
              },
              "HTTP400-InvalidSortQueryFormat": {
                "summary": "InvalidSortQueryFormat",
                "value": 256
              },
              "HTTP400-InvalidStartAndEndFiledDate": {
                "summary": "InvalidStartAndEndFiledDate",
                "value": 256
              },
              "HTTP400-InvalidStartAndEndTerminatedDate": {
                "summary": "InvalidStartAndEndTerminatedDate",
                "value": 256
              },
              "HTTP400-LastNameNotPassedWhenFirstOrMiddlePassed": {
                "summary": "LastNameNotPassedWhenFirstOrMiddlePassed",
                "value": 256
              },
              "HTTP400-PageNumberParameterNotPassed": {
                "summary": "PageNumberParameterNotPassed",
                "value": 256
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": 256
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": 256
              },
              "HTTP400-RequestedPageNumberIsInvalid": {
                "summary": "RequestedPageNumberIsInvalid",
                "value": 256
              }
            },
            "in": "query",
            "name": "pacerCaseId",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "The last name of a party to search. This can be person or non person entity.",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": "Warden"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": "Warden"
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": "Warden"
              }
            },
            "in": "query",
            "name": "lastName",
            "schema": {
              "example": "John",
              "maxLength": 50,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "The first name of a party to search.",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-LastNameNotPassedWhenFirstOrMiddlePassed": {
                "summary": "LastNameNotPassedWhenFirstOrMiddlePassed",
                "value": "John"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "firstName",
            "schema": {
              "example": "John",
              "maxLength": 100,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "The middle name of a party to search.",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-LastNameNotPassedWhenFirstOrMiddlePassed": {
                "summary": "LastNameNotPassedWhenFirstOrMiddlePassed",
                "value": "David"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "middleName",
            "schema": {
              "example": "Doe",
              "maxLength": 100,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "The name suffix (e.g., III, MD).",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-LastNameNotPassedWhenFirstOrMiddlePassed": {
                "summary": "LastNameNotPassedWhenFirstOrMiddlePassed",
                "value": "III"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "generation",
            "schema": {
              "example": "III",
              "maxLength": 5,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "The court-assigned party type for a party involved in a case. Party type codes are created and assigned by individual courts, and as such, their meanings can vary from court to court.",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-LastNameNotPassedWhenFirstOrMiddlePassed": {
                "summary": "LastNameNotPassedWhenFirstOrMiddlePassed",
                "value": "ptf"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "partyType",
            "schema": {
              "example": "ptf",
              "maxLength": 50,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "When set to true this field will search the party with an exact match of the name provided.",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-InvalidPartyExactNameMatch": {
                "summary": "InvalidPartyExactNameMatch",
                "value": "Smith"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "partyExactNameMatch",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "The court-assigned role for a party to a case. Party role codes are created and assigned by individual courts, and as such, their meanings can vary from court to court.",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-LastNameNotPassedWhenFirstOrMiddlePassed": {
                "summary": "LastNameNotPassedWhenFirstOrMiddlePassed",
                "value": "plantiff"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "partyRoleArray",
            "schema": {
              "items": {
                "example": "plantiff",
                "maxLength": 50,
                "nullable": true,
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "You can search using the case name even if you know one party. \n\n\tExamples: \n\n\tA search for case title john doe v will result in all cases with the case title John Doe v. \n\n\tA search for case title Acme, Inc. will result in all case titles starting with Acme, Inc.",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-CaseTitleValidation": {
                "summary": "CaseTitleValidation",
                "value": "A"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseTitle",
            "schema": {
              "maxLength": 255,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "The divisional office in which the case was filed.",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-InvalidCaseOfficeFormat": {
                "summary": "InvalidCaseOfficeFormat",
                "value": "cv"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseOffice",
            "schema": {
              "maxLength": 1,
              "type": "integer"
            }
          },
          {
            "description": "The sequence number of a given case. Ex 12345",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-InvalidCaseSequenceNumberFormat": {
                "summary": "InvalidCaseSequenceNumberFormat",
                "value": "12-256"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseSequenceNumber",
            "schema": {
              "maxLength": 6,
              "type": "integer"
            }
          },
          {
            "description": "The two digits or four digits of the year in which the case was filed.",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-InvalidCaseYearFormat": {
                "summary": "InvalidCaseYearFormat",
                "value": 2012
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseYear",
            "schema": {
              "maxLength": 4,
              "type": "integer"
            }
          },
          {
            "description": "Search can be narrowed down by passing caseTypes. Please use the <a href='https://docs.unicourt.com/pacer-glossary/appendix-a-case-types'>APPENDIX A: Case Types</a> mentioned in the API Documentation. \n\n\tScenario: When mulitple case types needs to be requested. \n\n\tImagine for a given case number 12-1234 I would like to search only with the case type civil(cv) and criminal(cr), My query in the request will look like the example mentioned below. \n\n\tExample: caseTypeArray=cv&caseTypeArray=cr",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-InvalidCaseType": {
                "summary": "InvalidCaseType",
                "value": 1234
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseTypeArray",
            "schema": {
              "items": {
                "maxLength": 255,
                "nullable": true,
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "Search can be narrowed down by passing courtRegionId. Please use the <a href='https://docs.unicourt.com/pacer-glossary/appendix-b-court-regions'>APPENDIX B: Court Regions</a> mentioned in the API Documentation. \n\n\tScenario: When mulitple court region ids needs to be requested. \n\n\tImagine for a given case number 12-1234 I would like to search in the court regions California Central (cac) and California Eastern (cae), My query in the request will look like the example mentioned below. \n\n\tExample: courtRegionIdArray=cac&courtRegionIdArray=cae",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-InvalidCourtRegionId": {
                "summary": "InvalidCourtRegionId",
                "value": "civil"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "courtRegionIdArray",
            "schema": {
              "items": {
                "maxLength": 255,
                "nullable": true,
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "Limit the results of the search to those cases from the year specified or later",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-InvalidCaseYearFromFormat": {
                "summary": "InvalidCaseYearFromFormat",
                "value": "2012-12-20"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseYearFrom",
            "schema": {
              "maxLength": 4,
              "type": "integer"
            }
          },
          {
            "description": "Limit the results of the search to those cases from the year specified or earlier",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-InvalidCaseYearToFormat": {
                "summary": "InvalidCaseYearToFormat",
                "value": "2012-12-20"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseYearTo",
            "schema": {
              "maxLength": 4,
              "type": "integer"
            }
          },
          {
            "description": "Narrowing the search by limiting the cases which matches the criteria for case filed start date on or after the given date. Format: YYYY-MM-DDTHH:MM:SS+ZZ:zz, Ex: 2017-12-20T12:54:24+00:00",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-InvalidStartAndEndFiledDate": {
                "summary": "InvalidStartAndEndFiledDate",
                "value": "2012-12-20T12:54:24+00:00"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseFiledStartDate",
            "schema": {
              "format": "date-time",
              "maxLength": 25,
              "minLength": 25,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "Narrowing the search by limiting the cases which matches the criteria for case filed end date on or before the given date. Format: YYYY-MM-DDTHH:MM:SS+ZZ:zz, Ex: 2017-12-20T12:54:24+00:00",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-InvalidStartAndEndFiledDate": {
                "summary": "InvalidStartAndEndFiledDate",
                "value": "2012-12-19T12:54:24+00:00"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseFiledEndDate",
            "schema": {
              "format": "date-time",
              "maxLength": 25,
              "minLength": 25,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "Narrowing the search by limiting the cases which matches the criteria for case terminated start date on or after the given date. Format: YYYY-MM-DDTHH:MM:SS+ZZ:zz, Ex: 2017-12-20T12:54:24+00:00",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-InvalidStartAndEndTerminatedDate": {
                "summary": "InvalidStartAndEndTerminatedDate",
                "value": "2017-12-20T12:54:24+00:00"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseTerminatedStartDate",
            "schema": {
              "format": "date-time",
              "maxLength": 25,
              "minLength": 25,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "Narrowing the search by limiting the cases which matches the criteria for case terminated end date on or before the given date. Format: YYYY-MM-DDTHH:MM:SS+ZZ:zz, Ex: 2017-12-20T12:54:24+00:00",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-InvalidStartAndEndTerminatedDate": {
                "summary": "InvalidStartAndEndTerminatedDate",
                "value": "2017-12-19T12:54:24+00:00"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseTerminatedEndDate",
            "schema": {
              "format": "date-time",
              "maxLength": 25,
              "minLength": 25,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "The criteria based on which the search results are to be sorted. Please use the <a href='https://docs.unicourt.com/pacer-glossary/appendix-c-sort-parameter'>APPENDIX C: Sort Parameter - Sortable Party Parameters</a> mentioned in the API Documentation. The fields can be sorted either ASC or DESC. \n\n\tScenario 1: When mulitple sort paramters needs to be requested. \n\n\tImagine for a given case number 12-1234 I would like to sort the results in the Ascending order of courtId and caseId, My query in the request will look like the example mentioned below. \n\n\tExample: sortParameterQuery=courtId,ASC&caseId,ASC \n\n\tScenario 2: When you want to sort the response using the case parameters in the party search. \n\n\tImagine for a given case number 12-1234 I would like to sort the results in the Ascending order of caseOffice and descending order of caseId, My query in the request will look like the example mentioned below. \n\n\tExample: sortParameterQuery=courtCase.caseOffice,ASC&caseid,DESC",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-InvalidSortQuery": {
                "summary": "InvalidSortQuery",
                "value": "sort=caseYear"
              },
              "HTTP400-InvalidSortQueryFormat": {
                "summary": "InvalidSortQueryFormat",
                "value": "[sort=caseYear,DESC]"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "sortParameterQuery",
            "schema": {
              "default": "sort=caseYear,DESC",
              "maxLength": 100,
              "minLength": 5,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "Status of a case. 'closed' for a Terminated case, 'open' for Pending cases. If this parameter is not sent both cases that fall in open and closed will be queried.",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-InvalidCaseStatus": {
                "summary": "InvalidCaseStatus",
                "value": "all"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseStatus",
            "schema": {
              "enum": [
                "open",
                "closed"
              ],
              "maxLength": 100,
              "minLength": 3,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "Page Number for a given Job ID or for the search your going to make.",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": 1
              },
              "HTTP400-CaseTitleValidation": {
                "summary": "CaseTitleValidation",
                "value": 1
              },
              "HTTP400-InvalidCaseNumberFormat": {
                "summary": "InvalidCaseNumberFormat",
                "value": 1
              },
              "HTTP400-InvalidCaseOfficeFormat": {
                "summary": "InvalidCaseOfficeFormat",
                "value": 1
              },
              "HTTP400-InvalidCaseSequenceNumberFormat": {
                "summary": "InvalidCaseSequenceNumberFormat",
                "value": 1
              },
              "HTTP400-InvalidCaseStatus": {
                "summary": "InvalidCaseStatus",
                "value": 1
              },
              "HTTP400-InvalidCaseType": {
                "summary": "InvalidCaseType",
                "value": 1
              },
              "HTTP400-InvalidCaseYearFormat": {
                "summary": "InvalidCaseYearFormat",
                "value": 1
              },
              "HTTP400-InvalidCaseYearFromFormat": {
                "summary": "InvalidCaseYearFromFormat",
                "value": 1
              },
              "HTTP400-InvalidCaseYearToFormat": {
                "summary": "InvalidCaseYearToFormat",
                "value": 1
              },
              "HTTP400-InvalidCourtRegionId": {
                "summary": "InvalidCourtRegionId",
                "value": 1
              },
              "HTTP400-InvalidNatureOfSuit": {
                "summary": "InvalidNatureOfSuit",
                "value": 1
              },
              "HTTP400-InvalidPacerCaseIdFormat": {
                "summary": "InvalidPacerCaseIdFormat",
                "value": 1
              },
              "HTTP400-InvalidPartyExactNameMatch": {
                "summary": "InvalidPartyExactNameMatch",
                "value": 1
              },
              "HTTP400-InvalidQueryParameters": {
                "summary": "InvalidQueryParameters",
                "value": 1
              },
              "HTTP400-InvalidSortQuery": {
                "summary": "InvalidSortQuery",
                "value": 1
              },
              "HTTP400-InvalidSortQueryFormat": {
                "summary": "InvalidSortQueryFormat",
                "value": 1
              },
              "HTTP400-InvalidStartAndEndFiledDate": {
                "summary": "InvalidStartAndEndFiledDate",
                "value": 1
              },
              "HTTP400-InvalidStartAndEndTerminatedDate": {
                "summary": "InvalidStartAndEndTerminatedDate",
                "value": 1
              },
              "HTTP400-LastNameNotPassedWhenFirstOrMiddlePassed": {
                "summary": "LastNameNotPassedWhenFirstOrMiddlePassed",
                "value": 1
              },
              "HTTP400-PageNumberParameterNotPassed": {
                "summary": "PageNumberParameterNotPassed",
                "value": null
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": 1
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": 1
              },
              "HTTP400-RequestedPageNumberIsInvalid": {
                "summary": "RequestedPageNumberIsInvalid",
                "value": "one"
              },
              "HTTP400-RequiredPartySearchValidation": {
                "summary": "RequiredPartySearchValidation",
                "value": 1
              }
            },
            "in": "query",
            "name": "pageNumber",
            "schema": {
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "PCLParty": {
                    "$ref": "#/components/examples/PCLParty"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/PCLParty"
                }
              }
            },
            "description": "The request is recieved."
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "CaseTitleValidation": {
                    "$ref": "#/components/examples/FailurePCLCaseTitleValidation"
                  },
                  "ClientCodeNotEntered": {
                    "$ref": "#/components/examples/FailurePacerClientCodeNotEntered"
                  },
                  "InvalidCaseNumberFormat": {
                    "$ref": "#/components/examples/FailurePCLInvalidCaseNumberFormat"
                  },
                  "InvalidCaseOfficeFormat": {
                    "$ref": "#/components/examples/FailurePCLInvalidCaseOffice"
                  },
                  "InvalidCaseSequenceNumberFormat": {
                    "$ref": "#/components/examples/FailurePCLInvalidCaseSequenceNumber"
                  },
                  "InvalidCaseStatus": {
                    "$ref": "#/components/examples/FailureInvalidCaseStatus"
                  },
                  "InvalidCaseType": {
                    "$ref": "#/components/examples/FailureInvalidCaseType"
                  },
                  "InvalidCaseYearFormat": {
                    "$ref": "#/components/examples/FailurePCLInvalidCaseYear"
                  },
                  "InvalidCourtRegionId": {
                    "$ref": "#/components/examples/FailureInvalidCourtRegionId"
                  },
                  "InvalidPacerUserIdOrPassword": {
                    "$ref": "#/components/examples/FailurePacerUserIdOrPassword"
                  },
                  "InvalidPartyExactNameMatch": {
                    "$ref": "#/components/examples/FailureInvalidPartyExactNameMatch"
                  },
                  "InvalidSortQuery": {
                    "$ref": "#/components/examples/FailureInvalidSortParameterPassed"
                  },
                  "InvalidSortQueryFormat": {
                    "$ref": "#/components/examples/FailureInvalidSortParameterQueryFormat"
                  },
                  "InvalidStartAndEndFiledDate": {
                    "$ref": "#/components/examples/FailurePCLCaseFiledDateValidation"
                  },
                  "InvalidStartAndEndTerminatedDate": {
                    "$ref": "#/components/examples/FailurePCLCaseTerminatedDateValidation"
                  },
                  "LastNameNotPassedWhenFirstOrMiddlePassed": {
                    "$ref": "#/components/examples/FailureLastNameNotPassedWhenFirstOrMiddlePassed"
                  },
                  "PacerAccountDisabled": {
                    "$ref": "#/components/examples/FailurePacerAccountDisabled"
                  },
                  "PacerCredentialsNotFound": {
                    "$ref": "#/components/examples/FailurePacerCredentialsNotFound"
                  },
                  "PageNumberParameterNotPassed": {
                    "$ref": "#/components/examples/FailurePageNumberIdNotPassed"
                  },
                  "RequestedClientCodeIsInvalid": {
                    "$ref": "#/components/examples/FailureClientCodeIsInvalid"
                  },
                  "RequestedPacerUserIdIsInvalid": {
                    "$ref": "#/components/examples/FailurePacerUserIdIsInvalid"
                  },
                  "RequestedPageNumberIsInvalid": {
                    "$ref": "#/components/examples/FailureInvalidPageNumber"
                  },
                  "RequiredPartySearchValidation": {
                    "$ref": "#/components/examples/FailurePCLRequiredFieldPartySearch"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Invalid Input Parameter"
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "ServerError": {
                    "$ref": "#/components/examples/FailureServerError"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Server Error"
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "PACER Case Locator Search API for All Courts.",
        "tags": [
          "PACER API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [],
      "x-api-name": "PCLPartyAllCourtsAPI",
      "x-unicourt-tag": "PACERAPIs"
    },
    "/pacerCaseLocator/partySearch/appealCourts": {
      "get": {
        "description": "PACER Case Locator Party Search API for Appeal Courts.",
        "operationId": "AppealCourtsPacerCaseLocatorPartySearch",
        "parameters": [
          {
            "description": "User ID or User Name of the PACER Account used while signing in to PACER.",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": "john_doe"
              },
              "HTTP400-CaseTitleValidation": {
                "summary": "CaseTitleValidation",
                "value": "john_doe"
              },
              "HTTP400-ClientCodeNotEntered": {
                "summary": "ClientCodeNotEntered",
                "value": "john_doe"
              },
              "HTTP400-InvalidCaseNumberFormat": {
                "summary": "InvalidCaseNumberFormat",
                "value": "john_doe"
              },
              "HTTP400-InvalidCaseOfficeFormat": {
                "summary": "InvalidCaseOfficeFormat",
                "value": "john_doe"
              },
              "HTTP400-InvalidCaseSequenceNumberFormat": {
                "summary": "InvalidCaseSequenceNumberFormat",
                "value": "john_doe"
              },
              "HTTP400-InvalidCaseStatus": {
                "summary": "InvalidCaseStatus",
                "value": "john_doe"
              },
              "HTTP400-InvalidCaseType": {
                "summary": "InvalidCaseType",
                "value": "john_doe"
              },
              "HTTP400-InvalidCaseYearFormat": {
                "summary": "InvalidCaseYearFormat",
                "value": "john_doe"
              },
              "HTTP400-InvalidClientCodeEntered": {
                "summary": "InvalidClientCodeEntered",
                "value": "john_doe"
              },
              "HTTP400-InvalidCourtRegionId": {
                "summary": "InvalidCourtRegionId",
                "value": "john_doe"
              },
              "HTTP400-InvalidPacerCaseIdFormat": {
                "summary": "InvalidPacerCaseIdFormat",
                "value": "john_doe"
              },
              "HTTP400-InvalidPacerUserIdOrPassword": {
                "summary": "InvalidPacerUserIdOrPassword",
                "value": "john_doe"
              },
              "HTTP400-InvalidQueryParameters": {
                "summary": "InvalidQueryParameters",
                "value": "john_doe"
              },
              "HTTP400-InvalidSortQuery": {
                "summary": "InvalidSortQuery",
                "value": "john_doe"
              },
              "HTTP400-InvalidSortQueryFormat": {
                "summary": "InvalidSortQueryFormat",
                "value": "john_doe"
              },
              "HTTP400-InvalidStartAndEndFiledDate": {
                "summary": "InvalidStartAndEndFiledDate",
                "value": "john_doe"
              },
              "HTTP400-InvalidStartAndEndTerminatedDate": {
                "summary": "InvalidStartAndEndTerminatedDate",
                "value": "john_doe"
              },
              "HTTP400-PacerAccountDisabled": {
                "summary": "PacerAccountDisabled",
                "value": "john_doe"
              },
              "HTTP400-PacerCredentialsNotFound": {
                "summary": "PacerCredentialsNotFound",
                "value": "john_doe"
              },
              "HTTP400-PageNumberParameterNotPassed": {
                "summary": "PageNumberParameterNotPassed",
                "value": "john_doe"
              },
              "HTTP400-PasswordIsNotMinLength": {
                "summary": "PasswordIsNotMinLength",
                "value": "john_doe"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": "john_doe"
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": "john$doe123"
              },
              "HTTP400-RequestedPageNumberIsInvalid": {
                "summary": "RequestedPageNumberIsInvalid",
                "value": "john_doe"
              },
              "HTTP400-RequiredCaseSearchValidation": {
                "summary": "RequiredCaseSearchValidation",
                "value": "john_doe"
              },
              "HTTP400-TooManyLoginAttempts": {
                "summary": "TooManyLoginAttempts",
                "value": "john_doe"
              },
              "HTTP400-UsernameIsNotMinLength": {
                "summary": "UsernameIsNotMinLength",
                "value": "john_doe"
              }
            },
            "in": "query",
            "name": "pacerUserId",
            "required": true,
            "schema": {
              "example": "johndoe",
              "maxLength": 20,
              "minLength": 6,
              "nullable": false,
              "type": "string"
            }
          },
          {
            "description": "Client Code used while signing in to PACER account.",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": "john"
              },
              "HTTP400-CaseTitleValidation": {
                "summary": "CaseTitleValidation",
                "value": "john"
              },
              "HTTP400-ClientCodeNotEntered": {
                "summary": "ClientCodeNotEntered",
                "value": "john"
              },
              "HTTP400-InvalidCaseNumberFormat": {
                "summary": "InvalidCaseNumberFormat",
                "value": "john"
              },
              "HTTP400-InvalidCaseOfficeFormat": {
                "summary": "InvalidCaseOfficeFormat",
                "value": "john"
              },
              "HTTP400-InvalidCaseSequenceNumberFormat": {
                "summary": "InvalidCaseSequenceNumberFormat",
                "value": "john"
              },
              "HTTP400-InvalidCaseStatus": {
                "summary": "InvalidCaseStatus",
                "value": "john"
              },
              "HTTP400-InvalidCaseType": {
                "summary": "InvalidCaseType",
                "value": "john"
              },
              "HTTP400-InvalidCaseYearFormat": {
                "summary": "InvalidCaseYearFormat",
                "value": "john"
              },
              "HTTP400-InvalidClientCodeEntered": {
                "summary": "InvalidClientCodeEntered",
                "value": "john"
              },
              "HTTP400-InvalidCourtRegionId": {
                "summary": "InvalidCourtRegionId",
                "value": "john"
              },
              "HTTP400-InvalidPacerCaseIdFormat": {
                "summary": "InvalidPacerCaseIdFormat",
                "value": "john"
              },
              "HTTP400-InvalidPacerUserIdOrPassword": {
                "summary": "InvalidPacerUserIdOrPassword",
                "value": "john"
              },
              "HTTP400-InvalidQueryParameters": {
                "summary": "InvalidQueryParameters",
                "value": "john"
              },
              "HTTP400-InvalidSortQuery": {
                "summary": "InvalidSortQuery",
                "value": "john"
              },
              "HTTP400-InvalidSortQueryFormat": {
                "summary": "InvalidSortQueryFormat",
                "value": "john"
              },
              "HTTP400-InvalidStartAndEndFiledDate": {
                "summary": "InvalidStartAndEndFiledDate",
                "value": "john"
              },
              "HTTP400-InvalidStartAndEndTerminatedDate": {
                "summary": "InvalidStartAndEndTerminatedDate",
                "value": "john"
              },
              "HTTP400-PacerAccountDisabled": {
                "summary": "PacerAccountDisabled",
                "value": "john"
              },
              "HTTP400-PacerCredentialsNotFound": {
                "summary": "PacerCredentialsNotFound",
                "value": "john"
              },
              "HTTP400-PageNumberParameterNotPassed": {
                "summary": "PageNumberParameterNotPassed",
                "value": "john"
              },
              "HTTP400-PasswordIsNotMinLength": {
                "summary": "PasswordIsNotMinLength",
                "value": "john"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": "john$123"
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": "john"
              },
              "HTTP400-RequestedPageNumberIsInvalid": {
                "summary": "RequestedPageNumberIsInvalid",
                "value": "john"
              },
              "HTTP400-RequiredCaseSearchValidation": {
                "summary": "RequiredCaseSearchValidation",
                "value": "john"
              },
              "HTTP400-TooManyLoginAttempts": {
                "summary": "TooManyLoginAttempts",
                "value": "john"
              },
              "HTTP400-UsernameIsNotMinLength": {
                "summary": "UsernameIsNotMinLength",
                "value": "john"
              }
            },
            "in": "query",
            "name": "pacerClientCode",
            "required": true,
            "schema": {
              "example": "john",
              "maxLength": 32,
              "minLength": 1,
              "nullable": false,
              "type": "string"
            }
          },
          {
            "description": "If the court type is selected as All or if you need data for a specific case number format, then you need to use this option. Case numbers may be entered in each of the following formats: \n\n\tyy-nnnnn \n\n\tyy-tp-nnnnn \n\n\tyy tp nnnnn \n\n\tyytpnnnnn \n\n\to:yy-nnnnn \n\n\to:yy-tp-nnnnn \n\n\to:yy tp nnnnn \n\n\to:yytpnnnnn \n\nwhere: \n\nyy  case year (may be 2 or 4 digits) \n\nnnnnn  case number (up to 5 digits) \n\ntp  case type (up to 2 characters) \n\no  office where the case was filed (1 digit).",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": "07-1026"
              },
              "HTTP400-CaseTitleValidation": {
                "summary": "CaseTitleValidation",
                "value": "12-256"
              },
              "HTTP400-InvalidCaseNumberFormat": {
                "summary": "InvalidCaseNumberFormat",
                "value": "12-256-WDR"
              },
              "HTTP400-InvalidCaseOfficeFormat": {
                "summary": "InvalidCaseOfficeFormat",
                "value": "12-256"
              },
              "HTTP400-InvalidCaseSequenceNumberFormat": {
                "summary": "InvalidCaseSequenceNumberFormat",
                "value": "12-256"
              },
              "HTTP400-InvalidCaseStatus": {
                "summary": "InvalidCaseStatus",
                "value": "12-256"
              },
              "HTTP400-InvalidCaseType": {
                "summary": "InvalidCaseType",
                "value": "12-256"
              },
              "HTTP400-InvalidCaseYearFormat": {
                "summary": "InvalidCaseYearFormat",
                "value": "12-256"
              },
              "HTTP400-InvalidCaseYearFromFormat": {
                "summary": "InvalidCaseYearFromFormat",
                "value": "12-256"
              },
              "HTTP400-InvalidCaseYearToFormat": {
                "summary": "InvalidCaseYearToFormat",
                "value": "12-256"
              },
              "HTTP400-InvalidCourtRegionId": {
                "summary": "InvalidCourtRegionId",
                "value": "12-256"
              },
              "HTTP400-InvalidPacerCaseIdFormat": {
                "summary": "InvalidPacerCaseIdFormat",
                "value": "12-256"
              },
              "HTTP400-InvalidPartyExactNameMatch": {
                "summary": "InvalidPartyExactNameMatch",
                "value": "12-256"
              },
              "HTTP400-InvalidQueryParameters": {
                "summary": "InvalidQueryParameters",
                "value": "12-256"
              },
              "HTTP400-InvalidSortQuery": {
                "summary": "InvalidSortQuery",
                "value": "12-256"
              },
              "HTTP400-InvalidSortQueryFormat": {
                "summary": "InvalidSortQueryFormat",
                "value": "12-256"
              },
              "HTTP400-InvalidStartAndEndFiledDate": {
                "summary": "InvalidStartAndEndFiledDate",
                "value": "12-256"
              },
              "HTTP400-InvalidStartAndEndTerminatedDate": {
                "summary": "InvalidStartAndEndTerminatedDate",
                "value": "12-256"
              },
              "HTTP400-PageNumberParameterNotPassed": {
                "summary": "PageNumberParameterNotPassed",
                "value": "12-256"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": "12-256"
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": "12-256"
              },
              "HTTP400-RequestedPageNumberIsInvalid": {
                "summary": "RequestedPageNumberIsInvalid",
                "value": "12-256"
              },
              "HTTP400-RequiredPartySearchValidation": {
                "summary": "RequiredPartySearchValidation",
                "value": null
              }
            },
            "in": "query",
            "name": "caseNumber",
            "schema": {
              "example": "12-1234",
              "maxLength": 50,
              "minLength": 3,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "Sequentially generated number that identifies the case in PACER system.",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-CaseTitleValidation": {
                "summary": "CaseTitleValidation",
                "value": 256
              },
              "HTTP400-InvalidCaseNumberFormat": {
                "summary": "InvalidCaseNumberFormat",
                "value": 256
              },
              "HTTP400-InvalidCaseOfficeFormat": {
                "summary": "InvalidCaseOfficeFormat",
                "value": 256
              },
              "HTTP400-InvalidCaseSequenceNumberFormat": {
                "summary": "InvalidCaseSequenceNumberFormat",
                "value": 256
              },
              "HTTP400-InvalidCaseStatus": {
                "summary": "InvalidCaseStatus",
                "value": 256
              },
              "HTTP400-InvalidCaseType": {
                "summary": "InvalidCaseType",
                "value": 256
              },
              "HTTP400-InvalidCaseYearFormat": {
                "summary": "InvalidCaseYearFormat",
                "value": 256
              },
              "HTTP400-InvalidCaseYearFromFormat": {
                "summary": "InvalidCaseYearFromFormat",
                "value": 256
              },
              "HTTP400-InvalidCaseYearToFormat": {
                "summary": "InvalidCaseYearToFormat",
                "value": 256
              },
              "HTTP400-InvalidCourtRegionId": {
                "summary": "InvalidCourtRegionId",
                "value": 256
              },
              "HTTP400-InvalidPacerCaseIdFormat": {
                "summary": "InvalidPacerCaseIdFormat",
                "value": "pacer"
              },
              "HTTP400-InvalidPartyExactNameMatch": {
                "summary": "InvalidPartyExactNameMatch",
                "value": 256
              },
              "HTTP400-InvalidQueryParameters": {
                "summary": "InvalidQueryParameters",
                "value": 256
              },
              "HTTP400-InvalidSortQuery": {
                "summary": "InvalidSortQuery",
                "value": 256
              },
              "HTTP400-InvalidSortQueryFormat": {
                "summary": "InvalidSortQueryFormat",
                "value": 256
              },
              "HTTP400-InvalidStartAndEndFiledDate": {
                "summary": "InvalidStartAndEndFiledDate",
                "value": 256
              },
              "HTTP400-InvalidStartAndEndTerminatedDate": {
                "summary": "InvalidStartAndEndTerminatedDate",
                "value": 256
              },
              "HTTP400-LastNameNotPassedWhenFirstOrMiddlePassed": {
                "summary": "LastNameNotPassedWhenFirstOrMiddlePassed",
                "value": 256
              },
              "HTTP400-PageNumberParameterNotPassed": {
                "summary": "PageNumberParameterNotPassed",
                "value": 256
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": 256
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": 256
              },
              "HTTP400-RequestedPageNumberIsInvalid": {
                "summary": "RequestedPageNumberIsInvalid",
                "value": 256
              }
            },
            "in": "query",
            "name": "pacerCaseId",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "The last name of a party to search. This can be person or non person entity.",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": "Smith"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": "Smith"
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": "Smith"
              }
            },
            "in": "query",
            "name": "lastName",
            "schema": {
              "example": "John",
              "maxLength": 50,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "The first name of a party to search.",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": "John"
              },
              "HTTP400-LastNameNotPassedWhenFirstOrMiddlePassed": {
                "summary": "LastNameNotPassedWhenFirstOrMiddlePassed",
                "value": "John"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "firstName",
            "schema": {
              "example": "John",
              "maxLength": 100,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "The middle name of a party to search.",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": "Doe"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "middleName",
            "schema": {
              "example": "Doe",
              "maxLength": 100,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "The name suffix (e.g., III, MD).",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": "MD"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "generation",
            "schema": {
              "example": "III",
              "maxLength": 5,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "The court-assigned party type for a party involved in a case. Party type codes are created and assigned by individual courts, and as such, their meanings can vary from court to court.",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": "ptf"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "partyType",
            "schema": {
              "example": "ptf",
              "maxLength": 50,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "When set to true this field will search the party with an exact match of the name provided.",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-InvalidPartyExactNameMatch": {
                "summary": "InvalidPartyExactNameMatch",
                "value": "Smith"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "partyExactNameMatch",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "The court-assigned role for a party to a case. Party role codes are created and assigned by individual courts, and as such, their meanings can vary from court to court.",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-LastNameNotPassedWhenFirstOrMiddlePassed": {
                "summary": "LastNameNotPassedWhenFirstOrMiddlePassed",
                "value": "plantiff"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "partyRoleArray",
            "schema": {
              "items": {
                "example": "plantiff",
                "maxLength": 50,
                "nullable": true,
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "You can search using the case name even if you know one party. \n\n\tExamples: \n\n\tA search for case title john doe v will result in all cases with the case title John Doe v. \n\n\tA search for case title Acme, Inc. will result in all case titles starting with Acme, Inc.",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-CaseTitleValidation": {
                "summary": "CaseTitleValidation",
                "value": "A"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseTitle",
            "schema": {
              "maxLength": 255,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "The divisional office in which the case was filed.",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-InvalidCaseOfficeFormat": {
                "summary": "InvalidCaseOfficeFormat",
                "value": "cv"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseOffice",
            "schema": {
              "maxLength": 1,
              "type": "integer"
            }
          },
          {
            "description": "The sequence number of a given case. Ex 12345",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-InvalidCaseSequenceNumberFormat": {
                "summary": "InvalidCaseSequenceNumberFormat",
                "value": "12-256"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseSequenceNumber",
            "schema": {
              "maxLength": 6,
              "type": "integer"
            }
          },
          {
            "description": "The two digits or four digits of the year in which the case was filed.",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-InvalidCaseYearFormat": {
                "summary": "InvalidCaseYearFormat",
                "value": 2012
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseYear",
            "schema": {
              "maxLength": 4,
              "type": "integer"
            }
          },
          {
            "description": "Search can be narrowed down by passing caseTypes. Please use the <a href='https://docs.unicourt.com/pacer-glossary/appendix-a-case-types'>APPENDIX A: Case Types</a> mentioned in the API Documentation. \n\n\tScenario: When mulitple case types needs to be requested. \n\n\tImagine for a given case number 12-1234 I would like to search only with the case type civil(cv) and criminal(cr), My query in the request will look like the example mentioned below. \n\n\tExample: caseTypeArray=cv&caseTypeArray=cr",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-InvalidCaseType": {
                "summary": "InvalidCaseType",
                "value": 13145
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseTypeArray",
            "schema": {
              "items": {
                "maxLength": 255,
                "nullable": true,
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "Search can be narrowed down by passing courtRegionId. Please use the <a href='https://docs.unicourt.com/pacer-glossary/appendix-b-court-regions'>APPENDIX B: Court Regions</a> mentioned in the API Documentation. \n\n\tScenario: When mulitple court region ids needs to be requested. \n\n\tImagine for a given case number 12-1234 I would like to search in the court regions California Central (cac) and California Eastern (cae), My query in the request will look like the example mentioned below. \n\n\tExample: courtRegionIdArray=cac&courtRegionIdArray=cae",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-InvalidCourtRegionId": {
                "summary": "InvalidCourtRegionId",
                "value": "civil"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "courtRegionIdArray",
            "schema": {
              "items": {
                "maxLength": 255,
                "nullable": true,
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "Limit the results of the search to those cases from the year specified or later",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-InvalidCaseYearFromFormat": {
                "summary": "InvalidCaseYearFromFormat",
                "value": "2012-12-20"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseYearFrom",
            "schema": {
              "maxLength": 4,
              "type": "integer"
            }
          },
          {
            "description": "Limit the results of the search to those cases from the year specified or earlier",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-InvalidCaseYearToFormat": {
                "summary": "InvalidCaseYearToFormat",
                "value": "2012-12-20"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseYearTo",
            "schema": {
              "maxLength": 4,
              "type": "integer"
            }
          },
          {
            "description": "Narrowing the search by limiting the cases which matches the criteria for case filed start date on or after the given date. Format: YYYY-MM-DDTHH:MM:SS+ZZ:zz, Ex: 2017-12-20T12:54:24+00:00",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-InvalidStartAndEndFiledDate": {
                "summary": "InvalidStartAndEndFiledDate",
                "value": "2012-12-20T12:54:24+00:00"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseFiledStartDate",
            "schema": {
              "format": "date-time",
              "maxLength": 25,
              "minLength": 25,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "Narrowing the search by limiting the cases which matches the criteria for case filed end date on or before the given date. Format: YYYY-MM-DDTHH:MM:SS+ZZ:zz, Ex: 2017-12-20T12:54:24+00:00",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-InvalidStartAndEndFiledDate": {
                "summary": "InvalidStartAndEndFiledDate",
                "value": "2012-12-19T12:54:24+00:00"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseFiledEndDate",
            "schema": {
              "format": "date-time",
              "maxLength": 25,
              "minLength": 25,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "Narrowing the search by limiting the cases which matches the criteria for case terminated start date on or after the given date. Format: YYYY-MM-DDTHH:MM:SS+ZZ:zz, Ex: 2017-12-20T12:54:24+00:00",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-InvalidStartAndEndTerminatedDate": {
                "summary": "InvalidStartAndEndTerminatedDate",
                "value": "2017-12-20T12:54:24+00:00"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseTerminatedStartDate",
            "schema": {
              "format": "date-time",
              "maxLength": 25,
              "minLength": 25,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "Narrowing the search by limiting the cases which matches the criteria for case terminated end date on or before the given date. Format: YYYY-MM-DDTHH:MM:SS+ZZ:zz, Ex: 2017-12-20T12:54:24+00:00",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-InvalidStartAndEndTerminatedDate": {
                "summary": "InvalidStartAndEndTerminatedDate",
                "value": "2017-12-19T12:54:24+00:00"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseTerminatedEndDate",
            "schema": {
              "format": "date-time",
              "maxLength": 25,
              "minLength": 25,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "The criteria based on which the search results are to be sorted. Please use the <a href='https://docs.unicourt.com/pacer-glossary/appendix-c-sort-parameter'>APPENDIX C: Sort Parameter - Sortable Party Parameters</a> mentioned in the API Documentation. The fields can be sorted either ASC or DESC. \n\n\tScenario 1: When mulitple sort paramters needs to be requested. \n\n\tImagine for a given case number 12-1234 I would like to sort the results in the Ascending order of courtId and caseId, My query in the request will look like the example mentioned below. \n\n\tExample: sortParameterQuery=courtId,ASC&caseId,ASC \n\n\tScenario 2: When you want to sort the response using the case parameters in the party search. \n\n\tImagine for a given case number 12-1234 I would like to sort the results in the Ascending order of caseOffice and descending order of caseId, My query in the request will look like the example mentioned below. \n\n\tExample: sortParameterQuery=courtCase.caseOffice,ASC&caseid,DESC",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-InvalidSortQuery": {
                "summary": "InvalidSortQuery",
                "value": "sort=caseYear"
              },
              "HTTP400-InvalidSortQueryFormat": {
                "summary": "InvalidSortQueryFormat",
                "value": "[sort=caseYear,DESC]"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "sortParameterQuery",
            "schema": {
              "default": "sort=caseYear,DESC",
              "maxLength": 100,
              "minLength": 5,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "Status of a case. 'closed' for a Terminated case, 'open' for Pending cases. If this parameter is not sent both cases that fall in open and closed will be queried.",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-InvalidCaseStatus": {
                "summary": "InvalidCaseStatus",
                "value": "all"
              }
            },
            "in": "query",
            "name": "caseStatus",
            "schema": {
              "enum": [
                "open",
                "closed"
              ],
              "maxLength": 100,
              "minLength": 3,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "Page Number for a given Job ID or for the search your going to make.",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": 1
              },
              "HTTP400-CaseTitleValidation": {
                "summary": "CaseTitleValidation",
                "value": 1
              },
              "HTTP400-InvalidCaseNumberFormat": {
                "summary": "InvalidCaseNumberFormat",
                "value": 1
              },
              "HTTP400-InvalidCaseOfficeFormat": {
                "summary": "InvalidCaseOfficeFormat",
                "value": 1
              },
              "HTTP400-InvalidCaseSequenceNumberFormat": {
                "summary": "InvalidCaseSequenceNumberFormat",
                "value": 1
              },
              "HTTP400-InvalidCaseStatus": {
                "summary": "InvalidCaseStatus",
                "value": 1
              },
              "HTTP400-InvalidCaseType": {
                "summary": "InvalidCaseType",
                "value": 1
              },
              "HTTP400-InvalidCaseYearFormat": {
                "summary": "InvalidCaseYearFormat",
                "value": 1
              },
              "HTTP400-InvalidCaseYearFromFormat": {
                "summary": "InvalidCaseYearFromFormat",
                "value": 1
              },
              "HTTP400-InvalidCaseYearToFormat": {
                "summary": "InvalidCaseYearToFormat",
                "value": 1
              },
              "HTTP400-InvalidCourtRegionId": {
                "summary": "InvalidCourtRegionId",
                "value": 1
              },
              "HTTP400-InvalidPacerCaseIdFormat": {
                "summary": "InvalidPacerCaseIdFormat",
                "value": 1
              },
              "HTTP400-InvalidPartyExactNameMatch": {
                "summary": "InvalidPartyExactNameMatch",
                "value": 1
              },
              "HTTP400-InvalidQueryParameters": {
                "summary": "InvalidQueryParameters",
                "value": 1
              },
              "HTTP400-InvalidSortQuery": {
                "summary": "InvalidSortQuery",
                "value": 1
              },
              "HTTP400-InvalidSortQueryFormat": {
                "summary": "InvalidSortQueryFormat",
                "value": 1
              },
              "HTTP400-InvalidStartAndEndFiledDate": {
                "summary": "InvalidStartAndEndFiledDate",
                "value": 1
              },
              "HTTP400-InvalidStartAndEndTerminatedDate": {
                "summary": "InvalidStartAndEndTerminatedDate",
                "value": 1
              },
              "HTTP400-LastNameNotPassedWhenFirstOrMiddlePassed": {
                "summary": "LastNameNotPassedWhenFirstOrMiddlePassed",
                "value": 1
              },
              "HTTP400-PageNumberParameterNotPassed": {
                "summary": "PageNumberParameterNotPassed",
                "value": null
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": 1
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": 1
              },
              "HTTP400-RequestedPageNumberIsInvalid": {
                "summary": "RequestedPageNumberIsInvalid",
                "value": "one"
              },
              "HTTP400-RequiredPartySearchValidation": {
                "summary": "RequiredPartySearchValidation",
                "value": 1
              }
            },
            "in": "query",
            "name": "pageNumber",
            "schema": {
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "PCLParty": {
                    "$ref": "#/components/examples/PCLParty"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/PCLParty"
                }
              }
            },
            "description": "The request is recieved."
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "CaseTitleValidation": {
                    "$ref": "#/components/examples/FailurePCLCaseTitleValidation"
                  },
                  "ClientCodeNotEntered": {
                    "$ref": "#/components/examples/FailurePacerClientCodeNotEntered"
                  },
                  "InvalidCaseNumberFormat": {
                    "$ref": "#/components/examples/FailurePCLInvalidCaseNumberFormatForAppeal"
                  },
                  "InvalidCaseOfficeFormat": {
                    "$ref": "#/components/examples/FailurePCLInvalidCaseOffice"
                  },
                  "InvalidCaseSequenceNumberFormat": {
                    "$ref": "#/components/examples/FailurePCLInvalidCaseSequenceNumber"
                  },
                  "InvalidCaseStatus": {
                    "$ref": "#/components/examples/FailureInvalidCaseStatus"
                  },
                  "InvalidCaseType": {
                    "$ref": "#/components/examples/FailureInvalidCaseType"
                  },
                  "InvalidCaseYearFormat": {
                    "$ref": "#/components/examples/FailurePCLInvalidCaseYear"
                  },
                  "InvalidCourtRegionId": {
                    "$ref": "#/components/examples/FailureInvalidCourtRegionId"
                  },
                  "InvalidPacerUserIdOrPassword": {
                    "$ref": "#/components/examples/FailurePacerUserIdOrPassword"
                  },
                  "InvalidPartyExactNameMatch": {
                    "$ref": "#/components/examples/FailureInvalidPartyExactNameMatch"
                  },
                  "InvalidSortQuery": {
                    "$ref": "#/components/examples/FailureInvalidSortParameterPassed"
                  },
                  "InvalidSortQueryFormat": {
                    "$ref": "#/components/examples/FailureInvalidSortParameterQueryFormat"
                  },
                  "InvalidStartAndEndFiledDate": {
                    "$ref": "#/components/examples/FailurePCLCaseFiledDateValidation"
                  },
                  "InvalidStartAndEndTerminatedDate": {
                    "$ref": "#/components/examples/FailurePCLCaseTerminatedDateValidation"
                  },
                  "LastNameNotPassedWhenFirstOrMiddlePassed": {
                    "$ref": "#/components/examples/FailureLastNameNotPassedWhenFirstOrMiddlePassed"
                  },
                  "PacerAccountDisabled": {
                    "$ref": "#/components/examples/FailurePacerAccountDisabled"
                  },
                  "PacerCredentialsNotFound": {
                    "$ref": "#/components/examples/FailurePacerCredentialsNotFound"
                  },
                  "PageNumberParameterNotPassed": {
                    "$ref": "#/components/examples/FailurePageNumberIdNotPassed"
                  },
                  "RequestedClientCodeIsInvalid": {
                    "$ref": "#/components/examples/FailureClientCodeIsInvalid"
                  },
                  "RequestedPacerUserIdIsInvalid": {
                    "$ref": "#/components/examples/FailurePacerUserIdIsInvalid"
                  },
                  "RequestedPageNumberIsInvalid": {
                    "$ref": "#/components/examples/FailureInvalidPageNumber"
                  },
                  "RequiredPartySearchValidation": {
                    "$ref": "#/components/examples/FailurePCLRequiredFieldPartySearch"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Invalid Input Parameter"
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "ServerError": {
                    "$ref": "#/components/examples/FailureServerError"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Server Error"
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "PACER Case Locator Search API for All Courts.",
        "tags": [
          "PACER API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [],
      "x-api-name": "PCLPartyAppealCourtsAPI",
      "x-unicourt-tag": "PACERAPIs"
    },
    "/pacerCaseLocator/partySearch/bankruptcyCourts": {
      "get": {
        "description": "PACER Case Locator Party Search API for Bankruptcy Courts.",
        "operationId": "BankruptcyCourtsPacerCaseLocatorPartySearch",
        "parameters": [
          {
            "description": "User ID or User Name of the PACER Account used while signing in to PACER.",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": "john_doe"
              },
              "HTTP400-CaseTitleValidation": {
                "summary": "CaseTitleValidation",
                "value": "john_doe"
              },
              "HTTP400-ClientCodeNotEntered": {
                "summary": "ClientCodeNotEntered",
                "value": "john_doe"
              },
              "HTTP400-InvalidCaseNumberFormat": {
                "summary": "InvalidCaseNumberFormat",
                "value": "john_doe"
              },
              "HTTP400-InvalidCaseOfficeFormat": {
                "summary": "InvalidCaseOfficeFormat",
                "value": "john_doe"
              },
              "HTTP400-InvalidCaseSequenceNumberFormat": {
                "summary": "InvalidCaseSequenceNumberFormat",
                "value": "john_doe"
              },
              "HTTP400-InvalidCaseStatus": {
                "summary": "InvalidCaseStatus",
                "value": "john_doe"
              },
              "HTTP400-InvalidCaseType": {
                "summary": "InvalidCaseType",
                "value": "john_doe"
              },
              "HTTP400-InvalidCaseYearFormat": {
                "summary": "InvalidCaseYearFormat",
                "value": "john_doe"
              },
              "HTTP400-InvalidClientCodeEntered": {
                "summary": "InvalidClientCodeEntered",
                "value": "john_doe"
              },
              "HTTP400-InvalidCourtRegionId": {
                "summary": "InvalidCourtRegionId",
                "value": "john_doe"
              },
              "HTTP400-InvalidPacerCaseIdFormat": {
                "summary": "InvalidPacerCaseIdFormat",
                "value": "john_doe"
              },
              "HTTP400-InvalidPacerUserIdOrPassword": {
                "summary": "InvalidPacerUserIdOrPassword",
                "value": "john_doe"
              },
              "HTTP400-InvalidQueryParameters": {
                "summary": "InvalidQueryParameters",
                "value": "john_doe"
              },
              "HTTP400-InvalidSortQuery": {
                "summary": "InvalidSortQuery",
                "value": "john_doe"
              },
              "HTTP400-InvalidSortQueryFormat": {
                "summary": "InvalidSortQueryFormat",
                "value": "john_doe"
              },
              "HTTP400-InvalidStartAndEndFiledDate": {
                "summary": "InvalidStartAndEndFiledDate",
                "value": "john_doe"
              },
              "HTTP400-InvalidStartAndEndTerminatedDate": {
                "summary": "InvalidStartAndEndTerminatedDate",
                "value": "john_doe"
              },
              "HTTP400-PacerAccountDisabled": {
                "summary": "PacerAccountDisabled",
                "value": "john_doe"
              },
              "HTTP400-PacerCredentialsNotFound": {
                "summary": "PacerCredentialsNotFound",
                "value": "john_doe"
              },
              "HTTP400-PageNumberParameterNotPassed": {
                "summary": "PageNumberParameterNotPassed",
                "value": "john_doe"
              },
              "HTTP400-PasswordIsNotMinLength": {
                "summary": "PasswordIsNotMinLength",
                "value": "john_doe"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": "john_doe"
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": "john$doe123"
              },
              "HTTP400-RequestedPageNumberIsInvalid": {
                "summary": "RequestedPageNumberIsInvalid",
                "value": "john_doe"
              },
              "HTTP400-RequiredCaseSearchValidation": {
                "summary": "RequiredCaseSearchValidation",
                "value": "john_doe"
              },
              "HTTP400-TooManyLoginAttempts": {
                "summary": "TooManyLoginAttempts",
                "value": "john_doe"
              },
              "HTTP400-UsernameIsNotMinLength": {
                "summary": "UsernameIsNotMinLength",
                "value": "john_doe"
              }
            },
            "in": "query",
            "name": "pacerUserId",
            "required": true,
            "schema": {
              "example": "johndoe",
              "maxLength": 20,
              "minLength": 6,
              "nullable": false,
              "type": "string"
            }
          },
          {
            "description": "Client Code used while signing in to PACER account.",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": "john"
              },
              "HTTP400-CaseTitleValidation": {
                "summary": "CaseTitleValidation",
                "value": "john"
              },
              "HTTP400-ClientCodeNotEntered": {
                "summary": "ClientCodeNotEntered",
                "value": "john"
              },
              "HTTP400-InvalidCaseNumberFormat": {
                "summary": "InvalidCaseNumberFormat",
                "value": "john"
              },
              "HTTP400-InvalidCaseOfficeFormat": {
                "summary": "InvalidCaseOfficeFormat",
                "value": "john"
              },
              "HTTP400-InvalidCaseSequenceNumberFormat": {
                "summary": "InvalidCaseSequenceNumberFormat",
                "value": "john"
              },
              "HTTP400-InvalidCaseStatus": {
                "summary": "InvalidCaseStatus",
                "value": "john"
              },
              "HTTP400-InvalidCaseType": {
                "summary": "InvalidCaseType",
                "value": "john"
              },
              "HTTP400-InvalidCaseYearFormat": {
                "summary": "InvalidCaseYearFormat",
                "value": "john"
              },
              "HTTP400-InvalidClientCodeEntered": {
                "summary": "InvalidClientCodeEntered",
                "value": "john"
              },
              "HTTP400-InvalidCourtRegionId": {
                "summary": "InvalidCourtRegionId",
                "value": "john"
              },
              "HTTP400-InvalidPacerCaseIdFormat": {
                "summary": "InvalidPacerCaseIdFormat",
                "value": "john"
              },
              "HTTP400-InvalidPacerUserIdOrPassword": {
                "summary": "InvalidPacerUserIdOrPassword",
                "value": "john"
              },
              "HTTP400-InvalidQueryParameters": {
                "summary": "InvalidQueryParameters",
                "value": "john"
              },
              "HTTP400-InvalidSortQuery": {
                "summary": "InvalidSortQuery",
                "value": "john"
              },
              "HTTP400-InvalidSortQueryFormat": {
                "summary": "InvalidSortQueryFormat",
                "value": "john"
              },
              "HTTP400-InvalidStartAndEndFiledDate": {
                "summary": "InvalidStartAndEndFiledDate",
                "value": "john"
              },
              "HTTP400-InvalidStartAndEndTerminatedDate": {
                "summary": "InvalidStartAndEndTerminatedDate",
                "value": "john"
              },
              "HTTP400-PacerAccountDisabled": {
                "summary": "PacerAccountDisabled",
                "value": "john"
              },
              "HTTP400-PacerCredentialsNotFound": {
                "summary": "PacerCredentialsNotFound",
                "value": "john"
              },
              "HTTP400-PageNumberParameterNotPassed": {
                "summary": "PageNumberParameterNotPassed",
                "value": "john"
              },
              "HTTP400-PasswordIsNotMinLength": {
                "summary": "PasswordIsNotMinLength",
                "value": "john"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": "john$123"
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": "john"
              },
              "HTTP400-RequestedPageNumberIsInvalid": {
                "summary": "RequestedPageNumberIsInvalid",
                "value": "john"
              },
              "HTTP400-RequiredCaseSearchValidation": {
                "summary": "RequiredCaseSearchValidation",
                "value": "john"
              },
              "HTTP400-TooManyLoginAttempts": {
                "summary": "TooManyLoginAttempts",
                "value": "john"
              },
              "HTTP400-UsernameIsNotMinLength": {
                "summary": "UsernameIsNotMinLength",
                "value": "john"
              }
            },
            "in": "query",
            "name": "pacerClientCode",
            "required": true,
            "schema": {
              "example": "john",
              "maxLength": 32,
              "minLength": 1,
              "nullable": false,
              "type": "string"
            }
          },
          {
            "description": "If the court type is selected as All or if you need data for a specific case number format, then you need to use this option. Case numbers may be entered in each of the following formats: \n\n\tyy-nnnnn \n\n\tyy-tp-nnnnn \n\n\tyy tp nnnnn \n\n\tyytpnnnnn \n\n\to:yy-nnnnn \n\n\to:yy-tp-nnnnn \n\n\to:yy tp nnnnn \n\n\to:yytpnnnnn \n\nwhere: \n\nyy  case year (may be 2 or 4 digits) \n\nnnnnn  case number (up to 5 digits) \n\ntp  case type (up to 2 characters) \n\no  office where the case was filed (1 digit).",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": "07-1026"
              },
              "HTTP400-CaseTitleValidation": {
                "summary": "CaseTitleValidation",
                "value": "12-256"
              },
              "HTTP400-InvalidCaseNumberFormat": {
                "summary": "InvalidCaseNumberFormat",
                "value": "12-256-WDR"
              },
              "HTTP400-InvalidCaseOfficeFormat": {
                "summary": "InvalidCaseOfficeFormat",
                "value": "12-256"
              },
              "HTTP400-InvalidCaseSequenceNumberFormat": {
                "summary": "InvalidCaseSequenceNumberFormat",
                "value": "12-256"
              },
              "HTTP400-InvalidCaseStatus": {
                "summary": "InvalidCaseStatus",
                "value": "12-256"
              },
              "HTTP400-InvalidCaseType": {
                "summary": "InvalidCaseType",
                "value": "12-256"
              },
              "HTTP400-InvalidCaseYearFormat": {
                "summary": "InvalidCaseYearFormat",
                "value": "12-256"
              },
              "HTTP400-InvalidCaseYearFromFormat": {
                "summary": "InvalidCaseYearFromFormat",
                "value": "12-256"
              },
              "HTTP400-InvalidCaseYearToFormat": {
                "summary": "InvalidCaseYearToFormat",
                "value": "12-256"
              },
              "HTTP400-InvalidCourtRegionId": {
                "summary": "InvalidCourtRegionId",
                "value": "12-256"
              },
              "HTTP400-InvalidFourDigitSsnFormat": {
                "summary": "InvalidFourDigitSsnFormat",
                "value": "12-256"
              },
              "HTTP400-InvalidFourDigitSsnLength": {
                "summary": "InvalidFourDigitSsnLength",
                "value": "12-256"
              },
              "HTTP400-InvalidPacerCaseIdFormat": {
                "summary": "InvalidPacerCaseIdFormat",
                "value": "12-256"
              },
              "HTTP400-InvalidPartyExactNameMatch": {
                "summary": "InvalidPartyExactNameMatch",
                "value": "12-256"
              },
              "HTTP400-InvalidQueryParameters": {
                "summary": "InvalidQueryParameters",
                "value": "12-256"
              },
              "HTTP400-InvalidSortQuery": {
                "summary": "InvalidSortQuery",
                "value": "12-256"
              },
              "HTTP400-InvalidSortQueryFormat": {
                "summary": "InvalidSortQueryFormat",
                "value": "12-256"
              },
              "HTTP400-InvalidSsnOrEinFormat": {
                "summary": "InvalidSsnOrEinFormat",
                "value": "12-256"
              },
              "HTTP400-InvalidStartAndEndDischargedDate": {
                "summary": "InvalidStartAndEndDischargedDate",
                "value": "12-256"
              },
              "HTTP400-InvalidStartAndEndDismissedDate": {
                "summary": "InvalidStartAndEndDismissedDate",
                "value": "12-256"
              },
              "HTTP400-InvalidStartAndEndFiledDate": {
                "summary": "InvalidStartAndEndFiledDate",
                "value": "12-256"
              },
              "HTTP400-InvalidStartAndEndTerminatedDate": {
                "summary": "InvalidStartAndEndTerminatedDate",
                "value": "12-256"
              },
              "HTTP400-LastNameNotPassedWhenFirstOrMiddlePassed": {
                "summary": "LastNameNotPassedWhenFirstOrMiddlePassed",
                "value": "12-256"
              },
              "HTTP400-PageNumberParameterNotPassed": {
                "summary": "PageNumberParameterNotPassed",
                "value": "12-256"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": "12-256"
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": "12-256"
              },
              "HTTP400-RequestedPageNumberIsInvalid": {
                "summary": "RequestedPageNumberIsInvalid",
                "value": "12-256"
              },
              "HTTP400-RequiredPartySearchValidation": {
                "summary": "RequiredPartySearchValidation",
                "value": null
              }
            },
            "in": "query",
            "name": "caseNumber",
            "schema": {
              "example": "12-1234",
              "maxLength": 50,
              "minLength": 3,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "Sequentially generated number that identifies the case in PACER system.",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-CaseTitleValidation": {
                "summary": "CaseTitleValidation",
                "value": 256
              },
              "HTTP400-InvalidCaseNumberFormat": {
                "summary": "InvalidCaseNumberFormat",
                "value": 256
              },
              "HTTP400-InvalidCaseOfficeFormat": {
                "summary": "InvalidCaseOfficeFormat",
                "value": 256
              },
              "HTTP400-InvalidCaseSequenceNumberFormat": {
                "summary": "InvalidCaseSequenceNumberFormat",
                "value": 256
              },
              "HTTP400-InvalidCaseStatus": {
                "summary": "InvalidCaseStatus",
                "value": 256
              },
              "HTTP400-InvalidCaseType": {
                "summary": "InvalidCaseType",
                "value": 256
              },
              "HTTP400-InvalidCaseYearFormat": {
                "summary": "InvalidCaseYearFormat",
                "value": 256
              },
              "HTTP400-InvalidCaseYearFromFormat": {
                "summary": "InvalidCaseYearFromFormat",
                "value": 256
              },
              "HTTP400-InvalidCaseYearToFormat": {
                "summary": "InvalidCaseYearToFormat",
                "value": 256
              },
              "HTTP400-InvalidCourtRegionId": {
                "summary": "InvalidCourtRegionId",
                "value": 256
              },
              "HTTP400-InvalidFourDigitSsnFormat": {
                "summary": "InvalidFourDigitSsnFormat",
                "value": 256
              },
              "HTTP400-InvalidFourDigitSsnLength": {
                "summary": "InvalidFourDigitSsnLength",
                "value": 256
              },
              "HTTP400-InvalidPacerCaseIdFormat": {
                "summary": "InvalidPacerCaseIdFormat",
                "value": "pacer"
              },
              "HTTP400-InvalidPartyExactNameMatch": {
                "summary": "InvalidPartyExactNameMatch",
                "value": 256
              },
              "HTTP400-InvalidQueryParameters": {
                "summary": "InvalidQueryParameters",
                "value": 256
              },
              "HTTP400-InvalidSortQuery": {
                "summary": "InvalidSortQuery",
                "value": 256
              },
              "HTTP400-InvalidSortQueryFormat": {
                "summary": "InvalidSortQueryFormat",
                "value": 256
              },
              "HTTP400-InvalidSsnOrEinFormat": {
                "summary": "InvalidSsnOrEinFormat",
                "value": 256
              },
              "HTTP400-InvalidStartAndEndDischargedDate": {
                "summary": "InvalidStartAndEndDischargedDate",
                "value": 256
              },
              "HTTP400-InvalidStartAndEndDismissedDate": {
                "summary": "InvalidStartAndEndDismissedDate",
                "value": 256
              },
              "HTTP400-InvalidStartAndEndFiledDate": {
                "summary": "InvalidStartAndEndFiledDate",
                "value": 256
              },
              "HTTP400-InvalidStartAndEndTerminatedDate": {
                "summary": "InvalidStartAndEndTerminatedDate",
                "value": 256
              },
              "HTTP400-LastNameNotPassedWhenFirstOrMiddlePassed": {
                "summary": "LastNameNotPassedWhenFirstOrMiddlePassed",
                "value": 256
              },
              "HTTP400-PageNumberParameterNotPassed": {
                "summary": "PageNumberParameterNotPassed",
                "value": 256
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": 256
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": 256
              },
              "HTTP400-RequestedPageNumberIsInvalid": {
                "summary": "RequestedPageNumberIsInvalid",
                "value": 256
              }
            },
            "in": "query",
            "name": "pacerCaseId",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "The last name of a party to search. This can be person or non person entity.",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": "Smith"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": "Smith"
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": "Smith"
              }
            },
            "in": "query",
            "name": "lastName",
            "schema": {
              "example": "John",
              "maxLength": 50,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "The first name of a party to search.",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": "John"
              },
              "HTTP400-LastNameNotPassedWhenFirstOrMiddlePassed": {
                "summary": "LastNameNotPassedWhenFirstOrMiddlePassed",
                "value": "John"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": "John"
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": "John"
              }
            },
            "in": "query",
            "name": "firstName",
            "schema": {
              "example": "John",
              "maxLength": 100,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "The middle name of a party to search.",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": "Doe"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "middleName",
            "schema": {
              "example": "Doe",
              "maxLength": 100,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "The name suffix (e.g., III, MD).",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": "MD"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "generation",
            "schema": {
              "example": "III",
              "maxLength": 5,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "The court-assigned party type for a party involved in a case. Party type codes are created and assigned by individual courts, and as such, their meanings can vary from court to court.",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": "ptf"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "partyType",
            "schema": {
              "example": "ptf",
              "maxLength": 50,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "When set to true this field will search the party with an exact match of the name provided.",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-InvalidPartyExactNameMatch": {
                "summary": "InvalidPartyExactNameMatch",
                "value": "Smith"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "partyExactNameMatch",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "The court-assigned role for a party to a case. Party role codes are created and assigned by individual courts, and as such, their meanings can vary from court to court.",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-LastNameNotPassedWhenFirstOrMiddlePassed": {
                "summary": "LastNameNotPassedWhenFirstOrMiddlePassed",
                "value": "plantiff"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "partyRoleArray",
            "schema": {
              "items": {
                "example": "plantiff",
                "maxLength": 50,
                "nullable": true,
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "You can search using the case name even if you know one party. \n\n\tExamples: \n\n\tA search for case title john doe v will result in all cases with the case title John Doe v. \n\n\tA search for case title Acme, Inc. will result in all case titles starting with Acme, Inc.",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-CaseTitleValidation": {
                "summary": "CaseTitleValidation",
                "value": "A"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseTitle",
            "schema": {
              "maxLength": 255,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "The divisional office in which the case was filed.",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-InvalidCaseOfficeFormat": {
                "summary": "InvalidCaseOfficeFormat",
                "value": "cv"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseOffice",
            "schema": {
              "maxLength": 1,
              "type": "integer"
            }
          },
          {
            "description": "The sequence number of a given case. Ex 12345",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-InvalidCaseSequenceNumberFormat": {
                "summary": "InvalidCaseSequenceNumberFormat",
                "value": "12-256"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseSequenceNumber",
            "schema": {
              "maxLength": 6,
              "type": "integer"
            }
          },
          {
            "description": "The two digits or four digits of the year in which the case was filed.",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-InvalidCaseYearFormat": {
                "summary": "InvalidCaseYearFormat",
                "value": 2012
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseYear",
            "schema": {
              "maxLength": 4,
              "type": "integer"
            }
          },
          {
            "description": "Search can be narrowed down by passing caseTypes. Please use the <a href='https://docs.unicourt.com/pacer-glossary/appendix-a-case-types'>APPENDIX A: Case Types</a> mentioned in the API Documentation. \n\n\tScenario: When mulitple case types needs to be requested. \n\n\tImagine for a given case number 12-1234 I would like to search only with the case type civil(cv) and criminal(cr), My query in the request will look like the example mentioned below. \n\n\tExample: caseTypeArray=cv&caseTypeArray=cr",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-InvalidCaseType": {
                "summary": "InvalidCaseType",
                "value": 1234
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseTypeArray",
            "schema": {
              "items": {
                "maxLength": 255,
                "nullable": true,
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "Search can be narrowed down by passing courtRegionId. Please use the <a href='https://docs.unicourt.com/pacer-glossary/appendix-b-court-regions'>APPENDIX B: Court Regions</a> mentioned in the API Documentation. \n\n\tScenario: When mulitple court region ids needs to be requested. \n\n\tImagine for a given case number 12-1234 I would like to search in the court regions California Central (cac) and California Eastern (cae), My query in the request will look like the example mentioned below. \n\n\tExample: courtRegionIdArray=cac&courtRegionIdArray=cae",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-InvalidCourtRegionId": {
                "summary": "InvalidCourtRegionId",
                "value": "civil"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "courtRegionIdArray",
            "schema": {
              "items": {
                "maxLength": 255,
                "nullable": true,
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "Limit the results of the search to those cases from the year specified or later",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-InvalidCaseYearFromFormat": {
                "summary": "InvalidCaseYearFromFormat",
                "value": "2012-12-20"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseYearFrom",
            "schema": {
              "maxLength": 4,
              "type": "integer"
            }
          },
          {
            "description": "Limit the results of the search to those cases from the year specified or earlier",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-InvalidCaseYearToFormat": {
                "summary": "InvalidCaseYearToFormat",
                "value": "2012-12-20"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseYearTo",
            "schema": {
              "maxLength": 4,
              "type": "integer"
            }
          },
          {
            "description": "The 9 digit Social Security number or Federal Tax ID can be used in this search. The delimiter dash (-) can be used as the input to this API but wont be used during the search. A search for SSN 123-45-6789 or 12-3456789 will yield the same results as a search for 123456789.",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-InvalidSsnOrEinFormat": {
                "summary": "InvalidSsnOrEinFormat",
                "value": "125689545669954655"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "ssnOrEin",
            "schema": {
              "maxLength": 9,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "Search for parties whose SSN ends with a specified four digits.\n\n\tNote: When specified, a last name/entity name must also be specified.",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-InvalidFourDigitSsnFormat": {
                "summary": "InvalidFourDigitSsnFormat",
                "value": 23654
              },
              "HTTP400-InvalidFourDigitSsnLength": {
                "summary": "InvalidFourDigitSsnLength",
                "value": 23654
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "fourDigitSsn",
            "schema": {
              "maxLength": 4,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "Narrowing the search by limiting the cases which matches the criteria for case filed start date on or after the given date. Format: YYYY-MM-DDTHH:MM:SS+ZZ:zz, Ex: 2017-12-20T12:54:24+00:00",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-InvalidStartAndEndFiledDate": {
                "summary": "InvalidStartAndEndFiledDate",
                "value": "2012-12-20T12:54:24+00:00"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseFiledStartDate",
            "schema": {
              "format": "date-time",
              "maxLength": 25,
              "minLength": 25,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "Narrowing the search by limiting the cases which matches the criteria for case filed end date on or before the given date. Format: YYYY-MM-DDTHH:MM:SS+ZZ:zz, Ex: 2017-12-20T12:54:24+00:00",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-InvalidStartAndEndFiledDate": {
                "summary": "InvalidStartAndEndFiledDate",
                "value": "2012-12-19T12:54:24+00:00"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseFiledEndDate",
            "schema": {
              "format": "date-time",
              "maxLength": 25,
              "minLength": 25,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "Narrowing the search by limiting the cases which matches the criteria for case terminated start date on or after the given date. Format: YYYY-MM-DDTHH:MM:SS+ZZ:zz, Ex: 2017-12-20T12:54:24+00:00",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-InvalidStartAndEndTerminatedDate": {
                "summary": "InvalidStartAndEndTerminatedDate",
                "value": "2017-12-20T12:54:24+00:00"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseTerminatedStartDate",
            "schema": {
              "format": "date-time",
              "maxLength": 25,
              "minLength": 25,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "Narrowing the search by limiting the cases which matches the criteria for case terminated end date on or before the given date. Format: YYYY-MM-DDTHH:MM:SS+ZZ:zz, Ex: 2017-12-20T12:54:24+00:00",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-InvalidStartAndEndTerminatedDate": {
                "summary": "InvalidStartAndEndTerminatedDate",
                "value": "2017-12-19T12:54:24+00:00"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseTerminatedEndDate",
            "schema": {
              "format": "date-time",
              "maxLength": 25,
              "minLength": 25,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "Narrowing the search for bankruptcy cases by limiting the cases which matches the criteria for case discharged start date on or after the given date. Format: YYYY-MM-DDTHH:MM:SS+ZZ:zz, Ex: 2017-12-20T12:54:24+00:00 \n\n\tNote: This parameter is applicable since we only perform this search for Bankruptcy Court type.",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-InvalidStartAndEndDischargedDate": {
                "summary": "InvalidStartAndEndDischargedDate",
                "value": "2017-12-20T12:54:24+00:00"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseDischargedStartDate",
            "schema": {
              "format": "date-time",
              "maxLength": 25,
              "minLength": 25,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "Narrowing the search for bankruptcy cases by limiting the cases which matches the criteria for case discharged end date on or before the given date. Format: YYYY-MM-DDTHH:MM:SS+ZZ:zz, Ex: 2017-12-20T12:54:24+00:00 \n\n\tNote: This parameter is applicable since we only perform this search for Bankruptcy Court type.",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-InvalidStartAndEndDischargedDate": {
                "summary": "InvalidStartAndEndDischargedDate",
                "value": "2017-12-19T12:54:24+00:00"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseDischargedEndDate",
            "schema": {
              "format": "date-time",
              "maxLength": 25,
              "minLength": 25,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "Narrowing the search for bankruptcy cases by limiting the cases which matches the criteria for case dismissed start date on or after the given date. Format: YYYY-MM-DDTHH:MM:SS+ZZ:zz, Ex: 2017-12-20T12:54:24+00:00 \n\n\tNote: This parameter is applicable since we only perform this search for Bankruptcy Court type.",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-InvalidStartAndEndDismissedDate": {
                "summary": "InvalidStartAndEndDismissedDate",
                "value": "2017-12-20T12:54:24+00:00"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseDismissedStartDate",
            "schema": {
              "format": "date-time",
              "maxLength": 25,
              "minLength": 25,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "Narrowing the search by limiting the cases which matches the criteria for case terminated end date on or before the given date. Format: YYYY-MM-DDTHH:MM:SS+ZZ:zz, Ex: 2017-12-20T12:54:24+00:00",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-InvalidStartAndEndDismissedDate": {
                "summary": "InvalidStartAndEndDismissedDate",
                "value": "2017-12-19T12:54:24+00:00"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseDismissedEndDate",
            "schema": {
              "format": "date-time",
              "maxLength": 25,
              "minLength": 25,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "The criteria based on which the search results are to be sorted. Please use the <a href='https://docs.unicourt.com/pacer-glossary/appendix-c-sort-parameter'>APPENDIX C: Sort Parameter - Sortable Party Parameters</a> mentioned in the API Documentation. The fields can be sorted either ASC or DESC. \n\n\tScenario 1: When mulitple sort paramters needs to be requested. \n\n\tImagine for a given case number 12-1234 I would like to sort the results in the Ascending order of courtId and caseId, My query in the request will look like the example mentioned below. \n\n\tExample: sortParameterQuery=courtId,ASC&caseId,ASC \n\n\tScenario 2: When you want to sort the response using the case parameters in the party search. \n\n\tImagine for a given case number 12-1234 I would like to sort the results in the Ascending order of caseOffice and descending order of caseId, My query in the request will look like the example mentioned below. \n\n\tExample: sortParameterQuery=courtCase.caseOffice,ASC&caseid,DESC",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-InvalidSortQuery": {
                "summary": "InvalidSortQuery",
                "value": "sort=caseYear"
              },
              "HTTP400-InvalidSortQueryFormat": {
                "summary": "InvalidSortQueryFormat",
                "value": "[sort=caseYear,DESC]"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "sortParameterQuery",
            "schema": {
              "default": "sort=caseYear,DESC",
              "maxLength": 100,
              "minLength": 5,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "Status of a case. 'closed' for a Terminated case, 'open' for Pending cases. If this parameter is not sent both cases that fall in open and closed will be queried.",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-InvalidCaseStatus": {
                "summary": "InvalidCaseStatus",
                "value": "all"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseStatus",
            "schema": {
              "enum": [
                "open",
                "closed"
              ],
              "maxLength": 100,
              "minLength": 3,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "Page Number for a given Job ID or for the search your going to make.",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": 1
              },
              "HTTP400-CaseTitleValidation": {
                "summary": "CaseTitleValidation",
                "value": 1
              },
              "HTTP400-InvalidCaseNumberFormat": {
                "summary": "InvalidCaseNumberFormat",
                "value": 1
              },
              "HTTP400-InvalidCaseOfficeFormat": {
                "summary": "InvalidCaseOfficeFormat",
                "value": 1
              },
              "HTTP400-InvalidCaseSequenceNumberFormat": {
                "summary": "InvalidCaseSequenceNumberFormat",
                "value": 1
              },
              "HTTP400-InvalidCaseStatus": {
                "summary": "InvalidCaseStatus",
                "value": 1
              },
              "HTTP400-InvalidCaseType": {
                "summary": "InvalidCaseType",
                "value": 1
              },
              "HTTP400-InvalidCaseYearFormat": {
                "summary": "InvalidCaseYearFormat",
                "value": 1
              },
              "HTTP400-InvalidCaseYearFromFormat": {
                "summary": "InvalidCaseYearFromFormat",
                "value": 1
              },
              "HTTP400-InvalidCaseYearToFormat": {
                "summary": "InvalidCaseYearToFormat",
                "value": 1
              },
              "HTTP400-InvalidCourtRegionId": {
                "summary": "InvalidCourtRegionId",
                "value": 1
              },
              "HTTP400-InvalidFourDigitSsnFormat": {
                "summary": "InvalidFourDigitSsnFormat",
                "value": 1
              },
              "HTTP400-InvalidFourDigitSsnLength": {
                "summary": "InvalidFourDigitSsnLength",
                "value": 1
              },
              "HTTP400-InvalidPacerCaseIdFormat": {
                "summary": "InvalidPacerCaseIdFormat",
                "value": 1
              },
              "HTTP400-InvalidPartyExactNameMatch": {
                "summary": "InvalidPartyExactNameMatch",
                "value": 1
              },
              "HTTP400-InvalidQueryParameters": {
                "summary": "InvalidQueryParameters",
                "value": 1
              },
              "HTTP400-InvalidSortQuery": {
                "summary": "InvalidSortQuery",
                "value": 1
              },
              "HTTP400-InvalidSortQueryFormat": {
                "summary": "InvalidSortQueryFormat",
                "value": 1
              },
              "HTTP400-InvalidSsnOrEinFormat": {
                "summary": "InvalidSsnOrEinFormat",
                "value": 1
              },
              "HTTP400-InvalidStartAndEndDischargedDate": {
                "summary": "InvalidStartAndEndDischargedDate",
                "value": 1
              },
              "HTTP400-InvalidStartAndEndDismissedDate": {
                "summary": "InvalidStartAndEndDismissedDate",
                "value": 1
              },
              "HTTP400-InvalidStartAndEndFiledDate": {
                "summary": "InvalidStartAndEndFiledDate",
                "value": 1
              },
              "HTTP400-InvalidStartAndEndTerminatedDate": {
                "summary": "InvalidStartAndEndTerminatedDate",
                "value": 1
              },
              "HTTP400-LastNameNotPassedWhenFirstOrMiddlePassed": {
                "summary": "LastNameNotPassedWhenFirstOrMiddlePassed",
                "value": 1
              },
              "HTTP400-PageNumberParameterNotPassed": {
                "summary": "PageNumberParameterNotPassed",
                "value": null
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": 1
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": 1
              },
              "HTTP400-RequestedPageNumberIsInvalid": {
                "summary": "RequestedPageNumberIsInvalid",
                "value": "one"
              },
              "HTTP400-RequiredPartySearchValidation": {
                "summary": "RequiredPartySearchValidation",
                "value": 1
              }
            },
            "in": "query",
            "name": "pageNumber",
            "schema": {
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "PCLParty": {
                    "$ref": "#/components/examples/PCLParty"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/PCLParty"
                }
              }
            },
            "description": "The request is recieved."
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "CaseTitleValidation": {
                    "$ref": "#/components/examples/FailurePCLCaseTitleValidation"
                  },
                  "ClientCodeNotEntered": {
                    "$ref": "#/components/examples/FailurePacerClientCodeNotEntered"
                  },
                  "InvalidCaseNumberFormat": {
                    "$ref": "#/components/examples/FailurePCLInvalidCaseNumberFormatForAppeal"
                  },
                  "InvalidCaseOfficeFormat": {
                    "$ref": "#/components/examples/FailurePCLInvalidCaseOffice"
                  },
                  "InvalidCaseSequenceNumberFormat": {
                    "$ref": "#/components/examples/FailurePCLInvalidCaseSequenceNumber"
                  },
                  "InvalidCaseStatus": {
                    "$ref": "#/components/examples/FailureInvalidCaseStatus"
                  },
                  "InvalidCaseType": {
                    "$ref": "#/components/examples/FailureInvalidCaseType"
                  },
                  "InvalidCaseYearFormat": {
                    "$ref": "#/components/examples/FailurePCLInvalidCaseYear"
                  },
                  "InvalidCourtRegionId": {
                    "$ref": "#/components/examples/FailureInvalidCourtRegionId"
                  },
                  "InvalidFourDigitSsnFormat": {
                    "$ref": "#/components/examples/FailureInvalidFourDigitSsnFormat"
                  },
                  "InvalidFourDigitSsnLength": {
                    "$ref": "#/components/examples/FailureInvalidFourDigitSsnLength"
                  },
                  "InvalidPacerUserIdOrPassword": {
                    "$ref": "#/components/examples/FailurePacerUserIdOrPassword"
                  },
                  "InvalidPartyExactNameMatch": {
                    "$ref": "#/components/examples/FailureInvalidPartyExactNameMatch"
                  },
                  "InvalidSortQuery": {
                    "$ref": "#/components/examples/FailureInvalidSortParameterPassed"
                  },
                  "InvalidSortQueryFormat": {
                    "$ref": "#/components/examples/FailureInvalidSortParameterQueryFormat"
                  },
                  "InvalidSsnOrEinFormat": {
                    "$ref": "#/components/examples/FailureInvalidSsnOrEinFormat"
                  },
                  "InvalidStartAndEndDischargedDate": {
                    "$ref": "#/components/examples/FailurePCLCaseDismissedDateValidation"
                  },
                  "InvalidStartAndEndDismissedDate": {
                    "$ref": "#/components/examples/FailurePCLCaseTerminatedDateValidation"
                  },
                  "InvalidStartAndEndFiledDate": {
                    "$ref": "#/components/examples/FailurePCLCaseFiledDateValidation"
                  },
                  "InvalidStartAndEndTerminatedDate": {
                    "$ref": "#/components/examples/FailurePCLCaseTerminatedDateValidation"
                  },
                  "LastNameNotPassedWhenFirstOrMiddlePassed": {
                    "$ref": "#/components/examples/FailureLastNameNotPassedWhenFirstOrMiddlePassed"
                  },
                  "PacerAccountDisabled": {
                    "$ref": "#/components/examples/FailurePacerAccountDisabled"
                  },
                  "PacerCredentialsNotFound": {
                    "$ref": "#/components/examples/FailurePacerCredentialsNotFound"
                  },
                  "PageNumberParameterNotPassed": {
                    "$ref": "#/components/examples/FailurePageNumberIdNotPassed"
                  },
                  "RequestedClientCodeIsInvalid": {
                    "$ref": "#/components/examples/FailureClientCodeIsInvalid"
                  },
                  "RequestedPacerUserIdIsInvalid": {
                    "$ref": "#/components/examples/FailurePacerUserIdIsInvalid"
                  },
                  "RequestedPageNumberIsInvalid": {
                    "$ref": "#/components/examples/FailureInvalidPageNumber"
                  },
                  "RequiredPartySearchValidation": {
                    "$ref": "#/components/examples/FailurePCLRequiredFieldPartySearch"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Invalid Input Parameter"
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "ServerError": {
                    "$ref": "#/components/examples/FailureServerError"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Server Error"
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "PACER Case Locator Search API for All Courts.",
        "tags": [
          "PACER API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [],
      "x-api-name": "PCLPartyBankruptcyCourtsAPI",
      "x-unicourt-tag": "PACERAPIs"
    },
    "/pacerCaseLocator/partySearch/civilCourts": {
      "get": {
        "description": "PACER Case Locator Party Search API for Civil Courts.",
        "operationId": "CivilCourtsPacerCaseLocatorPartySearch",
        "parameters": [
          {
            "description": "User ID or User Name of the PACER Account used while signing in to PACER.",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": "john_doe"
              },
              "HTTP400-CaseTitleValidation": {
                "summary": "CaseTitleValidation",
                "value": "john_doe"
              },
              "HTTP400-ClientCodeNotEntered": {
                "summary": "ClientCodeNotEntered",
                "value": "john_doe"
              },
              "HTTP400-InvalidCaseNumberFormat": {
                "summary": "InvalidCaseNumberFormat",
                "value": "john_doe"
              },
              "HTTP400-InvalidCaseOfficeFormat": {
                "summary": "InvalidCaseOfficeFormat",
                "value": "john_doe"
              },
              "HTTP400-InvalidCaseSequenceNumberFormat": {
                "summary": "InvalidCaseSequenceNumberFormat",
                "value": "john_doe"
              },
              "HTTP400-InvalidCaseStatus": {
                "summary": "InvalidCaseStatus",
                "value": "john_doe"
              },
              "HTTP400-InvalidCaseType": {
                "summary": "InvalidCaseType",
                "value": "john_doe"
              },
              "HTTP400-InvalidCaseYearFormat": {
                "summary": "InvalidCaseYearFormat",
                "value": "john_doe"
              },
              "HTTP400-InvalidClientCodeEntered": {
                "summary": "InvalidClientCodeEntered",
                "value": "john_doe"
              },
              "HTTP400-InvalidCourtRegionId": {
                "summary": "InvalidCourtRegionId",
                "value": "john_doe"
              },
              "HTTP400-InvalidPacerCaseIdFormat": {
                "summary": "InvalidPacerCaseIdFormat",
                "value": "john_doe"
              },
              "HTTP400-InvalidPacerUserIdOrPassword": {
                "summary": "InvalidPacerUserIdOrPassword",
                "value": "john_doe"
              },
              "HTTP400-InvalidQueryParameters": {
                "summary": "InvalidQueryParameters",
                "value": "john_doe"
              },
              "HTTP400-InvalidSortQuery": {
                "summary": "InvalidSortQuery",
                "value": "john_doe"
              },
              "HTTP400-InvalidSortQueryFormat": {
                "summary": "InvalidSortQueryFormat",
                "value": "john_doe"
              },
              "HTTP400-InvalidStartAndEndFiledDate": {
                "summary": "InvalidStartAndEndFiledDate",
                "value": "john_doe"
              },
              "HTTP400-InvalidStartAndEndTerminatedDate": {
                "summary": "InvalidStartAndEndTerminatedDate",
                "value": "john_doe"
              },
              "HTTP400-PacerAccountDisabled": {
                "summary": "PacerAccountDisabled",
                "value": "john_doe"
              },
              "HTTP400-PacerCredentialsNotFound": {
                "summary": "PacerCredentialsNotFound",
                "value": "john_doe"
              },
              "HTTP400-PageNumberParameterNotPassed": {
                "summary": "PageNumberParameterNotPassed",
                "value": "john_doe"
              },
              "HTTP400-PasswordIsNotMinLength": {
                "summary": "PasswordIsNotMinLength",
                "value": "john_doe"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": "john_doe"
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": "john$doe123"
              },
              "HTTP400-RequestedPageNumberIsInvalid": {
                "summary": "RequestedPageNumberIsInvalid",
                "value": "john_doe"
              },
              "HTTP400-RequiredCaseSearchValidation": {
                "summary": "RequiredCaseSearchValidation",
                "value": "john_doe"
              },
              "HTTP400-TooManyLoginAttempts": {
                "summary": "TooManyLoginAttempts",
                "value": "john_doe"
              },
              "HTTP400-UsernameIsNotMinLength": {
                "summary": "UsernameIsNotMinLength",
                "value": "john_doe"
              }
            },
            "in": "query",
            "name": "pacerUserId",
            "required": true,
            "schema": {
              "example": "johndoe",
              "maxLength": 20,
              "minLength": 6,
              "nullable": false,
              "type": "string"
            }
          },
          {
            "description": "Client Code used while signing in to PACER account.",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": "john"
              },
              "HTTP400-CaseTitleValidation": {
                "summary": "CaseTitleValidation",
                "value": "john"
              },
              "HTTP400-ClientCodeNotEntered": {
                "summary": "ClientCodeNotEntered",
                "value": "john"
              },
              "HTTP400-InvalidCaseNumberFormat": {
                "summary": "InvalidCaseNumberFormat",
                "value": "john"
              },
              "HTTP400-InvalidCaseOfficeFormat": {
                "summary": "InvalidCaseOfficeFormat",
                "value": "john"
              },
              "HTTP400-InvalidCaseSequenceNumberFormat": {
                "summary": "InvalidCaseSequenceNumberFormat",
                "value": "john"
              },
              "HTTP400-InvalidCaseStatus": {
                "summary": "InvalidCaseStatus",
                "value": "john"
              },
              "HTTP400-InvalidCaseType": {
                "summary": "InvalidCaseType",
                "value": "john"
              },
              "HTTP400-InvalidCaseYearFormat": {
                "summary": "InvalidCaseYearFormat",
                "value": "john"
              },
              "HTTP400-InvalidClientCodeEntered": {
                "summary": "InvalidClientCodeEntered",
                "value": "john"
              },
              "HTTP400-InvalidCourtRegionId": {
                "summary": "InvalidCourtRegionId",
                "value": "john"
              },
              "HTTP400-InvalidPacerCaseIdFormat": {
                "summary": "InvalidPacerCaseIdFormat",
                "value": "john"
              },
              "HTTP400-InvalidPacerUserIdOrPassword": {
                "summary": "InvalidPacerUserIdOrPassword",
                "value": "john"
              },
              "HTTP400-InvalidQueryParameters": {
                "summary": "InvalidQueryParameters",
                "value": "john"
              },
              "HTTP400-InvalidSortQuery": {
                "summary": "InvalidSortQuery",
                "value": "john"
              },
              "HTTP400-InvalidSortQueryFormat": {
                "summary": "InvalidSortQueryFormat",
                "value": "john"
              },
              "HTTP400-InvalidStartAndEndFiledDate": {
                "summary": "InvalidStartAndEndFiledDate",
                "value": "john"
              },
              "HTTP400-InvalidStartAndEndTerminatedDate": {
                "summary": "InvalidStartAndEndTerminatedDate",
                "value": "john"
              },
              "HTTP400-PacerAccountDisabled": {
                "summary": "PacerAccountDisabled",
                "value": "john"
              },
              "HTTP400-PacerCredentialsNotFound": {
                "summary": "PacerCredentialsNotFound",
                "value": "john"
              },
              "HTTP400-PageNumberParameterNotPassed": {
                "summary": "PageNumberParameterNotPassed",
                "value": "john"
              },
              "HTTP400-PasswordIsNotMinLength": {
                "summary": "PasswordIsNotMinLength",
                "value": "john"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": "john$123"
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": "john"
              },
              "HTTP400-RequestedPageNumberIsInvalid": {
                "summary": "RequestedPageNumberIsInvalid",
                "value": "john"
              },
              "HTTP400-RequiredCaseSearchValidation": {
                "summary": "RequiredCaseSearchValidation",
                "value": "john"
              },
              "HTTP400-TooManyLoginAttempts": {
                "summary": "TooManyLoginAttempts",
                "value": "john"
              },
              "HTTP400-UsernameIsNotMinLength": {
                "summary": "UsernameIsNotMinLength",
                "value": "john"
              }
            },
            "in": "query",
            "name": "pacerClientCode",
            "required": true,
            "schema": {
              "example": "john",
              "maxLength": 32,
              "minLength": 1,
              "nullable": false,
              "type": "string"
            }
          },
          {
            "description": "If the court type is selected as All or if you need data for a specific case number format, then you need to use this option. Case numbers may be entered in each of the following formats: \n\n\tyy-nnnnn \n\n\tyy-tp-nnnnn \n\n\tyy tp nnnnn \n\n\tyytpnnnnn \n\n\to:yy-nnnnn \n\n\to:yy-tp-nnnnn \n\n\to:yy tp nnnnn \n\n\to:yytpnnnnn \n\nwhere: \n\nyy  case year (may be 2 or 4 digits) \n\nnnnnn  case number (up to 5 digits) \n\ntp  case type (up to 2 characters) \n\no  office where the case was filed (1 digit).",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": "07-1026"
              },
              "HTTP400-CaseTitleValidation": {
                "summary": "CaseTitleValidation",
                "value": "12-256"
              },
              "HTTP400-InvalidCaseNumberFormat": {
                "summary": "InvalidCaseNumberFormat",
                "value": "12-256-WDR"
              },
              "HTTP400-InvalidCaseOfficeFormat": {
                "summary": "InvalidCaseOfficeFormat",
                "value": "12-256"
              },
              "HTTP400-InvalidCaseSequenceNumberFormat": {
                "summary": "InvalidCaseSequenceNumberFormat",
                "value": "12-256"
              },
              "HTTP400-InvalidCaseStatus": {
                "summary": "InvalidCaseStatus",
                "value": "12-256"
              },
              "HTTP400-InvalidCaseType": {
                "summary": "InvalidCaseType",
                "value": "12-256"
              },
              "HTTP400-InvalidCaseYearFormat": {
                "summary": "InvalidCaseYearFormat",
                "value": "12-256"
              },
              "HTTP400-InvalidCaseYearFromFormat": {
                "summary": "InvalidCaseYearFromFormat",
                "value": "12-256"
              },
              "HTTP400-InvalidCaseYearToFormat": {
                "summary": "InvalidCaseYearToFormat",
                "value": "12-256"
              },
              "HTTP400-InvalidCourtRegionId": {
                "summary": "InvalidCourtRegionId",
                "value": "12-256"
              },
              "HTTP400-InvalidPacerCaseIdFormat": {
                "summary": "InvalidPacerCaseIdFormat",
                "value": "12-256"
              },
              "HTTP400-InvalidPartyExactNameMatch": {
                "summary": "InvalidPartyExactNameMatch",
                "value": "12-256"
              },
              "HTTP400-InvalidQueryParameters": {
                "summary": "InvalidQueryParameters",
                "value": "12-256"
              },
              "HTTP400-InvalidSortQuery": {
                "summary": "InvalidSortQuery",
                "value": "12-256"
              },
              "HTTP400-InvalidSortQueryFormat": {
                "summary": "InvalidSortQueryFormat",
                "value": "12-256"
              },
              "HTTP400-InvalidStartAndEndFiledDate": {
                "summary": "InvalidStartAndEndFiledDate",
                "value": "12-256"
              },
              "HTTP400-InvalidStartAndEndTerminatedDate": {
                "summary": "InvalidStartAndEndTerminatedDate",
                "value": "12-256"
              },
              "HTTP400-LastNameNotPassedWhenFirstOrMiddlePassed": {
                "summary": "LastNameNotPassedWhenFirstOrMiddlePassed",
                "value": "12-256"
              },
              "HTTP400-PageNumberParameterNotPassed": {
                "summary": "PageNumberParameterNotPassed",
                "value": "12-256"
              },
              "HTTP400-RequestedPageNumberIsInvalid": {
                "summary": "RequestedPageNumberIsInvalid",
                "value": "12-256"
              },
              "HTTP400-RequiredPartySearchValidation": {
                "summary": "RequiredPartySearchValidation",
                "value": null
              }
            },
            "in": "query",
            "name": "caseNumber",
            "schema": {
              "example": "12-1234",
              "maxLength": 50,
              "minLength": 3,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "Sequentially generated number that identifies the case in PACER system.",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-CaseTitleValidation": {
                "summary": "CaseTitleValidation",
                "value": 256
              },
              "HTTP400-InvalidCaseNumberFormat": {
                "summary": "InvalidCaseNumberFormat",
                "value": 256
              },
              "HTTP400-InvalidCaseOfficeFormat": {
                "summary": "InvalidCaseOfficeFormat",
                "value": 256
              },
              "HTTP400-InvalidCaseSequenceNumberFormat": {
                "summary": "InvalidCaseSequenceNumberFormat",
                "value": 256
              },
              "HTTP400-InvalidCaseStatus": {
                "summary": "InvalidCaseStatus",
                "value": 256
              },
              "HTTP400-InvalidCaseType": {
                "summary": "InvalidCaseType",
                "value": 256
              },
              "HTTP400-InvalidCaseYearFormat": {
                "summary": "InvalidCaseYearFormat",
                "value": 256
              },
              "HTTP400-InvalidCaseYearFromFormat": {
                "summary": "InvalidCaseYearFromFormat",
                "value": 256
              },
              "HTTP400-InvalidCaseYearToFormat": {
                "summary": "InvalidCaseYearToFormat",
                "value": 256
              },
              "HTTP400-InvalidCourtRegionId": {
                "summary": "InvalidCourtRegionId",
                "value": 256
              },
              "HTTP400-InvalidPacerCaseIdFormat": {
                "summary": "InvalidPacerCaseIdFormat",
                "value": "pacer"
              },
              "HTTP400-InvalidPartyExactNameMatch": {
                "summary": "InvalidPartyExactNameMatch",
                "value": 256
              },
              "HTTP400-InvalidQueryParameters": {
                "summary": "InvalidQueryParameters",
                "value": 256
              },
              "HTTP400-InvalidSortQuery": {
                "summary": "InvalidSortQuery",
                "value": 256
              },
              "HTTP400-InvalidSortQueryFormat": {
                "summary": "InvalidSortQueryFormat",
                "value": 256
              },
              "HTTP400-InvalidStartAndEndFiledDate": {
                "summary": "InvalidStartAndEndFiledDate",
                "value": 256
              },
              "HTTP400-InvalidStartAndEndTerminatedDate": {
                "summary": "InvalidStartAndEndTerminatedDate",
                "value": 256
              },
              "HTTP400-LastNameNotPassedWhenFirstOrMiddlePassed": {
                "summary": "LastNameNotPassedWhenFirstOrMiddlePassed",
                "value": 256
              },
              "HTTP400-PageNumberParameterNotPassed": {
                "summary": "PageNumberParameterNotPassed",
                "value": 256
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": 256
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": 256
              },
              "HTTP400-RequestedPageNumberIsInvalid": {
                "summary": "RequestedPageNumberIsInvalid",
                "value": 256
              }
            },
            "in": "query",
            "name": "pacerCaseId",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "The last name of a party to search. This can be person or non person entity.",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": "Smith"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": "Smith"
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": "Smith"
              }
            },
            "in": "query",
            "name": "lastName",
            "schema": {
              "example": "John",
              "maxLength": 50,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "The first name of a party to search.",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": "John"
              },
              "HTTP400-LastNameNotPassedWhenFirstOrMiddlePassed": {
                "summary": "LastNameNotPassedWhenFirstOrMiddlePassed",
                "value": "John"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "firstName",
            "schema": {
              "example": "John",
              "maxLength": 100,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "The middle name of a party to search.",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": "Doe"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "middleName",
            "schema": {
              "example": "Doe",
              "maxLength": 100,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "The name suffix (e.g., III, MD).",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": "MD"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "generation",
            "schema": {
              "example": "III",
              "maxLength": 5,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "The court-assigned party type for a party involved in a case. Party type codes are created and assigned by individual courts, and as such, their meanings can vary from court to court.",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": "ptf"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "partyType",
            "schema": {
              "example": "ptf",
              "maxLength": 50,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "When set to true this field will search the party with an exact match of the name provided.",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-InvalidPartyExactNameMatch": {
                "summary": "InvalidPartyExactNameMatch",
                "value": "Smith"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "partyExactNameMatch",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "The court-assigned role for a party to a case. Party role codes are created and assigned by individual courts, and as such, their meanings can vary from court to court.",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-LastNameNotPassedWhenFirstOrMiddlePassed": {
                "summary": "LastNameNotPassedWhenFirstOrMiddlePassed",
                "value": "plantiff"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "partyRoleArray",
            "schema": {
              "items": {
                "example": "plantiff",
                "maxLength": 50,
                "nullable": true,
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "You can search using the case name even if you know one party. \n\n\tExamples: \n\n\tA search for case title john doe v will result in all cases with the case title John Doe v. \n\n\tA search for case title Acme, Inc. will result in all case titles starting with Acme, Inc.",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-CaseTitleValidation": {
                "summary": "CaseTitleValidation",
                "value": "A"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseTitle",
            "schema": {
              "maxLength": 255,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "The divisional office in which the case was filed.",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-InvalidCaseOfficeFormat": {
                "summary": "InvalidCaseOfficeFormat",
                "value": "cv"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseOffice",
            "schema": {
              "maxLength": 1,
              "type": "integer"
            }
          },
          {
            "description": "The sequence number of a given case. Ex 12345",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-InvalidCaseSequenceNumberFormat": {
                "summary": "InvalidCaseSequenceNumberFormat",
                "value": "12-256"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseSequenceNumber",
            "schema": {
              "maxLength": 6,
              "type": "integer"
            }
          },
          {
            "description": "The two digits or four digits of the year in which the case was filed.",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-InvalidCaseYearFormat": {
                "summary": "InvalidCaseYearFormat",
                "value": 2012
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseYear",
            "schema": {
              "maxLength": 4,
              "type": "integer"
            }
          },
          {
            "description": "Search can be narrowed down by passing caseTypes. Please use the <a href='https://docs.unicourt.com/pacer-glossary/appendix-a-case-types'>APPENDIX A: Case Types</a> mentioned in the API Documentation. \n\n\tScenario: When mulitple case types needs to be requested. \n\n\tImagine for a given case number 12-1234 I would like to search only with the case type civil(cv) and criminal(cr), My query in the request will look like the example mentioned below. \n\n\tExample: caseTypeArray=cv&caseTypeArray=cr",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-InvalidCaseType": {
                "summary": "InvalidCaseType",
                "value": 1234
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseTypeArray",
            "schema": {
              "items": {
                "maxLength": 255,
                "nullable": true,
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "Search can be narrowed down by passing courtRegionId. Please use the <a href='https://docs.unicourt.com/pacer-glossary/appendix-b-court-regions'>APPENDIX B: Court Regions</a> mentioned in the API Documentation. \n\n\tScenario: When mulitple court region ids needs to be requested. \n\n\tImagine for a given case number 12-1234 I would like to search in the court regions California Central (cac) and California Eastern (cae), My query in the request will look like the example mentioned below. \n\n\tExample: courtRegionIdArray=cac&courtRegionIdArray=cae",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-InvalidCourtRegionId": {
                "summary": "InvalidCourtRegionId",
                "value": "civil"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "courtRegionIdArray",
            "schema": {
              "items": {
                "maxLength": 255,
                "nullable": true,
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "Limit the results of the search to those cases from the year specified or later",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-InvalidCaseYearFromFormat": {
                "summary": "InvalidCaseYearFromFormat",
                "value": "2012-12-20"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseYearFrom",
            "schema": {
              "maxLength": 4,
              "type": "integer"
            }
          },
          {
            "description": "Limit the results of the search to those cases from the year specified or earlier",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-InvalidCaseYearToFormat": {
                "summary": "InvalidCaseYearToFormat",
                "value": "2012-12-20"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseYearTo",
            "schema": {
              "maxLength": 4,
              "type": "integer"
            }
          },
          {
            "description": "Narrowing the search by limiting the cases which matches the criteria for case filed start date on or after the given date. Format: YYYY-MM-DDTHH:MM:SS+ZZ:zz, Ex: 2017-12-20T12:54:24+00:00",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-InvalidStartAndEndFiledDate": {
                "summary": "InvalidStartAndEndFiledDate",
                "value": "2012-12-20T12:54:24+00:00"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseFiledStartDate",
            "schema": {
              "format": "date-time",
              "maxLength": 25,
              "minLength": 25,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "Narrowing the search by limiting the cases which matches the criteria for case filed end date on or before the given date. Format: YYYY-MM-DDTHH:MM:SS+ZZ:zz, Ex: 2017-12-20T12:54:24+00:00",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-InvalidStartAndEndFiledDate": {
                "summary": "InvalidStartAndEndFiledDate",
                "value": "2012-12-19T12:54:24+00:00"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseFiledEndDate",
            "schema": {
              "format": "date-time",
              "maxLength": 25,
              "minLength": 25,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "Narrowing the search by limiting the cases which matches the criteria for case terminated start date on or after the given date. Format: YYYY-MM-DDTHH:MM:SS+ZZ:zz, Ex: 2017-12-20T12:54:24+00:00",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-InvalidStartAndEndTerminatedDate": {
                "summary": "InvalidStartAndEndTerminatedDate",
                "value": "2017-12-20T12:54:24+00:00"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseTerminatedStartDate",
            "schema": {
              "format": "date-time",
              "maxLength": 25,
              "minLength": 25,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "Narrowing the search by limiting the cases which matches the criteria for case terminated end date on or before the given date. Format: YYYY-MM-DDTHH:MM:SS+ZZ:zz, Ex: 2017-12-20T12:54:24+00:00",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-InvalidStartAndEndTerminatedDate": {
                "summary": "InvalidStartAndEndTerminatedDate",
                "value": "2017-12-19T12:54:24+00:00"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseTerminatedEndDate",
            "schema": {
              "format": "date-time",
              "maxLength": 25,
              "minLength": 25,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "The criteria based on which the search results are to be sorted. Please use the <a href='https://docs.unicourt.com/pacer-glossary/appendix-c-sort-parameter'>APPENDIX C: Sort Parameter - Sortable Party Parameters</a> mentioned in the API Documentation. The fields can be sorted either ASC or DESC. \n\n\tScenario 1: When mulitple sort paramters needs to be requested. \n\n\tImagine for a given case number 12-1234 I would like to sort the results in the Ascending order of courtId and caseId, My query in the request will look like the example mentioned below. \n\n\tExample: sortParameterQuery=courtId,ASC&caseId,ASC \n\n\tScenario 2: When you want to sort the response using the case parameters in the party search. \n\n\tImagine for a given case number 12-1234 I would like to sort the results in the Ascending order of caseOffice and descending order of caseId, My query in the request will look like the example mentioned below. \n\n\tExample: sortParameterQuery=courtCase.caseOffice,ASC&caseid,DESC",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-InvalidSortQuery": {
                "summary": "InvalidSortQuery",
                "value": "sort=caseYear"
              },
              "HTTP400-InvalidSortQueryFormat": {
                "summary": "InvalidSortQueryFormat",
                "value": "[sort=caseYear,DESC]"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "sortParameterQuery",
            "schema": {
              "default": "sort=caseYear,DESC",
              "maxLength": 100,
              "minLength": 5,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "Status of a case. 'closed' for a Terminated case, 'open' for Pending cases. If this parameter is not sent both cases that fall in open and closed will be queried.",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-InvalidCaseStatus": {
                "summary": "InvalidCaseStatus",
                "value": "all"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseStatus",
            "schema": {
              "enum": [
                "open",
                "closed"
              ],
              "maxLength": 100,
              "minLength": 3,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "Page Number for a given Job ID or for the search your going to make.",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": 1
              },
              "HTTP400-CaseTitleValidation": {
                "summary": "CaseTitleValidation",
                "value": 1
              },
              "HTTP400-InvalidCaseNumberFormat": {
                "summary": "InvalidCaseNumberFormat",
                "value": 1
              },
              "HTTP400-InvalidCaseOfficeFormat": {
                "summary": "InvalidCaseOfficeFormat",
                "value": 1
              },
              "HTTP400-InvalidCaseSequenceNumberFormat": {
                "summary": "InvalidCaseSequenceNumberFormat",
                "value": 1
              },
              "HTTP400-InvalidCaseStatus": {
                "summary": "InvalidCaseStatus",
                "value": 1
              },
              "HTTP400-InvalidCaseType": {
                "summary": "InvalidCaseType",
                "value": 1
              },
              "HTTP400-InvalidCaseYearFormat": {
                "summary": "InvalidCaseYearFormat",
                "value": 1
              },
              "HTTP400-InvalidCaseYearFromFormat": {
                "summary": "InvalidCaseYearFromFormat",
                "value": 1
              },
              "HTTP400-InvalidCaseYearToFormat": {
                "summary": "InvalidCaseYearToFormat",
                "value": 1
              },
              "HTTP400-InvalidCourtRegionId": {
                "summary": "InvalidCourtRegionId",
                "value": 1
              },
              "HTTP400-InvalidPacerCaseIdFormat": {
                "summary": "InvalidPacerCaseIdFormat",
                "value": 1
              },
              "HTTP400-InvalidPartyExactNameMatch": {
                "summary": "InvalidPartyExactNameMatch",
                "value": 1
              },
              "HTTP400-InvalidQueryParameters": {
                "summary": "InvalidQueryParameters",
                "value": 1
              },
              "HTTP400-InvalidSortQuery": {
                "summary": "InvalidSortQuery",
                "value": 1
              },
              "HTTP400-InvalidSortQueryFormat": {
                "summary": "InvalidSortQueryFormat",
                "value": 1
              },
              "HTTP400-InvalidStartAndEndFiledDate": {
                "summary": "InvalidStartAndEndFiledDate",
                "value": 1
              },
              "HTTP400-InvalidStartAndEndTerminatedDate": {
                "summary": "InvalidStartAndEndTerminatedDate",
                "value": 1
              },
              "HTTP400-LastNameNotPassedWhenFirstOrMiddlePassed": {
                "summary": "LastNameNotPassedWhenFirstOrMiddlePassed",
                "value": 1
              },
              "HTTP400-PageNumberParameterNotPassed": {
                "summary": "PageNumberParameterNotPassed",
                "value": null
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": 1
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": 1
              },
              "HTTP400-RequestedPageNumberIsInvalid": {
                "summary": "RequestedPageNumberIsInvalid",
                "value": "one"
              },
              "HTTP400-RequiredPartySearchValidation": {
                "summary": "RequiredPartySearchValidation",
                "value": 1
              }
            },
            "in": "query",
            "name": "pageNumber",
            "schema": {
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "PCLParty": {
                    "$ref": "#/components/examples/PCLParty"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/PCLParty"
                }
              }
            },
            "description": "The request is recieved."
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "CaseTitleValidation": {
                    "$ref": "#/components/examples/FailurePCLCaseTitleValidation"
                  },
                  "ClientCodeNotEntered": {
                    "$ref": "#/components/examples/FailurePacerClientCodeNotEntered"
                  },
                  "InvalidCaseNumberFormat": {
                    "$ref": "#/components/examples/FailurePCLInvalidCaseNumberFormatForAppeal"
                  },
                  "InvalidCaseOfficeFormat": {
                    "$ref": "#/components/examples/FailurePCLInvalidCaseOffice"
                  },
                  "InvalidCaseSequenceNumberFormat": {
                    "$ref": "#/components/examples/FailurePCLInvalidCaseSequenceNumber"
                  },
                  "InvalidCaseStatus": {
                    "$ref": "#/components/examples/FailureInvalidCaseStatus"
                  },
                  "InvalidCaseType": {
                    "$ref": "#/components/examples/FailureInvalidCaseType"
                  },
                  "InvalidCaseYearFormat": {
                    "$ref": "#/components/examples/FailurePCLInvalidCaseYear"
                  },
                  "InvalidCourtRegionId": {
                    "$ref": "#/components/examples/FailureInvalidCourtRegionId"
                  },
                  "InvalidPacerUserIdOrPassword": {
                    "$ref": "#/components/examples/FailurePacerUserIdOrPassword"
                  },
                  "InvalidPartyExactNameMatch": {
                    "$ref": "#/components/examples/FailureInvalidPartyExactNameMatch"
                  },
                  "InvalidSortQuery": {
                    "$ref": "#/components/examples/FailureInvalidSortParameterPassed"
                  },
                  "InvalidSortQueryFormat": {
                    "$ref": "#/components/examples/FailureInvalidSortParameterQueryFormat"
                  },
                  "InvalidStartAndEndFiledDate": {
                    "$ref": "#/components/examples/FailurePCLCaseFiledDateValidation"
                  },
                  "InvalidStartAndEndTerminatedDate": {
                    "$ref": "#/components/examples/FailurePCLCaseTerminatedDateValidation"
                  },
                  "LastNameNotPassedWhenFirstOrMiddlePassed": {
                    "$ref": "#/components/examples/FailureLastNameNotPassedWhenFirstOrMiddlePassed"
                  },
                  "PacerAccountDisabled": {
                    "$ref": "#/components/examples/FailurePacerAccountDisabled"
                  },
                  "PacerCredentialsNotFound": {
                    "$ref": "#/components/examples/FailurePacerCredentialsNotFound"
                  },
                  "PageNumberParameterNotPassed": {
                    "$ref": "#/components/examples/FailurePageNumberIdNotPassed"
                  },
                  "RequestedClientCodeIsInvalid": {
                    "$ref": "#/components/examples/FailureClientCodeIsInvalid"
                  },
                  "RequestedPacerUserIdIsInvalid": {
                    "$ref": "#/components/examples/FailurePacerUserIdIsInvalid"
                  },
                  "RequestedPageNumberIsInvalid": {
                    "$ref": "#/components/examples/FailureInvalidPageNumber"
                  },
                  "RequiredPartySearchValidation": {
                    "$ref": "#/components/examples/FailurePCLRequiredFieldPartySearch"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Invalid Input Parameter"
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "ServerError": {
                    "$ref": "#/components/examples/FailureServerError"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Server Error"
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "PACER Case Locator Search API for All Courts.",
        "tags": [
          "PACER API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [],
      "x-api-name": "PCLPartyCivilCourtsAPI",
      "x-unicourt-tag": "PACERAPIs"
    },
    "/pacerCaseLocator/partySearch/criminalCourts": {
      "get": {
        "description": "PACER Case Locator Party Search API for Criminal Courts.",
        "operationId": "CriminalCourtsPacerCaseLocatorPartySearch",
        "parameters": [
          {
            "description": "User ID or User Name of the PACER Account used while signing in to PACER.",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": "john_doe"
              },
              "HTTP400-CaseTitleValidation": {
                "summary": "CaseTitleValidation",
                "value": "john_doe"
              },
              "HTTP400-ClientCodeNotEntered": {
                "summary": "ClientCodeNotEntered",
                "value": "john_doe"
              },
              "HTTP400-InvalidCaseNumberFormat": {
                "summary": "InvalidCaseNumberFormat",
                "value": "john_doe"
              },
              "HTTP400-InvalidCaseOfficeFormat": {
                "summary": "InvalidCaseOfficeFormat",
                "value": "john_doe"
              },
              "HTTP400-InvalidCaseSequenceNumberFormat": {
                "summary": "InvalidCaseSequenceNumberFormat",
                "value": "john_doe"
              },
              "HTTP400-InvalidCaseStatus": {
                "summary": "InvalidCaseStatus",
                "value": "john_doe"
              },
              "HTTP400-InvalidCaseType": {
                "summary": "InvalidCaseType",
                "value": "john_doe"
              },
              "HTTP400-InvalidCaseYearFormat": {
                "summary": "InvalidCaseYearFormat",
                "value": "john_doe"
              },
              "HTTP400-InvalidClientCodeEntered": {
                "summary": "InvalidClientCodeEntered",
                "value": "john_doe"
              },
              "HTTP400-InvalidCourtRegionId": {
                "summary": "InvalidCourtRegionId",
                "value": "john_doe"
              },
              "HTTP400-InvalidPacerCaseIdFormat": {
                "summary": "InvalidPacerCaseIdFormat",
                "value": "john_doe"
              },
              "HTTP400-InvalidPacerUserIdOrPassword": {
                "summary": "InvalidPacerUserIdOrPassword",
                "value": "john_doe"
              },
              "HTTP400-InvalidQueryParameters": {
                "summary": "InvalidQueryParameters",
                "value": "john_doe"
              },
              "HTTP400-InvalidSortQuery": {
                "summary": "InvalidSortQuery",
                "value": "john_doe"
              },
              "HTTP400-InvalidSortQueryFormat": {
                "summary": "InvalidSortQueryFormat",
                "value": "john_doe"
              },
              "HTTP400-InvalidStartAndEndFiledDate": {
                "summary": "InvalidStartAndEndFiledDate",
                "value": "john_doe"
              },
              "HTTP400-InvalidStartAndEndTerminatedDate": {
                "summary": "InvalidStartAndEndTerminatedDate",
                "value": "john_doe"
              },
              "HTTP400-PacerAccountDisabled": {
                "summary": "PacerAccountDisabled",
                "value": "john_doe"
              },
              "HTTP400-PacerCredentialsNotFound": {
                "summary": "PacerCredentialsNotFound",
                "value": "john_doe"
              },
              "HTTP400-PageNumberParameterNotPassed": {
                "summary": "PageNumberParameterNotPassed",
                "value": "john_doe"
              },
              "HTTP400-PasswordIsNotMinLength": {
                "summary": "PasswordIsNotMinLength",
                "value": "john_doe"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": "john_doe"
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": "john$doe123"
              },
              "HTTP400-RequestedPageNumberIsInvalid": {
                "summary": "RequestedPageNumberIsInvalid",
                "value": "john_doe"
              },
              "HTTP400-RequiredCaseSearchValidation": {
                "summary": "RequiredCaseSearchValidation",
                "value": "john_doe"
              },
              "HTTP400-TooManyLoginAttempts": {
                "summary": "TooManyLoginAttempts",
                "value": "john_doe"
              },
              "HTTP400-UsernameIsNotMinLength": {
                "summary": "UsernameIsNotMinLength",
                "value": "john_doe"
              }
            },
            "in": "query",
            "name": "pacerUserId",
            "required": true,
            "schema": {
              "example": "johndoe",
              "maxLength": 20,
              "minLength": 6,
              "nullable": false,
              "type": "string"
            }
          },
          {
            "description": "Client Code used while signing in to PACER account.",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": "john"
              },
              "HTTP400-CaseTitleValidation": {
                "summary": "CaseTitleValidation",
                "value": "john"
              },
              "HTTP400-ClientCodeNotEntered": {
                "summary": "ClientCodeNotEntered",
                "value": "john"
              },
              "HTTP400-InvalidCaseNumberFormat": {
                "summary": "InvalidCaseNumberFormat",
                "value": "john"
              },
              "HTTP400-InvalidCaseOfficeFormat": {
                "summary": "InvalidCaseOfficeFormat",
                "value": "john"
              },
              "HTTP400-InvalidCaseSequenceNumberFormat": {
                "summary": "InvalidCaseSequenceNumberFormat",
                "value": "john"
              },
              "HTTP400-InvalidCaseStatus": {
                "summary": "InvalidCaseStatus",
                "value": "john"
              },
              "HTTP400-InvalidCaseType": {
                "summary": "InvalidCaseType",
                "value": "john"
              },
              "HTTP400-InvalidCaseYearFormat": {
                "summary": "InvalidCaseYearFormat",
                "value": "john"
              },
              "HTTP400-InvalidClientCodeEntered": {
                "summary": "InvalidClientCodeEntered",
                "value": "john"
              },
              "HTTP400-InvalidCourtRegionId": {
                "summary": "InvalidCourtRegionId",
                "value": "john"
              },
              "HTTP400-InvalidPacerCaseIdFormat": {
                "summary": "InvalidPacerCaseIdFormat",
                "value": "john"
              },
              "HTTP400-InvalidPacerUserIdOrPassword": {
                "summary": "InvalidPacerUserIdOrPassword",
                "value": "john"
              },
              "HTTP400-InvalidQueryParameters": {
                "summary": "InvalidQueryParameters",
                "value": "john"
              },
              "HTTP400-InvalidSortQuery": {
                "summary": "InvalidSortQuery",
                "value": "john"
              },
              "HTTP400-InvalidSortQueryFormat": {
                "summary": "InvalidSortQueryFormat",
                "value": "john"
              },
              "HTTP400-InvalidStartAndEndFiledDate": {
                "summary": "InvalidStartAndEndFiledDate",
                "value": "john"
              },
              "HTTP400-InvalidStartAndEndTerminatedDate": {
                "summary": "InvalidStartAndEndTerminatedDate",
                "value": "john"
              },
              "HTTP400-PacerAccountDisabled": {
                "summary": "PacerAccountDisabled",
                "value": "john"
              },
              "HTTP400-PacerCredentialsNotFound": {
                "summary": "PacerCredentialsNotFound",
                "value": "john"
              },
              "HTTP400-PageNumberParameterNotPassed": {
                "summary": "PageNumberParameterNotPassed",
                "value": "john"
              },
              "HTTP400-PasswordIsNotMinLength": {
                "summary": "PasswordIsNotMinLength",
                "value": "john"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": "john$123"
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": "john"
              },
              "HTTP400-RequestedPageNumberIsInvalid": {
                "summary": "RequestedPageNumberIsInvalid",
                "value": "john"
              },
              "HTTP400-RequiredCaseSearchValidation": {
                "summary": "RequiredCaseSearchValidation",
                "value": "john"
              },
              "HTTP400-TooManyLoginAttempts": {
                "summary": "TooManyLoginAttempts",
                "value": "john"
              },
              "HTTP400-UsernameIsNotMinLength": {
                "summary": "UsernameIsNotMinLength",
                "value": "john"
              }
            },
            "in": "query",
            "name": "pacerClientCode",
            "required": true,
            "schema": {
              "example": "john",
              "maxLength": 32,
              "minLength": 1,
              "nullable": false,
              "type": "string"
            }
          },
          {
            "description": "If the court type is selected as All or if you need data for a specific case number format, then you need to use this option. Case numbers may be entered in each of the following formats: \n\n\tyy-nnnnn \n\n\tyy-tp-nnnnn \n\n\tyy tp nnnnn \n\n\tyytpnnnnn \n\n\to:yy-nnnnn \n\n\to:yy-tp-nnnnn \n\n\to:yy tp nnnnn \n\n\to:yytpnnnnn \n\nwhere: \n\nyy  case year (may be 2 or 4 digits) \n\nnnnnn  case number (up to 5 digits) \n\ntp  case type (up to 2 characters) \n\no  office where the case was filed (1 digit).",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": "07-1026"
              },
              "HTTP400-CaseTitleValidation": {
                "summary": "CaseTitleValidation",
                "value": "12-256"
              },
              "HTTP400-InvalidCaseNumberFormat": {
                "summary": "InvalidCaseNumberFormat",
                "value": "12-256-WDR"
              },
              "HTTP400-InvalidCaseOfficeFormat": {
                "summary": "InvalidCaseOfficeFormat",
                "value": "12-256"
              },
              "HTTP400-InvalidCaseSequenceNumberFormat": {
                "summary": "InvalidCaseSequenceNumberFormat",
                "value": "12-256"
              },
              "HTTP400-InvalidCaseStatus": {
                "summary": "InvalidCaseStatus",
                "value": "12-256"
              },
              "HTTP400-InvalidCaseType": {
                "summary": "InvalidCaseType",
                "value": "12-256"
              },
              "HTTP400-InvalidCaseYearFormat": {
                "summary": "InvalidCaseYearFormat",
                "value": "12-256"
              },
              "HTTP400-InvalidCaseYearFromFormat": {
                "summary": "InvalidCaseYearFromFormat",
                "value": "12-256"
              },
              "HTTP400-InvalidCaseYearToFormat": {
                "summary": "InvalidCaseYearToFormat",
                "value": "12-256"
              },
              "HTTP400-InvalidCourtRegionId": {
                "summary": "InvalidCourtRegionId",
                "value": "12-256"
              },
              "HTTP400-InvalidPacerCaseIdFormat": {
                "summary": "InvalidPacerCaseIdFormat",
                "value": "12-256"
              },
              "HTTP400-InvalidPartyExactNameMatch": {
                "summary": "InvalidPartyExactNameMatch",
                "value": "12-256"
              },
              "HTTP400-InvalidQueryParameters": {
                "summary": "InvalidQueryParameters",
                "value": "12-256"
              },
              "HTTP400-InvalidSortQuery": {
                "summary": "InvalidSortQuery",
                "value": "12-256"
              },
              "HTTP400-InvalidSortQueryFormat": {
                "summary": "InvalidSortQueryFormat",
                "value": "12-256"
              },
              "HTTP400-InvalidStartAndEndFiledDate": {
                "summary": "InvalidStartAndEndFiledDate",
                "value": "12-256"
              },
              "HTTP400-InvalidStartAndEndTerminatedDate": {
                "summary": "InvalidStartAndEndTerminatedDate",
                "value": "12-256"
              },
              "HTTP400-LastNameNotPassedWhenFirstOrMiddlePassed": {
                "summary": "LastNameNotPassedWhenFirstOrMiddlePassed",
                "value": "12-256"
              },
              "HTTP400-PageNumberParameterNotPassed": {
                "summary": "PageNumberParameterNotPassed",
                "value": "12-256"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": "12-256"
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": "12-256"
              },
              "HTTP400-RequestedPageNumberIsInvalid": {
                "summary": "RequestedPageNumberIsInvalid",
                "value": "12-256"
              },
              "HTTP400-RequiredPartySearchValidation": {
                "summary": "RequiredPartySearchValidation",
                "value": null
              }
            },
            "in": "query",
            "name": "caseNumber",
            "schema": {
              "example": "12-1234",
              "maxLength": 50,
              "minLength": 3,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "Sequentially generated number that identifies the case in PACER system.",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-CaseTitleValidation": {
                "summary": "CaseTitleValidation",
                "value": 256
              },
              "HTTP400-InvalidCaseNumberFormat": {
                "summary": "InvalidCaseNumberFormat",
                "value": 256
              },
              "HTTP400-InvalidCaseOfficeFormat": {
                "summary": "InvalidCaseOfficeFormat",
                "value": 256
              },
              "HTTP400-InvalidCaseSequenceNumberFormat": {
                "summary": "InvalidCaseSequenceNumberFormat",
                "value": 256
              },
              "HTTP400-InvalidCaseStatus": {
                "summary": "InvalidCaseStatus",
                "value": 256
              },
              "HTTP400-InvalidCaseType": {
                "summary": "InvalidCaseType",
                "value": 256
              },
              "HTTP400-InvalidCaseYearFormat": {
                "summary": "InvalidCaseYearFormat",
                "value": 256
              },
              "HTTP400-InvalidCaseYearFromFormat": {
                "summary": "InvalidCaseYearFromFormat",
                "value": 256
              },
              "HTTP400-InvalidCaseYearToFormat": {
                "summary": "InvalidCaseYearToFormat",
                "value": 256
              },
              "HTTP400-InvalidCourtRegionId": {
                "summary": "InvalidCourtRegionId",
                "value": 256
              },
              "HTTP400-InvalidPacerCaseIdFormat": {
                "summary": "InvalidPacerCaseIdFormat",
                "value": "pacer"
              },
              "HTTP400-InvalidPartyExactNameMatch": {
                "summary": "InvalidPartyExactNameMatch",
                "value": 256
              },
              "HTTP400-InvalidQueryParameters": {
                "summary": "InvalidQueryParameters",
                "value": 256
              },
              "HTTP400-InvalidSortQuery": {
                "summary": "InvalidSortQuery",
                "value": 256
              },
              "HTTP400-InvalidSortQueryFormat": {
                "summary": "InvalidSortQueryFormat",
                "value": 256
              },
              "HTTP400-InvalidStartAndEndFiledDate": {
                "summary": "InvalidStartAndEndFiledDate",
                "value": 256
              },
              "HTTP400-InvalidStartAndEndTerminatedDate": {
                "summary": "InvalidStartAndEndTerminatedDate",
                "value": 256
              },
              "HTTP400-LastNameNotPassedWhenFirstOrMiddlePassed": {
                "summary": "LastNameNotPassedWhenFirstOrMiddlePassed",
                "value": 256
              },
              "HTTP400-PageNumberParameterNotPassed": {
                "summary": "PageNumberParameterNotPassed",
                "value": 256
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": 256
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": 256
              },
              "HTTP400-RequestedPageNumberIsInvalid": {
                "summary": "RequestedPageNumberIsInvalid",
                "value": 256
              }
            },
            "in": "query",
            "name": "pacerCaseId",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "The last name of a party to search. This can be person or non person entity.",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": "Smith"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": "Smith"
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": "Smith"
              }
            },
            "in": "query",
            "name": "lastName",
            "schema": {
              "example": "John",
              "maxLength": 50,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "The first name of a party to search.",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": "John"
              },
              "HTTP400-LastNameNotPassedWhenFirstOrMiddlePassed": {
                "summary": "LastNameNotPassedWhenFirstOrMiddlePassed",
                "value": "John"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "firstName",
            "schema": {
              "example": "John",
              "maxLength": 100,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "The middle name of a party to search.",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": "Doe"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "middleName",
            "schema": {
              "example": "Doe",
              "maxLength": 100,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "The name suffix (e.g., III, MD).",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": "MD"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "generation",
            "schema": {
              "example": "III",
              "maxLength": 5,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "The court-assigned party type for a party involved in a case. Party type codes are created and assigned by individual courts, and as such, their meanings can vary from court to court.",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": "ptf"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "partyType",
            "schema": {
              "example": "ptf",
              "maxLength": 50,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "When set to true this field will search the party with an exact match of the name provided.",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-InvalidPartyExactNameMatch": {
                "summary": "InvalidPartyExactNameMatch",
                "value": "Smith"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "partyExactNameMatch",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "The court-assigned role for a party to a case. Party role codes are created and assigned by individual courts, and as such, their meanings can vary from court to court.",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-LastNameNotPassedWhenFirstOrMiddlePassed": {
                "summary": "LastNameNotPassedWhenFirstOrMiddlePassed",
                "value": "plantiff"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "partyRoleArray",
            "schema": {
              "items": {
                "example": "plantiff",
                "maxLength": 50,
                "nullable": true,
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "You can search using the case name even if you know one party. \n\n\tExamples: \n\n\tA search for case title john doe v will result in all cases with the case title John Doe v. \n\n\tA search for case title Acme, Inc. will result in all case titles starting with Acme, Inc.",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-CaseTitleValidation": {
                "summary": "CaseTitleValidation",
                "value": "A"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseTitle",
            "schema": {
              "maxLength": 255,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "The divisional office in which the case was filed.",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-InvalidCaseOfficeFormat": {
                "summary": "InvalidCaseOfficeFormat",
                "value": "cv"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseOffice",
            "schema": {
              "maxLength": 1,
              "type": "integer"
            }
          },
          {
            "description": "The sequence number of a given case. Ex 12345",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-InvalidCaseSequenceNumberFormat": {
                "summary": "InvalidCaseSequenceNumberFormat",
                "value": "12-256"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseSequenceNumber",
            "schema": {
              "maxLength": 6,
              "type": "integer"
            }
          },
          {
            "description": "The two digits or four digits of the year in which the case was filed.",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-InvalidCaseYearFormat": {
                "summary": "InvalidCaseYearFormat",
                "value": 2012
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseYear",
            "schema": {
              "maxLength": 4,
              "type": "integer"
            }
          },
          {
            "description": "Search can be narrowed down by passing caseTypes. Please use the <a href='https://docs.unicourt.com/pacer-glossary/appendix-a-case-types'>APPENDIX A: Case Types</a> mentioned in the API Documentation. \n\n\tScenario: When mulitple case types needs to be requested. \n\n\tImagine for a given case number 12-1234 I would like to search only with the case type civil(cv) and criminal(cr), My query in the request will look like the example mentioned below. \n\n\tExample: caseTypeArray=cv&caseTypeArray=cr",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-InvalidCaseType": {
                "summary": "InvalidCaseType",
                "value": 1234
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseTypeArray",
            "schema": {
              "items": {
                "maxLength": 255,
                "nullable": true,
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "Search can be narrowed down by passing courtRegionId. Please use the <a href='https://docs.unicourt.com/pacer-glossary/appendix-b-court-regions'>APPENDIX B: Court Regions</a> mentioned in the API Documentation. \n\n\tScenario: When mulitple court region ids needs to be requested. \n\n\tImagine for a given case number 12-1234 I would like to search in the court regions California Central (cac) and California Eastern (cae), My query in the request will look like the example mentioned below. \n\n\tExample: courtRegionIdArray=cac&courtRegionIdArray=cae",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-InvalidCourtRegionId": {
                "summary": "InvalidCourtRegionId",
                "value": "civil"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "courtRegionIdArray",
            "schema": {
              "items": {
                "maxLength": 255,
                "nullable": true,
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "Limit the results of the search to those cases from the year specified or later",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-InvalidCaseYearFromFormat": {
                "summary": "InvalidCaseYearFromFormat",
                "value": "2012-12-20"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseYearFrom",
            "schema": {
              "maxLength": 4,
              "type": "integer"
            }
          },
          {
            "description": "Limit the results of the search to those cases from the year specified or earlier",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-InvalidCaseYearToFormat": {
                "summary": "InvalidCaseYearToFormat",
                "value": "2012-12-20"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseYearTo",
            "schema": {
              "maxLength": 4,
              "type": "integer"
            }
          },
          {
            "description": "Narrowing the search by limiting the cases which matches the criteria for case filed start date on or after the given date. Format: YYYY-MM-DDTHH:MM:SS+ZZ:zz, Ex: 2017-12-20T12:54:24+00:00",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-InvalidStartAndEndFiledDate": {
                "summary": "InvalidStartAndEndFiledDate",
                "value": "2012-12-20T12:54:24+00:00"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseFiledStartDate",
            "schema": {
              "format": "date-time",
              "maxLength": 25,
              "minLength": 25,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "Narrowing the search by limiting the cases which matches the criteria for case filed end date on or before the given date. Format: YYYY-MM-DDTHH:MM:SS+ZZ:zz, Ex: 2017-12-20T12:54:24+00:00",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-InvalidStartAndEndFiledDate": {
                "summary": "InvalidStartAndEndFiledDate",
                "value": "2012-12-19T12:54:24+00:00"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseFiledEndDate",
            "schema": {
              "format": "date-time",
              "maxLength": 25,
              "minLength": 25,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "Narrowing the search by limiting the cases which matches the criteria for case terminated start date on or after the given date. Format: YYYY-MM-DDTHH:MM:SS+ZZ:zz, Ex: 2017-12-20T12:54:24+00:00",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-InvalidStartAndEndTerminatedDate": {
                "summary": "InvalidStartAndEndTerminatedDate",
                "value": "2017-12-20T12:54:24+00:00"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseTerminatedStartDate",
            "schema": {
              "format": "date-time",
              "maxLength": 25,
              "minLength": 25,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "Narrowing the search by limiting the cases which matches the criteria for case terminated end date on or before the given date. Format: YYYY-MM-DDTHH:MM:SS+ZZ:zz, Ex: 2017-12-20T12:54:24+00:00",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-InvalidStartAndEndTerminatedDate": {
                "summary": "InvalidStartAndEndTerminatedDate",
                "value": "2017-12-19T12:54:24+00:00"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseTerminatedEndDate",
            "schema": {
              "format": "date-time",
              "maxLength": 25,
              "minLength": 25,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "The criteria based on which the search results are to be sorted. Please use the <a href='https://docs.unicourt.com/pacer-glossary/appendix-c-sort-parameter'>APPENDIX C: Sort Parameter - Sortable Party Parameters</a> mentioned in the API Documentation. The fields can be sorted either ASC or DESC. \n\n\tScenario 1: When mulitple sort paramters needs to be requested. \n\n\tImagine for a given case number 12-1234 I would like to sort the results in the Ascending order of courtId and caseId, My query in the request will look like the example mentioned below. \n\n\tExample: sortParameterQuery=courtId,ASC&caseId,ASC \n\n\tScenario 2: When you want to sort the response using the case parameters in the party search. \n\n\tImagine for a given case number 12-1234 I would like to sort the results in the Ascending order of caseOffice and descending order of caseId, My query in the request will look like the example mentioned below. \n\n\tExample: sortParameterQuery=courtCase.caseOffice,ASC&caseid,DESC",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-InvalidSortQuery": {
                "summary": "InvalidSortQuery",
                "value": "sort=caseYear"
              },
              "HTTP400-InvalidSortQueryFormat": {
                "summary": "InvalidSortQueryFormat",
                "value": "[sort=caseYear,DESC]"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "sortParameterQuery",
            "schema": {
              "default": "sort=caseYear,DESC",
              "maxLength": 100,
              "minLength": 5,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "Status of a case. 'closed' for a Terminated case, 'open' for Pending cases. If this parameter is not sent both cases that fall in open and closed will be queried.",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-InvalidCaseStatus": {
                "summary": "InvalidCaseStatus",
                "value": "all"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseStatus",
            "schema": {
              "enum": [
                "open",
                "closed"
              ],
              "maxLength": 100,
              "minLength": 3,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "Page Number for a given Job ID or for the search your going to make.",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": 1
              },
              "HTTP400-CaseTitleValidation": {
                "summary": "CaseTitleValidation",
                "value": 1
              },
              "HTTP400-InvalidCaseNumberFormat": {
                "summary": "InvalidCaseNumberFormat",
                "value": 1
              },
              "HTTP400-InvalidCaseOfficeFormat": {
                "summary": "InvalidCaseOfficeFormat",
                "value": 1
              },
              "HTTP400-InvalidCaseSequenceNumberFormat": {
                "summary": "InvalidCaseSequenceNumberFormat",
                "value": 1
              },
              "HTTP400-InvalidCaseStatus": {
                "summary": "InvalidCaseStatus",
                "value": 1
              },
              "HTTP400-InvalidCaseType": {
                "summary": "InvalidCaseType",
                "value": 1
              },
              "HTTP400-InvalidCaseYearFormat": {
                "summary": "InvalidCaseYearFormat",
                "value": 1
              },
              "HTTP400-InvalidCaseYearFromFormat": {
                "summary": "InvalidCaseYearFromFormat",
                "value": 1
              },
              "HTTP400-InvalidCaseYearToFormat": {
                "summary": "InvalidCaseYearToFormat",
                "value": 1
              },
              "HTTP400-InvalidCourtRegionId": {
                "summary": "InvalidCourtRegionId",
                "value": 1
              },
              "HTTP400-InvalidPacerCaseIdFormat": {
                "summary": "InvalidPacerCaseIdFormat",
                "value": 1
              },
              "HTTP400-InvalidPartyExactNameMatch": {
                "summary": "InvalidPartyExactNameMatch",
                "value": 1
              },
              "HTTP400-InvalidQueryParameters": {
                "summary": "InvalidQueryParameters",
                "value": 1
              },
              "HTTP400-InvalidSortQuery": {
                "summary": "InvalidSortQuery",
                "value": 1
              },
              "HTTP400-InvalidSortQueryFormat": {
                "summary": "InvalidSortQueryFormat",
                "value": 1
              },
              "HTTP400-InvalidStartAndEndFiledDate": {
                "summary": "InvalidStartAndEndFiledDate",
                "value": 1
              },
              "HTTP400-InvalidStartAndEndTerminatedDate": {
                "summary": "InvalidStartAndEndTerminatedDate",
                "value": 1
              },
              "HTTP400-LastNameNotPassedWhenFirstOrMiddlePassed": {
                "summary": "LastNameNotPassedWhenFirstOrMiddlePassed",
                "value": 1
              },
              "HTTP400-PageNumberParameterNotPassed": {
                "summary": "PageNumberParameterNotPassed",
                "value": null
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": 1
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": 1
              },
              "HTTP400-RequestedPageNumberIsInvalid": {
                "summary": "RequestedPageNumberIsInvalid",
                "value": "one"
              },
              "HTTP400-RequiredPartySearchValidation": {
                "summary": "RequiredPartySearchValidation",
                "value": 1
              }
            },
            "in": "query",
            "name": "pageNumber",
            "schema": {
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "PCLParty": {
                    "$ref": "#/components/examples/PCLParty"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/PCLParty"
                }
              }
            },
            "description": "The request is recieved."
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "CaseTitleValidation": {
                    "$ref": "#/components/examples/FailurePCLCaseTitleValidation"
                  },
                  "ClientCodeNotEntered": {
                    "$ref": "#/components/examples/FailurePacerClientCodeNotEntered"
                  },
                  "InvalidCaseNumberFormat": {
                    "$ref": "#/components/examples/FailurePCLInvalidCaseNumberFormatForAppeal"
                  },
                  "InvalidCaseOfficeFormat": {
                    "$ref": "#/components/examples/FailurePCLInvalidCaseOffice"
                  },
                  "InvalidCaseSequenceNumberFormat": {
                    "$ref": "#/components/examples/FailurePCLInvalidCaseSequenceNumber"
                  },
                  "InvalidCaseStatus": {
                    "$ref": "#/components/examples/FailureInvalidCaseStatus"
                  },
                  "InvalidCaseType": {
                    "$ref": "#/components/examples/FailureInvalidCaseType"
                  },
                  "InvalidCaseYearFormat": {
                    "$ref": "#/components/examples/FailurePCLInvalidCaseYear"
                  },
                  "InvalidCourtRegionId": {
                    "$ref": "#/components/examples/FailureInvalidCourtRegionId"
                  },
                  "InvalidPacerUserIdOrPassword": {
                    "$ref": "#/components/examples/FailurePacerUserIdOrPassword"
                  },
                  "InvalidPartyExactNameMatch": {
                    "$ref": "#/components/examples/FailureInvalidPartyExactNameMatch"
                  },
                  "InvalidSortQuery": {
                    "$ref": "#/components/examples/FailureInvalidSortParameterPassed"
                  },
                  "InvalidSortQueryFormat": {
                    "$ref": "#/components/examples/FailureInvalidSortParameterQueryFormat"
                  },
                  "InvalidStartAndEndFiledDate": {
                    "$ref": "#/components/examples/FailurePCLCaseFiledDateValidation"
                  },
                  "InvalidStartAndEndTerminatedDate": {
                    "$ref": "#/components/examples/FailurePCLCaseTerminatedDateValidation"
                  },
                  "LastNameNotPassedWhenFirstOrMiddlePassed": {
                    "$ref": "#/components/examples/FailureLastNameNotPassedWhenFirstOrMiddlePassed"
                  },
                  "PacerAccountDisabled": {
                    "$ref": "#/components/examples/FailurePacerAccountDisabled"
                  },
                  "PacerCredentialsNotFound": {
                    "$ref": "#/components/examples/FailurePacerCredentialsNotFound"
                  },
                  "PageNumberParameterNotPassed": {
                    "$ref": "#/components/examples/FailurePageNumberIdNotPassed"
                  },
                  "RequestedClientCodeIsInvalid": {
                    "$ref": "#/components/examples/FailureClientCodeIsInvalid"
                  },
                  "RequestedPacerUserIdIsInvalid": {
                    "$ref": "#/components/examples/FailurePacerUserIdIsInvalid"
                  },
                  "RequestedPageNumberIsInvalid": {
                    "$ref": "#/components/examples/FailureInvalidPageNumber"
                  },
                  "RequiredPartySearchValidation": {
                    "$ref": "#/components/examples/FailurePCLRequiredFieldPartySearch"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Invalid Input Parameter"
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "ServerError": {
                    "$ref": "#/components/examples/FailureServerError"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Server Error"
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "PACER Case Locator Search API for All Courts.",
        "tags": [
          "PACER API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [],
      "x-api-name": "PCLPartyCriminalCourtsAPI",
      "x-unicourt-tag": "PACERAPIs"
    },
    "/pacerCaseLocator/partySearch/multiDistrictCourts": {
      "get": {
        "description": "PACER Case Locator Party Search API for MultiDistrict Courts.",
        "operationId": "MultiDistrictCourtsPacerCaseLocatorPartySearch",
        "parameters": [
          {
            "description": "User ID or User Name of the PACER Account used while signing in to PACER.",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase"
              },
              "HTTP400-CaseTitleValidation": {
                "summary": "CaseTitleValidation",
                "value": "john_doe"
              },
              "HTTP400-ClientCodeNotEntered": {
                "summary": "ClientCodeNotEntered",
                "value": "john_doe"
              },
              "HTTP400-InvalidCaseNumberFormat": {
                "summary": "InvalidCaseNumberFormat",
                "value": "john_doe"
              },
              "HTTP400-InvalidCaseOfficeFormat": {
                "summary": "InvalidCaseOfficeFormat",
                "value": "john_doe"
              },
              "HTTP400-InvalidCaseSequenceNumberFormat": {
                "summary": "InvalidCaseSequenceNumberFormat",
                "value": "john_doe"
              },
              "HTTP400-InvalidCaseStatus": {
                "summary": "InvalidCaseStatus",
                "value": "john_doe"
              },
              "HTTP400-InvalidCaseType": {
                "summary": "InvalidCaseType",
                "value": "john_doe"
              },
              "HTTP400-InvalidCaseYearFormat": {
                "summary": "InvalidCaseYearFormat",
                "value": "john_doe"
              },
              "HTTP400-InvalidClientCodeEntered": {
                "summary": "InvalidClientCodeEntered",
                "value": "john_doe"
              },
              "HTTP400-InvalidCourtRegionId": {
                "summary": "InvalidCourtRegionId",
                "value": "john_doe"
              },
              "HTTP400-InvalidPacerCaseIdFormat": {
                "summary": "InvalidPacerCaseIdFormat",
                "value": "john_doe"
              },
              "HTTP400-InvalidPacerUserIdOrPassword": {
                "summary": "InvalidPacerUserIdOrPassword",
                "value": "john_doe"
              },
              "HTTP400-InvalidQueryParameters": {
                "summary": "InvalidQueryParameters",
                "value": "john_doe"
              },
              "HTTP400-InvalidSortQuery": {
                "summary": "InvalidSortQuery",
                "value": "john_doe"
              },
              "HTTP400-InvalidSortQueryFormat": {
                "summary": "InvalidSortQueryFormat",
                "value": "john_doe"
              },
              "HTTP400-InvalidStartAndEndFiledDate": {
                "summary": "InvalidStartAndEndFiledDate",
                "value": "john_doe"
              },
              "HTTP400-InvalidStartAndEndTerminatedDate": {
                "summary": "InvalidStartAndEndTerminatedDate",
                "value": "john_doe"
              },
              "HTTP400-PacerAccountDisabled": {
                "summary": "PacerAccountDisabled",
                "value": "john_doe"
              },
              "HTTP400-PacerCredentialsNotFound": {
                "summary": "PacerCredentialsNotFound",
                "value": "john_doe"
              },
              "HTTP400-PageNumberParameterNotPassed": {
                "summary": "PageNumberParameterNotPassed",
                "value": "john_doe"
              },
              "HTTP400-PasswordIsNotMinLength": {
                "summary": "PasswordIsNotMinLength",
                "value": "john_doe"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": "john_doe"
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": "john$doe123"
              },
              "HTTP400-RequestedPageNumberIsInvalid": {
                "summary": "RequestedPageNumberIsInvalid",
                "value": "john_doe"
              },
              "HTTP400-RequiredCaseSearchValidation": {
                "summary": "RequiredCaseSearchValidation",
                "value": "john_doe"
              },
              "HTTP400-TooManyLoginAttempts": {
                "summary": "TooManyLoginAttempts",
                "value": "john_doe"
              },
              "HTTP400-UsernameIsNotMinLength": {
                "summary": "UsernameIsNotMinLength",
                "value": "john_doe"
              }
            },
            "in": "query",
            "name": "pacerUserId",
            "required": true,
            "schema": {
              "example": "johndoe",
              "maxLength": 20,
              "minLength": 6,
              "nullable": false,
              "type": "string"
            }
          },
          {
            "description": "Client Code used while signing in to PACER account.",
            "examples": {
              "HTTP200-PCLCase": {
                "summary": "PCLCase",
                "value": "john"
              },
              "HTTP400-CaseTitleValidation": {
                "summary": "CaseTitleValidation",
                "value": "john"
              },
              "HTTP400-ClientCodeNotEntered": {
                "summary": "ClientCodeNotEntered",
                "value": "john"
              },
              "HTTP400-InvalidCaseNumberFormat": {
                "summary": "InvalidCaseNumberFormat",
                "value": "john"
              },
              "HTTP400-InvalidCaseOfficeFormat": {
                "summary": "InvalidCaseOfficeFormat",
                "value": "john"
              },
              "HTTP400-InvalidCaseSequenceNumberFormat": {
                "summary": "InvalidCaseSequenceNumberFormat",
                "value": "john"
              },
              "HTTP400-InvalidCaseStatus": {
                "summary": "InvalidCaseStatus",
                "value": "john"
              },
              "HTTP400-InvalidCaseType": {
                "summary": "InvalidCaseType",
                "value": "john"
              },
              "HTTP400-InvalidCaseYearFormat": {
                "summary": "InvalidCaseYearFormat",
                "value": "john"
              },
              "HTTP400-InvalidClientCodeEntered": {
                "summary": "InvalidClientCodeEntered",
                "value": "john"
              },
              "HTTP400-InvalidCourtRegionId": {
                "summary": "InvalidCourtRegionId",
                "value": "john"
              },
              "HTTP400-InvalidPacerCaseIdFormat": {
                "summary": "InvalidPacerCaseIdFormat",
                "value": "john"
              },
              "HTTP400-InvalidPacerUserIdOrPassword": {
                "summary": "InvalidPacerUserIdOrPassword",
                "value": "john"
              },
              "HTTP400-InvalidQueryParameters": {
                "summary": "InvalidQueryParameters",
                "value": "john"
              },
              "HTTP400-InvalidSortQuery": {
                "summary": "InvalidSortQuery",
                "value": "john"
              },
              "HTTP400-InvalidSortQueryFormat": {
                "summary": "InvalidSortQueryFormat",
                "value": "john"
              },
              "HTTP400-InvalidStartAndEndFiledDate": {
                "summary": "InvalidStartAndEndFiledDate",
                "value": "john"
              },
              "HTTP400-InvalidStartAndEndTerminatedDate": {
                "summary": "InvalidStartAndEndTerminatedDate",
                "value": "john"
              },
              "HTTP400-PacerAccountDisabled": {
                "summary": "PacerAccountDisabled",
                "value": "john"
              },
              "HTTP400-PacerCredentialsNotFound": {
                "summary": "PacerCredentialsNotFound",
                "value": "john"
              },
              "HTTP400-PageNumberParameterNotPassed": {
                "summary": "PageNumberParameterNotPassed",
                "value": "john"
              },
              "HTTP400-PasswordIsNotMinLength": {
                "summary": "PasswordIsNotMinLength",
                "value": "john"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": "john$123"
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": "john"
              },
              "HTTP400-RequestedPageNumberIsInvalid": {
                "summary": "RequestedPageNumberIsInvalid",
                "value": "john"
              },
              "HTTP400-RequiredCaseSearchValidation": {
                "summary": "RequiredCaseSearchValidation",
                "value": "john"
              },
              "HTTP400-TooManyLoginAttempts": {
                "summary": "TooManyLoginAttempts",
                "value": "john"
              },
              "HTTP400-UsernameIsNotMinLength": {
                "summary": "UsernameIsNotMinLength",
                "value": "john"
              }
            },
            "in": "query",
            "name": "pacerClientCode",
            "required": true,
            "schema": {
              "example": "john",
              "maxLength": 32,
              "minLength": 1,
              "nullable": false,
              "type": "string"
            }
          },
          {
            "description": "If the court type is selected as All or if you need data for a specific case number format, then you need to use this option. Case numbers may be entered in each of the following formats: \n\n\tyy-nnnnn \n\n\tyy-tp-nnnnn \n\n\tyy tp nnnnn \n\n\tyytpnnnnn \n\n\to:yy-nnnnn \n\n\to:yy-tp-nnnnn \n\n\to:yy tp nnnnn \n\n\to:yytpnnnnn \n\nwhere: \n\nyy  case year (may be 2 or 4 digits) \n\nnnnnn  case number (up to 5 digits) \n\ntp  case type (up to 2 characters) \n\no  office where the case was filed (1 digit).",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-CaseTitleValidation": {
                "summary": "CaseTitleValidation",
                "value": "12-256"
              },
              "HTTP400-InvalidCaseNumberFormat": {
                "summary": "InvalidCaseNumberFormat",
                "value": "12-256-WDR"
              },
              "HTTP400-InvalidCaseOfficeFormat": {
                "summary": "InvalidCaseOfficeFormat",
                "value": "12-256"
              },
              "HTTP400-InvalidCaseSequenceNumberFormat": {
                "summary": "InvalidCaseSequenceNumberFormat",
                "value": "12-256"
              },
              "HTTP400-InvalidCaseStatus": {
                "summary": "InvalidCaseStatus",
                "value": "12-256"
              },
              "HTTP400-InvalidCaseType": {
                "summary": "InvalidCaseType",
                "value": "12-256"
              },
              "HTTP400-InvalidCaseYearFormat": {
                "summary": "InvalidCaseYearFormat",
                "value": "12-256"
              },
              "HTTP400-InvalidCaseYearFromFormat": {
                "summary": "InvalidCaseYearFromFormat",
                "value": "12-256"
              },
              "HTTP400-InvalidCaseYearToFormat": {
                "summary": "InvalidCaseYearToFormat",
                "value": "12-256"
              },
              "HTTP400-InvalidCourtRegionId": {
                "summary": "InvalidCourtRegionId",
                "value": "12-256"
              },
              "HTTP400-InvalidJPMLNumberFormat": {
                "summary": "InvalidJPMLNumberFormat",
                "value": "12-256"
              },
              "HTTP400-InvalidPacerCaseIdFormat": {
                "summary": "InvalidPacerCaseIdFormat",
                "value": "12-256"
              },
              "HTTP400-InvalidPartyExactNameMatch": {
                "summary": "InvalidPartyExactNameMatch",
                "value": "12-256"
              },
              "HTTP400-InvalidQueryParameters": {
                "summary": "InvalidQueryParameters",
                "value": "12-256"
              },
              "HTTP400-InvalidSortQuery": {
                "summary": "InvalidSortQuery",
                "value": "12-256"
              },
              "HTTP400-InvalidSortQueryFormat": {
                "summary": "InvalidSortQueryFormat",
                "value": "12-256"
              },
              "HTTP400-InvalidStartAndEndFiledDate": {
                "summary": "InvalidStartAndEndFiledDate",
                "value": "12-256"
              },
              "HTTP400-InvalidStartAndEndTerminatedDate": {
                "summary": "InvalidStartAndEndTerminatedDate",
                "value": "12-256"
              },
              "HTTP400-LastNameNotPassedWhenFirstOrMiddlePassed": {
                "summary": "LastNameNotPassedWhenFirstOrMiddlePassed",
                "value": "12-256"
              },
              "HTTP400-PageNumberParameterNotPassed": {
                "summary": "PageNumberParameterNotPassed",
                "value": "12-256"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": "12-256"
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": "12-256"
              },
              "HTTP400-RequestedPageNumberIsInvalid": {
                "summary": "RequestedPageNumberIsInvalid",
                "value": "12-256"
              },
              "HTTP400-RequiredPartySearchValidation": {
                "summary": "RequiredPartySearchValidation",
                "value": null
              }
            },
            "in": "query",
            "name": "caseNumber",
            "schema": {
              "example": "12-1234",
              "maxLength": 50,
              "minLength": 3,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "Master JPML Case Number.",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-InvalidJPMLNumberFormat": {
                "summary": "InvalidJPMLNumberFormat",
                "value": "857-WDR"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "jpmlNumber",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Sequentially generated number that identifies the case in PACER system.",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-CaseTitleValidation": {
                "summary": "CaseTitleValidation",
                "value": 256
              },
              "HTTP400-InvalidCaseNumberFormat": {
                "summary": "InvalidCaseNumberFormat",
                "value": 256
              },
              "HTTP400-InvalidCaseOfficeFormat": {
                "summary": "InvalidCaseOfficeFormat",
                "value": 256
              },
              "HTTP400-InvalidCaseSequenceNumberFormat": {
                "summary": "InvalidCaseSequenceNumberFormat",
                "value": 256
              },
              "HTTP400-InvalidCaseStatus": {
                "summary": "InvalidCaseStatus",
                "value": 256
              },
              "HTTP400-InvalidCaseType": {
                "summary": "InvalidCaseType",
                "value": 256
              },
              "HTTP400-InvalidCaseYearFormat": {
                "summary": "InvalidCaseYearFormat",
                "value": 256
              },
              "HTTP400-InvalidCaseYearFromFormat": {
                "summary": "InvalidCaseYearFromFormat",
                "value": 256
              },
              "HTTP400-InvalidCaseYearToFormat": {
                "summary": "InvalidCaseYearToFormat",
                "value": 256
              },
              "HTTP400-InvalidCourtRegionId": {
                "summary": "InvalidCourtRegionId",
                "value": 256
              },
              "HTTP400-InvalidJPMLNumberFormat": {
                "summary": "InvalidJPMLNumberFormat",
                "value": 256
              },
              "HTTP400-InvalidPacerCaseIdFormat": {
                "summary": "InvalidPacerCaseIdFormat",
                "value": "pacer"
              },
              "HTTP400-InvalidPartyExactNameMatch": {
                "summary": "InvalidPartyExactNameMatch",
                "value": 256
              },
              "HTTP400-InvalidQueryParameters": {
                "summary": "InvalidQueryParameters",
                "value": 256
              },
              "HTTP400-InvalidSortQuery": {
                "summary": "InvalidSortQuery",
                "value": 256
              },
              "HTTP400-InvalidSortQueryFormat": {
                "summary": "InvalidSortQueryFormat",
                "value": 256
              },
              "HTTP400-InvalidStartAndEndFiledDate": {
                "summary": "InvalidStartAndEndFiledDate",
                "value": 256
              },
              "HTTP400-InvalidStartAndEndTerminatedDate": {
                "summary": "InvalidStartAndEndTerminatedDate",
                "value": 256
              },
              "HTTP400-LastNameNotPassedWhenFirstOrMiddlePassed": {
                "summary": "LastNameNotPassedWhenFirstOrMiddlePassed",
                "value": 256
              },
              "HTTP400-PageNumberParameterNotPassed": {
                "summary": "PageNumberParameterNotPassed",
                "value": 256
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": 256
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": 256
              },
              "HTTP400-RequestedPageNumberIsInvalid": {
                "summary": "RequestedPageNumberIsInvalid",
                "value": 256
              }
            },
            "in": "query",
            "name": "pacerCaseId",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "The last name of a party to search. This can be person or non person entity.",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": "John"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": "John"
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": "John"
              }
            },
            "in": "query",
            "name": "lastName",
            "schema": {
              "example": "John",
              "maxLength": 50,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "The first name of a party to search.",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-LastNameNotPassedWhenFirstOrMiddlePassed": {
                "summary": "LastNameNotPassedWhenFirstOrMiddlePassed",
                "value": "John"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "firstName",
            "schema": {
              "example": "John",
              "maxLength": 100,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "The middle name of a party to search.",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-LastNameNotPassedWhenFirstOrMiddlePassed": {
                "summary": "LastNameNotPassedWhenFirstOrMiddlePassed",
                "value": "Smith"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "middleName",
            "schema": {
              "example": "Doe",
              "maxLength": 100,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "The name suffix (e.g., III, MD).",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-LastNameNotPassedWhenFirstOrMiddlePassed": {
                "summary": "LastNameNotPassedWhenFirstOrMiddlePassed",
                "value": "Doe"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "generation",
            "schema": {
              "example": "III",
              "maxLength": 5,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "The court-assigned party type for a party involved in a case. Party type codes are created and assigned by individual courts, and as such, their meanings can vary from court to court.",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-LastNameNotPassedWhenFirstOrMiddlePassed": {
                "summary": "LastNameNotPassedWhenFirstOrMiddlePassed",
                "value": "ptf"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "partyType",
            "schema": {
              "example": "ptf",
              "maxLength": 50,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "When set to true this field will search the party with an exact match of the name provided.",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-InvalidPartyExactNameMatch": {
                "summary": "InvalidPartyExactNameMatch",
                "value": "Smith"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "partyExactNameMatch",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "The court-assigned role for a party to a case. Party role codes are created and assigned by individual courts, and as such, their meanings can vary from court to court.",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-LastNameNotPassedWhenFirstOrMiddlePassed": {
                "summary": "LastNameNotPassedWhenFirstOrMiddlePassed",
                "value": "plantiff"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "partyRoleArray",
            "schema": {
              "items": {
                "example": "plantiff",
                "maxLength": 50,
                "nullable": true,
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "You can search using the case name even if you know one party. \n\n\tExamples: \n\n\tA search for case title john doe v will result in all cases with the case title John Doe v. \n\n\tA search for case title Acme, Inc. will result in all case titles starting with Acme, Inc.",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-CaseTitleValidation": {
                "summary": "CaseTitleValidation",
                "value": "A"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseTitle",
            "schema": {
              "maxLength": 255,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "The divisional office in which the case was filed.",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-InvalidCaseOfficeFormat": {
                "summary": "InvalidCaseOfficeFormat",
                "value": "cv"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseOffice",
            "schema": {
              "maxLength": 1,
              "type": "integer"
            }
          },
          {
            "description": "The sequence number of a given case. Ex 12345",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-InvalidCaseSequenceNumberFormat": {
                "summary": "InvalidCaseSequenceNumberFormat",
                "value": "12-256"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseSequenceNumber",
            "schema": {
              "maxLength": 6,
              "type": "integer"
            }
          },
          {
            "description": "The two digits or four digits of the year in which the case was filed.",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-InvalidCaseYearFormat": {
                "summary": "InvalidCaseYearFormat",
                "value": 2012
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseYear",
            "schema": {
              "maxLength": 4,
              "type": "integer"
            }
          },
          {
            "description": "Search can be narrowed down by passing caseTypes. Please use the <a href='https://docs.unicourt.com/pacer-glossary/appendix-a-case-types'>APPENDIX A: Case Types</a> mentioned in the API Documentation. \n\n\tScenario: When mulitple case types needs to be requested. \n\n\tImagine for a given case number 12-1234 I would like to search only with the case type civil(cv) and criminal(cr), My query in the request will look like the example mentioned below. \n\n\tExample: caseTypeArray=cv&caseTypeArray=cr",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-InvalidCaseType": {
                "summary": "InvalidCaseType",
                "value": 1234
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseTypeArray",
            "schema": {
              "items": {
                "maxLength": 255,
                "nullable": true,
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "Search can be narrowed down by passing courtRegionId. Please use the <a href='https://docs.unicourt.com/pacer-glossary/appendix-b-court-regions'>APPENDIX B: Court Regions</a> mentioned in the API Documentation. \n\n\tScenario: When mulitple court region ids needs to be requested. \n\n\tImagine for a given case number 12-1234 I would like to search in the court regions California Central (cac) and California Eastern (cae), My query in the request will look like the example mentioned below. \n\n\tExample: courtRegionIdArray=cac&courtRegionIdArray=cae",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-InvalidCourtRegionId": {
                "summary": "InvalidCourtRegionId",
                "value": "civil"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "courtRegionIdArray",
            "schema": {
              "items": {
                "maxLength": 255,
                "nullable": true,
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "Limit the results of the search to those cases from the year specified or later",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-InvalidCaseYearFromFormat": {
                "summary": "InvalidCaseYearFromFormat",
                "value": "2012-12-20"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseYearFrom",
            "schema": {
              "maxLength": 4,
              "type": "integer"
            }
          },
          {
            "description": "Limit the results of the search to those cases from the year specified or earlier",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-InvalidCaseYearToFormat": {
                "summary": "InvalidCaseYearToFormat",
                "value": "2012-12-20"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseYearTo",
            "schema": {
              "maxLength": 4,
              "type": "integer"
            }
          },
          {
            "description": "Narrowing the search by limiting the cases which matches the criteria for case filed start date on or after the given date. Format: YYYY-MM-DDTHH:MM:SS+ZZ:zz, Ex: 2017-12-20T12:54:24+00:00",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-InvalidStartAndEndFiledDate": {
                "summary": "InvalidStartAndEndFiledDate",
                "value": "2012-12-20T12:54:24+00:00"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseFiledStartDate",
            "schema": {
              "format": "date-time",
              "maxLength": 25,
              "minLength": 25,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "Narrowing the search by limiting the cases which matches the criteria for case filed end date on or before the given date. Format: YYYY-MM-DDTHH:MM:SS+ZZ:zz, Ex: 2017-12-20T12:54:24+00:00",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-InvalidStartAndEndFiledDate": {
                "summary": "InvalidStartAndEndFiledDate",
                "value": "2012-12-19T12:54:24+00:00"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseFiledEndDate",
            "schema": {
              "format": "date-time",
              "maxLength": 25,
              "minLength": 25,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "Narrowing the search by limiting the cases which matches the criteria for case terminated start date on or after the given date. Format: YYYY-MM-DDTHH:MM:SS+ZZ:zz, Ex: 2017-12-20T12:54:24+00:00",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-InvalidStartAndEndTerminatedDate": {
                "summary": "InvalidStartAndEndTerminatedDate",
                "value": "2017-12-20T12:54:24+00:00"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseTerminatedStartDate",
            "schema": {
              "format": "date-time",
              "maxLength": 25,
              "minLength": 25,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "Narrowing the search by limiting the cases which matches the criteria for case terminated end date on or before the given date. Format: YYYY-MM-DDTHH:MM:SS+ZZ:zz, Ex: 2017-12-20T12:54:24+00:00",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-InvalidStartAndEndTerminatedDate": {
                "summary": "InvalidStartAndEndTerminatedDate",
                "value": "2017-12-19T12:54:24+00:00"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseTerminatedEndDate",
            "schema": {
              "format": "date-time",
              "maxLength": 25,
              "minLength": 25,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "The criteria based on which the search results are to be sorted. Please use the <a href='https://docs.unicourt.com/pacer-glossary/appendix-c-sort-parameter'>APPENDIX C: Sort Parameter - Sortable Party Parameters</a> mentioned in the API Documentation. The fields can be sorted either ASC or DESC. \n\n\tScenario 1: When mulitple sort paramters needs to be requested. \n\n\tImagine for a given case number 12-1234 I would like to sort the results in the Ascending order of courtId and caseId, My query in the request will look like the example mentioned below. \n\n\tExample: sortParameterQuery=courtId,ASC&caseId,ASC \n\n\tScenario 2: When you want to sort the response using the case parameters in the party search. \n\n\tImagine for a given case number 12-1234 I would like to sort the results in the Ascending order of caseOffice and descending order of caseId, My query in the request will look like the example mentioned below. \n\n\tExample: sortParameterQuery=courtCase.caseOffice,ASC&caseid,DESC",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-InvalidSortQuery": {
                "summary": "InvalidSortQuery",
                "value": "sort=caseYear"
              },
              "HTTP400-InvalidSortQueryFormat": {
                "summary": "InvalidSortQueryFormat",
                "value": "[sort=caseYear,DESC]"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "sortParameterQuery",
            "schema": {
              "default": "sort=caseYear,DESC",
              "maxLength": 100,
              "minLength": 5,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "Status of a case. 'closed' for a Terminated case, 'open' for Pending cases. If this parameter is not sent both cases that fall in open and closed will be queried.",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": null
              },
              "HTTP400-InvalidCaseStatus": {
                "summary": "InvalidCaseStatus",
                "value": "all"
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": null
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": null
              }
            },
            "in": "query",
            "name": "caseStatus",
            "schema": {
              "enum": [
                "open",
                "closed"
              ],
              "maxLength": 100,
              "minLength": 3,
              "nullable": true,
              "type": "string"
            }
          },
          {
            "description": "Page Number for a given Job ID or for the search your going to make.",
            "examples": {
              "HTTP200-PCLParty": {
                "summary": "PCLParty",
                "value": 1
              },
              "HTTP400-CaseTitleValidation": {
                "summary": "CaseTitleValidation",
                "value": 1
              },
              "HTTP400-FailurePCLInvalidJPMLNumber": {
                "summary": "InvalidCaseNumberFormat",
                "value": 1
              },
              "HTTP400-InvalidCaseNumberFormat": {
                "summary": "InvalidCaseNumberFormat",
                "value": 1
              },
              "HTTP400-InvalidCaseOfficeFormat": {
                "summary": "InvalidCaseOfficeFormat",
                "value": 1
              },
              "HTTP400-InvalidCaseSequenceNumberFormat": {
                "summary": "InvalidCaseSequenceNumberFormat",
                "value": 1
              },
              "HTTP400-InvalidCaseStatus": {
                "summary": "InvalidCaseStatus",
                "value": 1
              },
              "HTTP400-InvalidCaseType": {
                "summary": "InvalidCaseType",
                "value": 1
              },
              "HTTP400-InvalidCaseYearFormat": {
                "summary": "InvalidCaseYearFormat",
                "value": 1
              },
              "HTTP400-InvalidCaseYearFromFormat": {
                "summary": "InvalidCaseYearFromFormat",
                "value": 1
              },
              "HTTP400-InvalidCaseYearToFormat": {
                "summary": "InvalidCaseYearToFormat",
                "value": 1
              },
              "HTTP400-InvalidCourtRegionId": {
                "summary": "InvalidCourtRegionId",
                "value": 1
              },
              "HTTP400-InvalidPacerCaseIdFormat": {
                "summary": "InvalidPacerCaseIdFormat",
                "value": 1
              },
              "HTTP400-InvalidPartyExactNameMatch": {
                "summary": "InvalidPartyExactNameMatch",
                "value": 1
              },
              "HTTP400-InvalidQueryParameters": {
                "summary": "InvalidQueryParameters",
                "value": 1
              },
              "HTTP400-InvalidSortQuery": {
                "summary": "InvalidSortQuery",
                "value": 1
              },
              "HTTP400-InvalidSortQueryFormat": {
                "summary": "InvalidSortQueryFormat",
                "value": 1
              },
              "HTTP400-InvalidStartAndEndFiledDate": {
                "summary": "InvalidStartAndEndFiledDate",
                "value": 1
              },
              "HTTP400-InvalidStartAndEndTerminatedDate": {
                "summary": "InvalidStartAndEndTerminatedDate",
                "value": 1
              },
              "HTTP400-LastNameNotPassedWhenFirstOrMiddlePassed": {
                "summary": "LastNameNotPassedWhenFirstOrMiddlePassed",
                "value": 1
              },
              "HTTP400-PageNumberParameterNotPassed": {
                "summary": "PageNumberParameterNotPassed",
                "value": null
              },
              "HTTP400-RequestedClientCodeIsInvalid": {
                "summary": "RequestedClientCodeIsInvalid",
                "value": 1
              },
              "HTTP400-RequestedPacerUserIdIsInvalid": {
                "summary": "RequestedPacerUserIdIsInvalid",
                "value": 1
              },
              "HTTP400-RequestedPageNumberIsInvalid": {
                "summary": "RequestedPageNumberIsInvalid",
                "value": "one"
              },
              "HTTP400-RequiredPartySearchValidation": {
                "summary": "RequiredPartySearchValidation",
                "value": 1
              }
            },
            "in": "query",
            "name": "pageNumber",
            "schema": {
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "PCLParty": {
                    "$ref": "#/components/examples/PCLParty"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/PCLParty"
                }
              }
            },
            "description": "The request is recieved."
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "CaseTitleValidation": {
                    "$ref": "#/components/examples/FailurePCLCaseTitleValidation"
                  },
                  "ClientCodeNotEntered": {
                    "$ref": "#/components/examples/FailurePacerClientCodeNotEntered"
                  },
                  "InvalidCaseNumberFormat": {
                    "$ref": "#/components/examples/FailurePCLInvalidCaseNumberFormatForAppeal"
                  },
                  "InvalidCaseOfficeFormat": {
                    "$ref": "#/components/examples/FailurePCLInvalidCaseOffice"
                  },
                  "InvalidCaseSequenceNumberFormat": {
                    "$ref": "#/components/examples/FailurePCLInvalidCaseSequenceNumber"
                  },
                  "InvalidCaseStatus": {
                    "$ref": "#/components/examples/FailureInvalidCaseStatus"
                  },
                  "InvalidCaseType": {
                    "$ref": "#/components/examples/FailureInvalidCaseType"
                  },
                  "InvalidCaseYearFormat": {
                    "$ref": "#/components/examples/FailurePCLInvalidCaseYear"
                  },
                  "InvalidCourtRegionId": {
                    "$ref": "#/components/examples/FailureInvalidCourtRegionId"
                  },
                  "InvalidJPMLNumberFormat": {
                    "$ref": "#/components/examples/FailurePCLInvalidJPMLNumber"
                  },
                  "InvalidPacerUserIdOrPassword": {
                    "$ref": "#/components/examples/FailurePacerUserIdOrPassword"
                  },
                  "InvalidPartyExactNameMatch": {
                    "$ref": "#/components/examples/FailureInvalidPartyExactNameMatch"
                  },
                  "InvalidSortQuery": {
                    "$ref": "#/components/examples/FailureInvalidSortParameterPassed"
                  },
                  "InvalidSortQueryFormat": {
                    "$ref": "#/components/examples/FailureInvalidSortParameterQueryFormat"
                  },
                  "InvalidStartAndEndFiledDate": {
                    "$ref": "#/components/examples/FailurePCLCaseFiledDateValidation"
                  },
                  "InvalidStartAndEndTerminatedDate": {
                    "$ref": "#/components/examples/FailurePCLCaseTerminatedDateValidation"
                  },
                  "LastNameNotPassedWhenFirstOrMiddlePassed": {
                    "$ref": "#/components/examples/FailureLastNameNotPassedWhenFirstOrMiddlePassed"
                  },
                  "PacerAccountDisabled": {
                    "$ref": "#/components/examples/FailurePacerAccountDisabled"
                  },
                  "PacerCredentialsNotFound": {
                    "$ref": "#/components/examples/FailurePacerCredentialsNotFound"
                  },
                  "PageNumberParameterNotPassed": {
                    "$ref": "#/components/examples/FailurePageNumberIdNotPassed"
                  },
                  "RequestedClientCodeIsInvalid": {
                    "$ref": "#/components/examples/FailureClientCodeIsInvalid"
                  },
                  "RequestedPacerUserIdIsInvalid": {
                    "$ref": "#/components/examples/FailurePacerUserIdIsInvalid"
                  },
                  "RequestedPageNumberIsInvalid": {
                    "$ref": "#/components/examples/FailureInvalidPageNumber"
                  },
                  "RequiredPartySearchValidation": {
                    "$ref": "#/components/examples/FailurePCLRequiredFieldPartySearch"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Invalid Input Parameter"
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "ServerError": {
                    "$ref": "#/components/examples/FailureServerError"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Server Error"
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "PACER Case Locator Search API for All Courts.",
        "tags": [
          "PACER API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [],
      "x-api-name": "PCLPartyMultiDistrictCourtsAPI",
      "x-unicourt-tag": "PACERAPIs"
    },
    "/pacerCredential": {
      "get": {
        "description": "List registered PACER credentials.",
        "operationId": "getPacerCredential",
        "parameters": [
          {
            "description": "The page number of the PACER credentials to be retrieved.<br>\n  - Minimum: 1\n",
            "examples": {
              "HTTP200-sampleResponse": {
                "summary": "sampleResponse",
                "value": 1
              },
              "HTTP400-sample400Response": {
                "summary": "sample400Response",
                "value": 0
              }
            },
            "in": "query",
            "name": "pageNumber",
            "schema": {
              "example": 1,
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleResponse": {
                    "$ref": "#/components/examples/pacerCredentialList"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/PacerCredentialListResponse"
                }
              }
            },
            "description": "OK"
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "sample400Response": {
                    "value": {
                      "code": "UN400",
                      "details": "Invalid request. Please check the `pageNumber`",
                      "message": "INVALID_INPUT",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Bad Request"
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "Internal_Server_Error": {
                    "value": {
                      "code": "UN500",
                      "details": "Something went wrong. Please retry again later.",
                      "message": "INTERNAL_SERVER_ERROR",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Internal Server Error"
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Get Pacer Credential List.",
        "tags": [
          "PACER Credential API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [],
      "put": {
        "description": "Register PACER credentials with UniCourt.",
        "operationId": "addPacerCredential",
        "requestBody": {
          "content": {
            "application/json": {
              "examples": {
                "PacerCredentialRequest": {
                  "$ref": "#/components/examples/PacerCredentialRequest"
                }
              },
              "schema": {
                "$ref": "#/components/schemas/PacerCredentialRequest"
              }
            }
          }
        },
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "PacerCredentialAdded": {
                    "value": {
                      "message": "Added Successfully.",
                      "object": "Success"
                    }
                  },
                  "PacerCredentialUpdated": {
                    "value": {
                      "message": "Updated Successfully.",
                      "object": "Success"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Success"
                }
              }
            },
            "description": "OK"
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "sample400Response": {
                    "value": {
                      "code": "UN400",
                      "details": "Invalid request. Please check the `pacerUserId`.",
                      "message": "INVALID_INPUT",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Bad Request"
          },
          "429": {
            "content": {
              "application/json": {
                "examples": {
                  "sample429Response": {
                    "value": {
                      "code": "UN429",
                      "details": "Update is already in progress, please try again after some time.",
                      "message": "TOO_MANY_REQUESTS",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Too Many Requests"
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "Internal_Server_Error": {
                    "value": {
                      "code": "UN500",
                      "details": "Something went wrong. Please retry again later.",
                      "message": "INTERNAL_SERVER_ERROR",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Internal Server Error"
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Add Pacer Credential.",
        "tags": [
          "PACER Credential API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "PUT",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "x-api-name": "PacerCredentialAPI",
      "x-unicourt-tag": "PACERAPIs"
    },
    "/pacerCredential/{pacerUserId}": {
      "delete": {
        "description": "De-register the PACER credentials for the specified PACER username.",
        "operationId": "removePacerCredentialById",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "PacerCredentialDeleted": {
                    "value": {
                      "message": "Deleted successfully.",
                      "object": "Success"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Success"
                }
              }
            },
            "description": "OK"
          },
          "404": {
            "content": {
              "application/json": {
                "examples": {
                  "sample404Response": {
                    "value": {
                      "code": "UN404",
                      "details": "Invalid request. Please check the `pacerUserId`.",
                      "message": "RESOURCE_NOT_FOUND",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Not Found"
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "Internal_Server_Error": {
                    "value": {
                      "code": "UN500",
                      "details": "Something went wrong. Please retry again later.",
                      "message": "INTERNAL_SERVER_ERROR",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Internal Server Error"
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Remove Pacer credential for a specific Pacer User Id.",
        "tags": [
          "PACER Credential API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "DELETE",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "get": {
        "description": "Retrieve the PACER credentials for the specified PACER username.",
        "operationId": "getPacerCredentialById",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "sampleResponse": {
                    "$ref": "#/components/examples/pacerCredential"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/PacerCredential"
                }
              }
            },
            "description": "OK"
          },
          "404": {
            "content": {
              "application/json": {
                "examples": {
                  "sample404Response": {
                    "value": {
                      "code": "UN404",
                      "details": "Invalid request. Please check the `pacerUserId`.",
                      "message": "RESOURCE_NOT_FOUND",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Not Found"
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "Internal_Server_Error": {
                    "value": {
                      "code": "UN500",
                      "details": "Something went wrong. Please retry again later.",
                      "message": "INTERNAL_SERVER_ERROR",
                      "object": "Exception"
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Internal Server Error"
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Get Pacer Credential for a requested pacer User Id.",
        "tags": [
          "PACER Credential API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "GET",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [
        {
          "description": "The PACER username for which PACER credentials are to be retrieved.",
          "examples": {
            "HTTP200-sampleResponse": {
              "summary": "sampleResponse",
              "value": "URKYwer3tyh5r56gq2"
            },
            "HTTP404-sample404Response": {
              "summary": "sample404Response",
              "value": "test"
            }
          },
          "in": "path",
          "name": "pacerUserId",
          "required": true,
          "schema": {
            "maxLength": 40,
            "minLength": 6,
            "nullable": false,
            "type": "string"
          }
        }
      ],
      "x-api-name": "GetOrRemovePacerCredentialAPI",
      "x-unicourt-tag": "PACERAPIs"
    },
    "/party/{partyId}": {
      "get": {
        "description": "Retrieve the party with the specified partyId value.",
        "operationId": "getPartyById",
        "parameters": [],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "AllPartiesForACase": {
                    "$ref": "#/components/examples/CaseApiPartyResponse"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Party"
                }
              }
            },
            "description": "The request is recieved."
          },
          "404": {
            "content": {
              "application/json": {
                "examples": {
                  "RequestedPartyIdIsInvalid": {
                    "$ref": "#/components/examples/FailureInvalidPartyId"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Resource Not Found"
          },
          "451": {
            "content": {
              "application/json": {
                "examples": {
                  "SealedCase": {
                    "$ref": "#/components/examples/SealedCase"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Sealed Case"
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "ServerError": {
                    "$ref": "#/components/examples/FailureServerError"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Server Error"
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Gets details for a requested Party ID.",
        "tags": [
          "Case Docket API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "POST",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [
        {
          "description": "Retrieve the party with the specified partyId value.",
          "examples": {
            "HTTP200-AllPartiesForACase": {
              "summary": "AllPartiesForACase",
              "value": "PRTYgla171a8952aed"
            },
            "HTTP404-RequestedPartyIdIsInvalid": {
              "summary": "RequestedPartyIdIsInvalid",
              "value": "PRTYzz537f3901f406"
            },
            "HTTP451-SealedCase": {
              "summary": "SealedCase",
              "value": "PRTYgqc738e1793c83"
            }
          },
          "in": "path",
          "name": "partyId",
          "required": true,
          "schema": {
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          }
        }
      ],
      "x-api-name": "PartyAPI",
      "x-unicourt-tag": "CaseDocketAPIs"
    },
    "/party/{partyId}/associatedAttorneys": {
      "get": {
        "description": "Retrieve the attorneys in the case with the specified partyId value.",
        "operationId": "getPartyAssociatedAttorneys",
        "parameters": [
          {
            "description": "Query parameter specifying the page number of the search results to be retrieved.",
            "examples": {
              "HTTP200-AttorneyAssociationsForAParty": {
                "summary": "AttorneyAssociationsForAParty",
                "value": 1
              },
              "HTTP400-PageNumberParameterNotPassed": {
                "summary": "PageNumberParameterNotPassed",
                "value": "sda"
              },
              "HTTP400-RequestedPageNumberIsInvalid": {
                "summary": "RequestedPageNumberIsInvalid",
                "value": "das"
              },
              "HTTP404-RequestedPartyIdIsInvalid": {
                "summary": "RequestedPartyIdIsInvalid",
                "value": 1
              },
              "HTTP451-SealedCase": {
                "summary": "SealedCase",
                "value": 1
              }
            },
            "in": "query",
            "name": "pageNumber",
            "schema": {
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "examples": {
                  "AttorneyAssociationsForAParty": {
                    "$ref": "#/components/examples/CaseApiAttorneyAssociatedForPartyResponse"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/PartyAttorneyAssociations"
                }
              }
            },
            "description": "The request is recieved."
          },
          "400": {
            "content": {
              "application/json": {
                "examples": {
                  "PageNumberParameterNotPassed": {
                    "$ref": "#/components/examples/FailurePageNumberIdNotPassed"
                  },
                  "RequestedPageNumberIsInvalid": {
                    "$ref": "#/components/examples/FailureInvalidPageNumber"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Invalid Input Parameter"
          },
          "404": {
            "content": {
              "application/json": {
                "examples": {
                  "RequestedPartyIdIsInvalid": {
                    "$ref": "#/components/examples/FailureInvalidPartyId"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Resource Not Found"
          },
          "451": {
            "content": {
              "application/json": {
                "examples": {
                  "SealedCase": {
                    "$ref": "#/components/examples/SealedCase"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Sealed Case"
          },
          "500": {
            "content": {
              "application/json": {
                "examples": {
                  "ServerError": {
                    "$ref": "#/components/examples/FailureServerError"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/Exception"
                }
              }
            },
            "description": "Server Error"
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "summary": "Gets Associated Attorney details for a requested Party ID.",
        "tags": [
          "Case Docket API"
        ],
        "x-amazon-apigateway-integration": {
          "connectionType": "INTERNET",
          "httpMethod": "POST",
          "payloadFormatVersion": "2.0",
          "type": "aws_proxy"
        }
      },
      "parameters": [
        {
          "description": "Retrieve the party with the specified partyId value.",
          "examples": {
            "HTTP200-AttorneyAssociationsForAParty": {
              "summary": "AttorneyAssociationsForAParty",
              "value": "PRTYgu537f3901f406"
            },
            "HTTP400-PageNumberParameterNotPassed": {
              "summary": "PageNumberParameterNotPassed",
              "value": "PRTYgu537f3901f406"
            },
            "HTTP400-RequestedPageNumberIsInvalid": {
              "summary": "RequestedPageNumberIsInvalid",
              "value": "PRTYgu537f3901f406"
            },
            "HTTP404-RequestedPartyIdIsInvalid": {
              "summary": "RequestedPartyIdIsInvalid",
              "value": "PRTYzz537f3901f406"
            },
            "HTTP451-SealedCase": {
              "summary": "SealedCase",
              "value": "PRTYgqc738e1793c83"
            }
          },
          "in": "path",
          "name": "partyId",
          "required": true,
          "schema": {
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          }
        }
      ],
      "x-api-name": "AssociatedAttorneysForPartyAPI",
      "x-unicourt-tag": "CaseDocketAPIs"
    }
  },
  "components": {
    "examples": {
      "CaseApiAttorneyAssociatedForPartyResponse": {
        "value": {
          "nextPageAPI": null,
          "object": "PartyAttorneyAssociations",
          "pageNumber": 1,
          "partyAttorneyAssociationArray": [
            {
              "attorneyId": "ATTYgu01be2e4de654",
              "isVisible": true,
              "object": "PartyAttorneyAssociation",
              "partyAttorneyAssociationId": "PATMguccbcb5acb4a7",
              "partyId": "PRTYgu537f3901f406"
            },
            {
              "attorneyId": "ATTYgue6dbccad1887",
              "isVisible": true,
              "object": "PartyAttorneyAssociation",
              "partyAttorneyAssociationId": "PATMgud567878c7f3f",
              "partyId": "PRTYgu537f3901f406"
            },
            {
              "attorneyId": "ATTYgubb13ae13a8f9",
              "isVisible": true,
              "object": "PartyAttorneyAssociation",
              "partyAttorneyAssociationId": "PATMgu116274a01bf9",
              "partyId": "PRTYgu537f3901f406"
            },
            {
              "attorneyId": "ATTYgu500d3e3315b9",
              "isVisible": true,
              "object": "PartyAttorneyAssociation",
              "partyAttorneyAssociationId": "PATMgu296b72d8278d",
              "partyId": "PRTYgu537f3901f406"
            }
          ],
          "totalCount": 4,
          "totalPages": 1
        }
      },
      "CaseApiAttorneyResponse": {
        "value": {
          "attorneyId": "ATTYgu01be2e4de654",
          "attorneyLawFirmArray": [
            {
              "attorneyLawFirmId": "ALFIgu54e4b03c83ed",
              "firstFetchDate": "2020-09-05T05:43:27+00:00",
              "isVisible": true,
              "lastFetchDate": "2021-11-25T11:21:15+00:00",
              "name": "Greer, Burns & Crain, Ltd.",
              "object": "AttorneyLawFirm"
            }
          ],
          "attorneyType": {
            "attorneyTypeId": "ATYPRPk3LNobYmtqwF",
            "createdDate": "2022-03-28T04:59:12+00:00",
            "name": "Attorney",
            "object": "AttorneyType"
          },
          "barNumber": null,
          "contact": {
            "addressArray": [
              {
                "city": "Chicago",
                "countryCode": "USA",
                "countryName": "United States of America",
                "firstFetchDate": "2021-11-25T11:21:15+00:00",
                "isVisible": true,
                "lastFetchDate": "2021-11-25T11:21:15+00:00",
                "latitude": null,
                "longitude": null,
                "object": "Address",
                "stateCode": "IL",
                "stateName": "ILLINOIS",
                "streetAddress1": "300 South Wacker Drive",
                "streetAddress2": "Suite 2500",
                "zip": "60606",
                "zip4": null
              },
              {
                "city": "Chicago",
                "countryCode": "USA",
                "countryName": "United States of America",
                "firstFetchDate": "2020-09-05T05:43:27+00:00",
                "isVisible": false,
                "lastFetchDate": "2020-11-03T07:53:27+00:00",
                "latitude": null,
                "longitude": null,
                "object": "Address",
                "stateCode": "IL",
                "stateName": "ILLINOIS",
                "streetAddress1": "300 South Wacker Drive, Suite 2500",
                "streetAddress2": null,
                "zip": "60606",
                "zip4": null
              }
            ],
            "emailArray": [
              {
                "emailId": "mtrainor@gbc.law",
                "firstFetchDate": "2020-09-05T05:43:27+00:00",
                "isVisible": true,
                "lastFetchDate": "2021-11-25T11:21:15+00:00",
                "object": "Email"
              }
            ],
            "object": "Contact",
            "phoneNumberArray": [
              {
                "firstFetchDate": "2020-09-05T05:43:27+00:00",
                "isVisible": false,
                "lastFetchDate": "2020-11-03T07:53:27+00:00",
                "object": "Phone",
                "phoneNumber": "3123600080",
                "phoneType": "DEFAULT"
              },
              {
                "firstFetchDate": "2021-11-25T11:21:15+00:00",
                "isVisible": true,
                "lastFetchDate": "2021-11-25T11:21:15+00:00",
                "object": "Phone",
                "phoneNumber": "(312) 360-0080",
                "phoneType": "DEFAULT"
              }
            ]
          },
          "firstFetchDate": "2020-09-05T05:43:27+00:00",
          "firstName": "Martin",
          "isVisible": true,
          "lastFetchDate": "2021-11-25T11:21:15+00:00",
          "lastName": "Trainor",
          "middleName": "Francis",
          "name": "Martin Francis Trainor",
          "namePrefix": null,
          "nameSuffix": null,
          "object": "Attorney",
          "partyAttorneyAssociations": {
            "nextPageAPI": null,
            "object": "PartyAttorneyAssociations",
            "pageNumber": 1,
            "partyAttorneyAssociationArray": [
              {
                "attorneyId": "ATTYgu01be2e4de654",
                "isVisible": true,
                "object": "PartyAttorneyAssociation",
                "partyAttorneyAssociationId": "PATMguccbcb5acb4a7",
                "partyId": "PRTYgu537f3901f406"
              }
            ],
            "totalCount": 1,
            "totalPages": 1
          },
          "partyRoleGroupIdArray": [
            "PTYGBnjxbx6tKNfVEP"
          ],
          "partyRoleIdArray": [
            "PTYR9F4zbteyj7ehmi"
          ],
          "possibleNormAttorneyArray": [
            {
              "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormJudges?pageNumber=1",
              "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormLawFirms?pageNumber=1",
              "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormParties?pageNumber=1",
              "bestMatch": true,
              "caseCountAnalyticsByNormAttorneyAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByNormAttorney?pageNumber=1&q=normAttorneyId:NATY11111111111111",
              "caseCountAnalyticsByOpposingNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByOpposingNormAttorney?pageNumber=1",
              "confidenceScore": 0.5,
              "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111",
              "normAttorneyId": "NATY11111111111111",
              "normAttorneyName": "ACOSTA S FERNANDO",
              "object": "PossibleNormAttorney",
              "scoreConstituents": {
                "address": "Not_Provided_By_Data_Source",
                "barId": "Not_Provided_By_Data_Source",
                "email": "Not_Provided_By_Data_Source",
                "lawFirm": "Not_Provided_By_Data_Source",
                "nameSimilarityScore": 0.6,
                "otherPotentialNormAttorneys": 0,
                "phone": "Not_Provided_By_Data_Source"
              }
            }
          ],
          "possibleNormLawFirmArray": [
            {
              "associatedNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormAttorneys?pageNumber=1",
              "associatedNormJudgeAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormJudges?pageNumber=1",
              "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormParties?pageNumber=1",
              "bestMatch": true,
              "caseCountAnalyticsByNormLawFirmAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByNormLawFirm?pageNumber=1&q=normLawFirmId:NLAF11111111111111",
              "caseCountAnalyticsByOpposingNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByOpposingNormLawFirm?pageNumber=1",
              "confidenceScore": 0.66,
              "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111",
              "normLawFirmId": "NLAF11111111111111",
              "normLawFirmName": "MidLand Funding LLC",
              "object": "PossibleNormLawFirm",
              "scoreConstituents": {
                "address": "Not_Provided_By_Data_Source",
                "email": "Not_Provided_By_Data_Source",
                "nameSimilarityScore": 0.8,
                "otherPotentialNormLawFirms": 0,
                "phone": "Not_Provided_By_Data_Source",
                "secretaryOfStateId": "Not_Provided_By_Data_Source"
              },
              "sourceDetails": {
                "linkedNormAttorneyIdArray": [
                  "NATY11111111111111"
                ],
                "source": "Case_Attorney_Linked_In_Other_Cases"
              }
            }
          ],
          "sourceAttorneyType": "ATTORNEY"
        }
      },
      "CaseApiAttorneysResponse": {
        "value": {
          "attorneyArray": [
            {
              "attorneyId": "ATTYgq28a86d19427a",
              "attorneyLawFirmArray": [
                {
                  "attorneyLawFirmId": "ALFIgq6ccd13b87788",
                  "firstFetchDate": "2020-02-18T18:45:08+00:00",
                  "isVisible": true,
                  "lastFetchDate": "2022-06-02T10:44:24+00:00",
                  "name": "Dickie, McCamey & Chilcote, P.C.",
                  "object": "AttorneyLawFirm"
                }
              ],
              "attorneyType": {
                "attorneyTypeId": "ATYPWXtARwvzu5HLcf",
                "createdDate": "2022-03-28T04:59:12+00:00",
                "name": "Lead Attorney",
                "object": "AttorneyType"
              },
              "barNumber": null,
              "contact": {
                "addressArray": [
                  {
                    "city": "Steubenville",
                    "countryCode": "USA",
                    "countryName": "United States of America",
                    "firstFetchDate": "2020-02-18T18:45:16+00:00",
                    "isVisible": false,
                    "lastFetchDate": "2021-03-18T19:50:18+00:00",
                    "latitude": null,
                    "longitude": null,
                    "object": "Address",
                    "stateCode": "OH",
                    "stateName": "OHIO",
                    "streetAddress1": "401 Market Street, Suite 401",
                    "streetAddress2": null,
                    "zip": "43952",
                    "zip4": "2847"
                  },
                  {
                    "city": "Steubenville",
                    "countryCode": "USA",
                    "countryName": "United States of America",
                    "firstFetchDate": "2021-07-21T06:55:39+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2022-06-02T10:44:24+00:00",
                    "latitude": null,
                    "longitude": null,
                    "object": "Address",
                    "stateCode": "OH",
                    "stateName": "OHIO",
                    "streetAddress1": "401 Market Street",
                    "streetAddress2": "Suite 401",
                    "zip": "43952",
                    "zip4": "2847"
                  }
                ],
                "emailArray": [
                  {
                    "emailId": "pcozza@dmclaw.com",
                    "firstFetchDate": "2020-02-18T18:45:16+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2022-06-02T10:44:24+00:00",
                    "object": "Email"
                  }
                ],
                "object": "Contact",
                "phoneNumberArray": [
                  {
                    "firstFetchDate": "2021-07-21T06:55:39+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2022-06-02T10:44:24+00:00",
                    "object": "Phone",
                    "phoneNumber": "740-284-1682",
                    "phoneType": "DEFAULT"
                  },
                  {
                    "firstFetchDate": "2020-02-18T18:45:16+00:00",
                    "isVisible": false,
                    "lastFetchDate": "2021-03-18T19:50:18+00:00",
                    "object": "Phone",
                    "phoneNumber": "7402841682",
                    "phoneType": "DEFAULT"
                  },
                  {
                    "firstFetchDate": "2020-02-18T18:45:16+00:00",
                    "isVisible": false,
                    "lastFetchDate": "2021-03-18T19:50:18+00:00",
                    "object": "Phone",
                    "phoneNumber": "7402841692",
                    "phoneType": "FAX"
                  },
                  {
                    "firstFetchDate": "2021-07-21T06:55:39+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2022-06-02T10:44:24+00:00",
                    "object": "Phone",
                    "phoneNumber": "740-284-1692",
                    "phoneType": "OFFICE"
                  }
                ]
              },
              "firstFetchDate": "2020-02-18T18:45:16+00:00",
              "firstName": "Piero",
              "isVisible": true,
              "lastFetchDate": "2022-06-02T10:44:24+00:00",
              "lastName": "Cozza",
              "middleName": "P",
              "name": "Piero P Cozza",
              "namePrefix": null,
              "nameSuffix": null,
              "object": "Attorney",
              "partyAttorneyAssociations": {
                "nextPageAPI": null,
                "object": "PartyAttorneyAssociations",
                "pageNumber": 1,
                "partyAttorneyAssociationArray": [
                  {
                    "attorneyId": "ATTYgq28a86d19427a",
                    "isVisible": false,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgq95d827e1bce9",
                    "partyId": "PRTYgq77029b5477ee"
                  },
                  {
                    "attorneyId": "ATTYgq28a86d19427a",
                    "isVisible": false,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgq886c29590199",
                    "partyId": "PRTYgq7ad6920fe5c2"
                  }
                ],
                "totalCount": 2,
                "totalPages": 1
              },
              "partyRoleGroupIdArray": [
                "PTYGBnjxbx6tKNfVEP"
              ],
              "partyRoleIdArray": [
                "PTYR9F4zbteyj7ehmi"
              ],
              "possibleNormAttorneyArray": [
                {
                  "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormJudges?pageNumber=1",
                  "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormLawFirms?pageNumber=1",
                  "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormParties?pageNumber=1",
                  "bestMatch": true,
                  "caseCountAnalyticsByNormAttorneyAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByNormAttorney?pageNumber=1&q=normAttorneyId:NATY11111111111111",
                  "caseCountAnalyticsByOpposingNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByOpposingNormAttorney?pageNumber=1",
                  "confidenceScore": 0.5,
                  "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111",
                  "normAttorneyId": "NATY11111111111111",
                  "normAttorneyName": "ACOSTA S FERNANDO",
                  "object": "PossibleNormAttorney",
                  "scoreConstituents": {
                    "address": "Not_Provided_By_Data_Source",
                    "barId": "Not_Provided_By_Data_Source",
                    "email": "Not_Provided_By_Data_Source",
                    "lawFirm": "Not_Provided_By_Data_Source",
                    "nameSimilarityScore": 0.6,
                    "otherPotentialNormAttorneys": 0,
                    "phone": "Not_Provided_By_Data_Source"
                  }
                }
              ],
              "possibleNormLawFirmArray": [
                {
                  "associatedNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormAttorney?pageNumber=1",
                  "associatedNormJudgeAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormJudges?pageNumber=1",
                  "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormParties?pageNumber=1",
                  "bestMatch": true,
                  "caseCountAnalyticsByNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByNormLawFirm?pageNumber=1",
                  "caseCountAnalyticsByOpposingNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByOpposingNormLawFirm?pageNumber=1",
                  "confidenceScore": 0.66,
                  "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111",
                  "normLawFirmId": "NLAF11111111111111",
                  "normLawFirmName": "MidLand Funding LLC",
                  "object": "PossibleNormLawFirm",
                  "scoreConstituents": {
                    "address": "Not_Provided_By_Data_Source",
                    "email": "Not_Provided_By_Data_Source",
                    "nameSimilarityScore": 0.8,
                    "otherPotentialNormLawFirms": 0,
                    "phone": "Not_Provided_By_Data_Source",
                    "secretaryOfStateId": "Not_Provided_By_Data_Source"
                  },
                  "sourceDetails": {
                    "linkedNormAttorneyIdArray": [
                      "NATY11111111111111"
                    ],
                    "source": "Case_Attorney_Linked_In_Other_Cases"
                  }
                }
              ],
              "sourceAttorneyType": "LEAD ATTORNEY"
            },
            {
              "attorneyId": "ATTYgq23253e0d2655",
              "attorneyLawFirmArray": [
                {
                  "attorneyLawFirmId": "ALFIgq0106fb0e0183",
                  "firstFetchDate": "2020-02-18T18:45:09+00:00",
                  "isVisible": true,
                  "lastFetchDate": "2022-06-02T10:44:25+00:00",
                  "name": "Krugliak Wilkins Griffiths & Dougherty Co",
                  "object": "AttorneyLawFirm"
                }
              ],
              "attorneyType": {
                "attorneyTypeId": "ATYPRPk3LNobYmtqwF",
                "createdDate": "2022-03-28T04:59:12+00:00",
                "name": "Attorney",
                "object": "AttorneyType"
              },
              "barNumber": null,
              "contact": {
                "addressArray": [
                  {
                    "city": "Canton",
                    "countryCode": "USA",
                    "countryName": "United States of America",
                    "firstFetchDate": "2021-07-21T06:55:40+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2022-06-02T10:44:25+00:00",
                    "latitude": null,
                    "longitude": null,
                    "object": "Address",
                    "stateCode": "OH",
                    "stateName": "OHIO",
                    "streetAddress1": "4775 Munson Street NW",
                    "streetAddress2": "P.O. Box 36963",
                    "zip": "44735",
                    "zip4": "6963"
                  },
                  {
                    "city": "Canton",
                    "countryCode": "USA",
                    "countryName": "United States of America",
                    "firstFetchDate": "2020-02-18T18:45:16+00:00",
                    "isVisible": false,
                    "lastFetchDate": "2021-03-18T19:50:18+00:00",
                    "latitude": null,
                    "longitude": null,
                    "object": "Address",
                    "stateCode": "OH",
                    "stateName": "OHIO",
                    "streetAddress1": "4775 Munson Street NW, P.O. Box 36963",
                    "streetAddress2": null,
                    "zip": "44735",
                    "zip4": "6963"
                  }
                ],
                "emailArray": [
                  {
                    "emailId": "gwatts@kwgd.com",
                    "firstFetchDate": "2020-02-18T18:45:16+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2022-06-02T10:44:25+00:00",
                    "object": "Email"
                  }
                ],
                "object": "Contact",
                "phoneNumberArray": [
                  {
                    "firstFetchDate": "2020-02-18T18:45:16+00:00",
                    "isVisible": false,
                    "lastFetchDate": "2021-03-18T19:50:18+00:00",
                    "object": "Phone",
                    "phoneNumber": "3304970700",
                    "phoneType": "DEFAULT"
                  },
                  {
                    "firstFetchDate": "2021-07-21T06:55:41+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2022-06-02T10:44:25+00:00",
                    "object": "Phone",
                    "phoneNumber": "330-497-0700",
                    "phoneType": "DEFAULT"
                  },
                  {
                    "firstFetchDate": "2021-07-21T06:55:41+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2022-06-02T10:44:25+00:00",
                    "object": "Phone",
                    "phoneNumber": "330-497-4020",
                    "phoneType": "OFFICE"
                  },
                  {
                    "firstFetchDate": "2020-02-18T18:45:16+00:00",
                    "isVisible": false,
                    "lastFetchDate": "2021-03-18T19:50:18+00:00",
                    "object": "Phone",
                    "phoneNumber": "3304974020",
                    "phoneType": "FAX"
                  }
                ]
              },
              "firstFetchDate": "2020-02-18T18:45:16+00:00",
              "firstName": "Gregory",
              "isVisible": true,
              "lastFetchDate": "2022-06-02T10:44:25+00:00",
              "lastName": "Watts",
              "middleName": "W",
              "name": "Gregory W. Watts",
              "namePrefix": null,
              "nameSuffix": null,
              "object": "Attorney",
              "partyAttorneyAssociations": {
                "nextPageAPI": null,
                "object": "PartyAttorneyAssociations",
                "pageNumber": 1,
                "partyAttorneyAssociationArray": [
                  {
                    "attorneyId": "ATTYgq23253e0d2655",
                    "isVisible": false,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgq9ab1681cbbf5",
                    "partyId": "PRTYgqe09b66b02dfb"
                  },
                  {
                    "attorneyId": "ATTYgq23253e0d2655",
                    "isVisible": true,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgq097858bf6a08",
                    "partyId": "PRTYgqb9bfa88313f2"
                  },
                  {
                    "attorneyId": "ATTYgq23253e0d2655",
                    "isVisible": false,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgq19f49e05854e",
                    "partyId": "PRTYgqcf52a57b8982"
                  },
                  {
                    "attorneyId": "ATTYgq23253e0d2655",
                    "isVisible": false,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgq576a517a8542",
                    "partyId": "PRTYgq99b238934485"
                  }
                ],
                "totalCount": 4,
                "totalPages": 1
              },
              "partyRoleGroupIdArray": [
                "PTYGBnjxbx6tKNfVEP"
              ],
              "partyRoleIdArray": [
                "PTYR9F4zbteyj7ehmi"
              ],
              "possibleNormAttorneyArray": [
                {
                  "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormJudges?pageNumber=1",
                  "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormLawFirms?pageNumber=1",
                  "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormParties?pageNumber=1",
                  "bestMatch": true,
                  "caseCountAnalyticsByNormAttorneyAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByNormAttorney?pageNumber=1&q=normAttorneyId:NATY11111111111111",
                  "caseCountAnalyticsByOpposingNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByOpposingNormAttorney?pageNumber=1",
                  "confidenceScore": 0.5,
                  "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111",
                  "normAttorneyId": "NATY11111111111111",
                  "normAttorneyName": "ACOSTA S FERNANDO",
                  "object": "PossibleNormAttorney",
                  "scoreConstituents": {
                    "address": "Not_Provided_By_Data_Source",
                    "barId": "Not_Provided_By_Data_Source",
                    "email": "Not_Provided_By_Data_Source",
                    "lawFirm": "Not_Provided_By_Data_Source",
                    "nameSimilarityScore": 0.6,
                    "otherPotentialNormAttorneys": 0,
                    "phone": "Not_Provided_By_Data_Source"
                  }
                }
              ],
              "possibleNormLawFirmArray": [
                {
                  "associatedNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormAttorney?pageNumber=1",
                  "associatedNormJudgeAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormJudges?pageNumber=1",
                  "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormParties?pageNumber=1",
                  "bestMatch": true,
                  "caseCountAnalyticsByNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByNormLawFirm?pageNumber=1",
                  "caseCountAnalyticsByOpposingNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByOpposingNormLawFirm?pageNumber=1",
                  "confidenceScore": 0.66,
                  "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111",
                  "normLawFirmId": "NLAF11111111111111",
                  "normLawFirmName": "MidLand Funding LLC",
                  "object": "PossibleNormLawFirm",
                  "scoreConstituents": {
                    "address": "Not_Provided_By_Data_Source",
                    "email": "Not_Provided_By_Data_Source",
                    "nameSimilarityScore": 0.8,
                    "otherPotentialNormLawFirms": 0,
                    "phone": "Not_Provided_By_Data_Source",
                    "secretaryOfStateId": "Not_Provided_By_Data_Source"
                  },
                  "sourceDetails": {
                    "linkedNormAttorneyIdArray": [
                      "NATY11111111111111"
                    ],
                    "source": "Case_Attorney_Linked_In_Other_Cases"
                  }
                }
              ],
              "sourceAttorneyType": "ATTORNEY"
            },
            {
              "attorneyId": "ATTYgqd553b50007e4",
              "attorneyLawFirmArray": [
                {
                  "attorneyLawFirmId": "ALFIgq8037a7768d41",
                  "firstFetchDate": "2020-02-18T18:45:08+00:00",
                  "isVisible": true,
                  "lastFetchDate": "2022-06-02T10:44:22+00:00",
                  "name": "Gordon & Rees LLP",
                  "object": "AttorneyLawFirm"
                }
              ],
              "attorneyType": {
                "attorneyTypeId": "ATYPRPk3LNobYmtqwF",
                "createdDate": "2022-03-28T04:59:12+00:00",
                "name": "Attorney",
                "object": "AttorneyType"
              },
              "barNumber": null,
              "contact": {
                "addressArray": [
                  {
                    "city": "Columbus",
                    "countryCode": "USA",
                    "countryName": "United States of America",
                    "firstFetchDate": "2020-02-18T18:45:16+00:00",
                    "isVisible": false,
                    "lastFetchDate": "2021-03-18T19:50:19+00:00",
                    "latitude": null,
                    "longitude": null,
                    "object": "Address",
                    "stateCode": "OH",
                    "stateName": "OHIO",
                    "streetAddress1": "41 South High Street, Suite 2495",
                    "streetAddress2": null,
                    "zip": "43215",
                    "zip4": null
                  },
                  {
                    "city": "Columbus",
                    "countryCode": "USA",
                    "countryName": "United States of America",
                    "firstFetchDate": "2021-07-21T06:55:37+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2022-06-02T10:44:22+00:00",
                    "latitude": null,
                    "longitude": null,
                    "object": "Address",
                    "stateCode": "OH",
                    "stateName": "OHIO",
                    "streetAddress1": "41 South High Street",
                    "streetAddress2": "Suite 2495",
                    "zip": "43215",
                    "zip4": null
                  }
                ],
                "emailArray": [
                  {
                    "emailId": "dhyzak@grsm.com",
                    "firstFetchDate": "2020-02-18T18:45:16+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2022-06-02T10:44:22+00:00",
                    "object": "Email"
                  }
                ],
                "object": "Contact",
                "phoneNumberArray": [
                  {
                    "firstFetchDate": "2020-02-18T18:45:16+00:00",
                    "isVisible": false,
                    "lastFetchDate": "2021-03-18T19:50:19+00:00",
                    "object": "Phone",
                    "phoneNumber": "6143405558",
                    "phoneType": "DEFAULT"
                  },
                  {
                    "firstFetchDate": "2021-07-21T06:55:37+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2022-06-02T10:44:22+00:00",
                    "object": "Phone",
                    "phoneNumber": "614-340-5558",
                    "phoneType": "DEFAULT"
                  },
                  {
                    "firstFetchDate": "2021-07-21T06:55:37+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2022-06-02T10:44:22+00:00",
                    "object": "Phone",
                    "phoneNumber": "614-360-2130",
                    "phoneType": "OFFICE"
                  },
                  {
                    "firstFetchDate": "2020-02-18T18:45:16+00:00",
                    "isVisible": false,
                    "lastFetchDate": "2021-03-18T19:50:19+00:00",
                    "object": "Phone",
                    "phoneNumber": "6143602130",
                    "phoneType": "FAX"
                  }
                ]
              },
              "firstFetchDate": "2020-02-18T18:45:16+00:00",
              "firstName": "Daniel",
              "isVisible": true,
              "lastFetchDate": "2022-06-02T10:44:22+00:00",
              "lastName": "Hyzak",
              "middleName": "J",
              "name": "Daniel J Hyzak",
              "namePrefix": null,
              "nameSuffix": null,
              "object": "Attorney",
              "partyAttorneyAssociations": {
                "nextPageAPI": null,
                "object": "PartyAttorneyAssociations",
                "pageNumber": 1,
                "partyAttorneyAssociationArray": [
                  {
                    "attorneyId": "ATTYgqd553b50007e4",
                    "isVisible": true,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgq2ac369951b11",
                    "partyId": "PRTYgqc2f7512f52d1"
                  },
                  {
                    "attorneyId": "ATTYgqd553b50007e4",
                    "isVisible": true,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgq8605b12c13ba",
                    "partyId": "PRTYgq757308fac292"
                  }
                ],
                "totalCount": 2,
                "totalPages": 1
              },
              "partyRoleGroupIdArray": [
                "PTYGBnjxbx6tKNfVEP"
              ],
              "partyRoleIdArray": [
                "PTYR9F4zbteyj7ehmi"
              ],
              "possibleNormAttorneyArray": [
                {
                  "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormJudges?pageNumber=1",
                  "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormLawFirms?pageNumber=1",
                  "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormParties?pageNumber=1",
                  "bestMatch": true,
                  "caseCountAnalyticsByNormAttorneyAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByNormAttorney?pageNumber=1&q=normAttorneyId:NATY11111111111111",
                  "caseCountAnalyticsByOpposingNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByOpposingNormAttorney?pageNumber=1",
                  "confidenceScore": 0.5,
                  "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111",
                  "normAttorneyId": "NATY11111111111111",
                  "normAttorneyName": "ACOSTA S FERNANDO",
                  "object": "PossibleNormAttorney",
                  "scoreConstituents": {
                    "address": "Not_Provided_By_Data_Source",
                    "barId": "Not_Provided_By_Data_Source",
                    "email": "Not_Provided_By_Data_Source",
                    "lawFirm": "Not_Provided_By_Data_Source",
                    "nameSimilarityScore": 0.6,
                    "otherPotentialNormAttorneys": 0,
                    "phone": "Not_Provided_By_Data_Source"
                  }
                }
              ],
              "possibleNormLawFirmArray": [
                {
                  "associatedNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormAttorney?pageNumber=1",
                  "associatedNormJudgeAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormJudges?pageNumber=1",
                  "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormParties?pageNumber=1",
                  "bestMatch": true,
                  "caseCountAnalyticsByNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByNormLawFirm?pageNumber=1",
                  "caseCountAnalyticsByOpposingNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByOpposingNormLawFirm?pageNumber=1",
                  "confidenceScore": 0.66,
                  "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111",
                  "normLawFirmId": "NLAF11111111111111",
                  "normLawFirmName": "MidLand Funding LLC",
                  "object": "PossibleNormLawFirm",
                  "scoreConstituents": {
                    "address": "Not_Provided_By_Data_Source",
                    "email": "Not_Provided_By_Data_Source",
                    "nameSimilarityScore": 0.8,
                    "otherPotentialNormLawFirms": 0,
                    "phone": "Not_Provided_By_Data_Source",
                    "secretaryOfStateId": "Not_Provided_By_Data_Source"
                  },
                  "sourceDetails": {
                    "linkedNormAttorneyIdArray": [
                      "NATY11111111111111"
                    ],
                    "source": "Case_Attorney_Linked_In_Other_Cases"
                  }
                }
              ],
              "sourceAttorneyType": "ATTORNEY"
            },
            {
              "attorneyId": "ATTYgqe19fac5cde9d",
              "attorneyLawFirmArray": [
                {
                  "attorneyLawFirmId": "ALFIgq092d680f8bcc",
                  "firstFetchDate": "2020-02-18T18:45:08+00:00",
                  "isVisible": true,
                  "lastFetchDate": "2022-06-02T10:44:23+00:00",
                  "name": "Thornburg, Bean & Glick",
                  "object": "AttorneyLawFirm"
                }
              ],
              "attorneyType": {
                "attorneyTypeId": "ATYPRPk3LNobYmtqwF",
                "createdDate": "2022-03-28T04:59:12+00:00",
                "name": "Attorney",
                "object": "AttorneyType"
              },
              "barNumber": null,
              "contact": {
                "addressArray": [
                  {
                    "city": "St. Clairsville",
                    "countryCode": "USA",
                    "countryName": "United States of America",
                    "firstFetchDate": "2020-02-18T18:45:16+00:00",
                    "isVisible": false,
                    "lastFetchDate": "2021-03-18T19:50:19+00:00",
                    "latitude": null,
                    "longitude": null,
                    "object": "Address",
                    "stateCode": "OH",
                    "stateName": "OHIO",
                    "streetAddress1": "113 W. Main Street, P.O. Box 96",
                    "streetAddress2": null,
                    "zip": "43950",
                    "zip4": null
                  },
                  {
                    "city": "St. Clairsville",
                    "countryCode": "USA",
                    "countryName": "United States of America",
                    "firstFetchDate": "2021-07-21T06:55:38+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2022-06-02T10:44:23+00:00",
                    "latitude": null,
                    "longitude": null,
                    "object": "Address",
                    "stateCode": "OH",
                    "stateName": "OHIO",
                    "streetAddress1": "113 W. Main Street",
                    "streetAddress2": "P.O. Box 96",
                    "zip": "43950",
                    "zip4": null
                  }
                ],
                "emailArray": [
                  {
                    "emailId": "eglick_tbg@sbcglobal.net",
                    "firstFetchDate": "2020-02-18T18:45:16+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2022-06-02T10:44:23+00:00",
                    "object": "Email"
                  }
                ],
                "object": "Contact",
                "phoneNumberArray": [
                  {
                    "firstFetchDate": "2021-07-21T06:55:38+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2022-06-02T10:44:23+00:00",
                    "object": "Phone",
                    "phoneNumber": "740-695-0532",
                    "phoneType": "DEFAULT"
                  },
                  {
                    "firstFetchDate": "2021-07-21T06:55:38+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2022-06-02T10:44:23+00:00",
                    "object": "Phone",
                    "phoneNumber": "740-695-8039",
                    "phoneType": "OFFICE"
                  },
                  {
                    "firstFetchDate": "2020-02-18T18:45:16+00:00",
                    "isVisible": false,
                    "lastFetchDate": "2021-03-18T19:50:19+00:00",
                    "object": "Phone",
                    "phoneNumber": "7406958039",
                    "phoneType": "FAX"
                  },
                  {
                    "firstFetchDate": "2020-02-18T18:45:16+00:00",
                    "isVisible": false,
                    "lastFetchDate": "2021-03-18T19:50:19+00:00",
                    "object": "Phone",
                    "phoneNumber": "7406950532",
                    "phoneType": "DEFAULT"
                  }
                ]
              },
              "firstFetchDate": "2020-02-18T18:45:16+00:00",
              "firstName": "Elizabeth",
              "isVisible": true,
              "lastFetchDate": "2022-06-02T10:44:23+00:00",
              "lastName": "Glick",
              "middleName": "L",
              "name": "Elizabeth L Glick",
              "namePrefix": null,
              "nameSuffix": null,
              "object": "Attorney",
              "partyAttorneyAssociations": {
                "nextPageAPI": null,
                "object": "PartyAttorneyAssociations",
                "pageNumber": 1,
                "partyAttorneyAssociationArray": [
                  {
                    "attorneyId": "ATTYgqe19fac5cde9d",
                    "isVisible": false,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgq8a6084698d12",
                    "partyId": "PRTYgq7fa9172d2593"
                  },
                  {
                    "attorneyId": "ATTYgqe19fac5cde9d",
                    "isVisible": true,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgq4b1634452344",
                    "partyId": "PRTYgq4c39445dd086"
                  },
                  {
                    "attorneyId": "ATTYgqe19fac5cde9d",
                    "isVisible": true,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgq6e958e91c3fd",
                    "partyId": "PRTYgq41250f0733e5"
                  },
                  {
                    "attorneyId": "ATTYgqe19fac5cde9d",
                    "isVisible": true,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgqee1477a7b998",
                    "partyId": "PRTYgq08931130aa36"
                  },
                  {
                    "attorneyId": "ATTYgqe19fac5cde9d",
                    "isVisible": true,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgq20913df5db51",
                    "partyId": "PRTYgq7c959834f0d5"
                  },
                  {
                    "attorneyId": "ATTYgqe19fac5cde9d",
                    "isVisible": true,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgq2b93871f677b",
                    "partyId": "PRTYgqbc2e305a2a1d"
                  },
                  {
                    "attorneyId": "ATTYgqe19fac5cde9d",
                    "isVisible": false,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgq78801e1f87f1",
                    "partyId": "PRTYgqe21305d4976a"
                  },
                  {
                    "attorneyId": "ATTYgqe19fac5cde9d",
                    "isVisible": false,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgqeb8aa31c8429",
                    "partyId": "PRTYgqe9f9dda79fc9"
                  },
                  {
                    "attorneyId": "ATTYgqe19fac5cde9d",
                    "isVisible": true,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgqfd6a732bb98b",
                    "partyId": "PRTYgq56b5a13e99b7"
                  }
                ],
                "totalCount": 9,
                "totalPages": 1
              },
              "partyRoleGroupIdArray": [
                "PTYGBnjxbx6tKNfVEP"
              ],
              "partyRoleIdArray": [
                "PTYR9F4zbteyj7ehmi"
              ],
              "possibleNormAttorneyArray": [
                {
                  "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormJudges?pageNumber=1",
                  "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormLawFirms?pageNumber=1",
                  "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormParties?pageNumber=1",
                  "bestMatch": true,
                  "caseCountAnalyticsByNormAttorneyAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByNormAttorney?pageNumber=1&q=normAttorneyId:NATY11111111111111",
                  "caseCountAnalyticsByOpposingNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByOpposingNormAttorney?pageNumber=1",
                  "confidenceScore": 0.5,
                  "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111",
                  "normAttorneyId": "NATY11111111111111",
                  "normAttorneyName": "ACOSTA S FERNANDO",
                  "object": "PossibleNormAttorney",
                  "scoreConstituents": {
                    "address": "Not_Provided_By_Data_Source",
                    "barId": "Not_Provided_By_Data_Source",
                    "email": "Not_Provided_By_Data_Source",
                    "lawFirm": "Not_Provided_By_Data_Source",
                    "nameSimilarityScore": 0.6,
                    "otherPotentialNormAttorneys": 0,
                    "phone": "Not_Provided_By_Data_Source"
                  }
                }
              ],
              "possibleNormLawFirmArray": [
                {
                  "associatedNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormAttorney?pageNumber=1",
                  "associatedNormJudgeAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormJudges?pageNumber=1",
                  "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormParties?pageNumber=1",
                  "bestMatch": true,
                  "caseCountAnalyticsByNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByNormLawFirm?pageNumber=1",
                  "caseCountAnalyticsByOpposingNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByOpposingNormLawFirm?pageNumber=1",
                  "confidenceScore": 0.66,
                  "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111",
                  "normLawFirmId": "NLAF11111111111111",
                  "normLawFirmName": "MidLand Funding LLC",
                  "object": "PossibleNormLawFirm",
                  "scoreConstituents": {
                    "address": "Not_Provided_By_Data_Source",
                    "email": "Not_Provided_By_Data_Source",
                    "nameSimilarityScore": 0.8,
                    "otherPotentialNormLawFirms": 0,
                    "phone": "Not_Provided_By_Data_Source",
                    "secretaryOfStateId": "Not_Provided_By_Data_Source"
                  },
                  "sourceDetails": {
                    "linkedNormAttorneyIdArray": [
                      "NATY11111111111111"
                    ],
                    "source": "Case_Attorney_Linked_In_Other_Cases"
                  }
                }
              ],
              "sourceAttorneyType": "ATTORNEY"
            },
            {
              "attorneyId": "ATTYgq556fd02d0597",
              "attorneyLawFirmArray": [
                {
                  "attorneyLawFirmId": "ALFIgqc4571aff0930",
                  "firstFetchDate": "2020-02-18T18:45:08+00:00",
                  "isVisible": true,
                  "lastFetchDate": "2022-06-02T10:44:23+00:00",
                  "name": "Weston Hurd LLP",
                  "object": "AttorneyLawFirm"
                }
              ],
              "attorneyType": {
                "attorneyTypeId": "ATYPWXtARwvzu5HLcf",
                "createdDate": "2022-03-28T04:59:12+00:00",
                "name": "Lead Attorney",
                "object": "AttorneyType"
              },
              "barNumber": null,
              "contact": {
                "addressArray": [
                  {
                    "city": "Cleveland",
                    "countryCode": "USA",
                    "countryName": "United States of America",
                    "firstFetchDate": "2020-02-18T18:45:16+00:00",
                    "isVisible": false,
                    "lastFetchDate": "2021-03-18T19:50:19+00:00",
                    "latitude": null,
                    "longitude": null,
                    "object": "Address",
                    "stateCode": "OH",
                    "stateName": "OHIO",
                    "streetAddress1": "Suite 1900",
                    "streetAddress2": null,
                    "zip": "44114",
                    "zip4": "1862"
                  },
                  {
                    "city": "Cleveland",
                    "countryCode": "USA",
                    "countryName": "United States of America",
                    "firstFetchDate": "2021-07-21T06:55:39+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2022-06-02T10:44:23+00:00",
                    "latitude": null,
                    "longitude": null,
                    "object": "Address",
                    "stateCode": "OH",
                    "stateName": "OHIO",
                    "streetAddress1": "Suite 1900",
                    "streetAddress2": null,
                    "zip": "44114",
                    "zip4": "1862"
                  }
                ],
                "emailArray": [
                  {
                    "emailId": "jfarnan@westonhurd.com",
                    "firstFetchDate": "2020-02-18T18:45:16+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2022-06-02T10:44:23+00:00",
                    "object": "Email"
                  }
                ],
                "object": "Contact",
                "phoneNumberArray": [
                  {
                    "firstFetchDate": "2021-07-21T06:55:39+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2022-06-02T10:44:23+00:00",
                    "object": "Phone",
                    "phoneNumber": "216-241-6602",
                    "phoneType": "DEFAULT"
                  },
                  {
                    "firstFetchDate": "2020-02-18T18:45:16+00:00",
                    "isVisible": false,
                    "lastFetchDate": "2021-03-18T19:50:19+00:00",
                    "object": "Phone",
                    "phoneNumber": "2162416602",
                    "phoneType": "DEFAULT"
                  },
                  {
                    "firstFetchDate": "2020-02-18T18:45:16+00:00",
                    "isVisible": false,
                    "lastFetchDate": "2021-03-18T19:50:19+00:00",
                    "object": "Phone",
                    "phoneNumber": "2166218369",
                    "phoneType": "FAX"
                  },
                  {
                    "firstFetchDate": "2021-07-21T06:55:39+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2022-06-02T10:44:23+00:00",
                    "object": "Phone",
                    "phoneNumber": "216 621 8369",
                    "phoneType": "OFFICE"
                  }
                ]
              },
              "firstFetchDate": "2020-02-18T18:45:16+00:00",
              "firstName": "John",
              "isVisible": true,
              "lastFetchDate": "2022-06-02T10:44:23+00:00",
              "lastName": "Farnan",
              "middleName": "G",
              "name": "John G Farnan",
              "namePrefix": null,
              "nameSuffix": null,
              "object": "Attorney",
              "partyAttorneyAssociations": {
                "nextPageAPI": null,
                "object": "PartyAttorneyAssociations",
                "pageNumber": 1,
                "partyAttorneyAssociationArray": [
                  {
                    "attorneyId": "ATTYgq556fd02d0597",
                    "isVisible": true,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgq69e96035a83b",
                    "partyId": "PRTYgq9042259f5750"
                  }
                ],
                "totalCount": 1,
                "totalPages": 1
              },
              "partyRoleGroupIdArray": [
                "PTYGBnjxbx6tKNfVEP"
              ],
              "partyRoleIdArray": [
                "PTYR9F4zbteyj7ehmi"
              ],
              "possibleNormAttorneyArray": [
                {
                  "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormJudges?pageNumber=1",
                  "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormLawFirms?pageNumber=1",
                  "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormParties?pageNumber=1",
                  "bestMatch": true,
                  "caseCountAnalyticsByNormAttorneyAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByNormAttorney?pageNumber=1&q=normAttorneyId:NATY11111111111111",
                  "caseCountAnalyticsByOpposingNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByOpposingNormAttorney?pageNumber=1",
                  "confidenceScore": 0.5,
                  "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111",
                  "normAttorneyId": "NATY11111111111111",
                  "normAttorneyName": "ACOSTA S FERNANDO",
                  "object": "PossibleNormAttorney",
                  "scoreConstituents": {
                    "address": "Not_Provided_By_Data_Source",
                    "barId": "Not_Provided_By_Data_Source",
                    "email": "Not_Provided_By_Data_Source",
                    "lawFirm": "Not_Provided_By_Data_Source",
                    "nameSimilarityScore": 0.6,
                    "otherPotentialNormAttorneys": 0,
                    "phone": "Not_Provided_By_Data_Source"
                  }
                }
              ],
              "possibleNormLawFirmArray": [
                {
                  "associatedNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormAttorney?pageNumber=1",
                  "associatedNormJudgeAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormJudges?pageNumber=1",
                  "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormParties?pageNumber=1",
                  "bestMatch": true,
                  "caseCountAnalyticsByNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByNormLawFirm?pageNumber=1",
                  "caseCountAnalyticsByOpposingNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByOpposingNormLawFirm?pageNumber=1",
                  "confidenceScore": 0.66,
                  "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111",
                  "normLawFirmId": "NLAF11111111111111",
                  "normLawFirmName": "MidLand Funding LLC",
                  "object": "PossibleNormLawFirm",
                  "scoreConstituents": {
                    "address": "Not_Provided_By_Data_Source",
                    "email": "Not_Provided_By_Data_Source",
                    "nameSimilarityScore": 0.8,
                    "otherPotentialNormLawFirms": 0,
                    "phone": "Not_Provided_By_Data_Source",
                    "secretaryOfStateId": "Not_Provided_By_Data_Source"
                  },
                  "sourceDetails": {
                    "linkedNormAttorneyIdArray": [
                      "NATY11111111111111"
                    ],
                    "source": "Case_Attorney_Linked_In_Other_Cases"
                  }
                }
              ],
              "sourceAttorneyType": "LEAD ATTORNEY"
            },
            {
              "attorneyId": "ATTYgq76004c992317",
              "attorneyLawFirmArray": [],
              "attorneyType": {
                "attorneyTypeId": "ATYPWXtARwvzu5HLcf",
                "createdDate": "2022-03-28T04:59:12+00:00",
                "name": "Lead Attorney",
                "object": "AttorneyType"
              },
              "barNumber": null,
              "contact": {
                "addressArray": [
                  {
                    "city": "Millersburg",
                    "countryCode": "USA",
                    "countryName": "United States of America",
                    "firstFetchDate": "2021-07-21T06:55:42+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2022-06-02T10:44:27+00:00",
                    "latitude": null,
                    "longitude": null,
                    "object": "Address",
                    "stateCode": "OH",
                    "stateName": "OHIO",
                    "streetAddress1": "209 N. Washington St.",
                    "streetAddress2": null,
                    "zip": "44654",
                    "zip4": null
                  },
                  {
                    "city": "Millersburg",
                    "countryCode": "USA",
                    "countryName": "United States of America",
                    "firstFetchDate": "2020-02-18T18:45:16+00:00",
                    "isVisible": false,
                    "lastFetchDate": "2021-03-18T19:50:19+00:00",
                    "latitude": null,
                    "longitude": null,
                    "object": "Address",
                    "stateCode": "OH",
                    "stateName": "OHIO",
                    "streetAddress1": "209 N. Washington St.",
                    "streetAddress2": null,
                    "zip": "44654",
                    "zip4": null
                  }
                ],
                "emailArray": [
                  {
                    "emailId": "tdw@thewhitelawoffice.com",
                    "firstFetchDate": "2020-02-18T18:45:16+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2022-06-02T10:44:27+00:00",
                    "object": "Email"
                  }
                ],
                "object": "Contact",
                "phoneNumberArray": [
                  {
                    "firstFetchDate": "2021-07-21T06:55:42+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2022-06-02T10:44:27+00:00",
                    "object": "Phone",
                    "phoneNumber": "330-231-1195 ext. 5",
                    "phoneType": "DEFAULT"
                  },
                  {
                    "firstFetchDate": "2020-02-18T18:45:16+00:00",
                    "isVisible": false,
                    "lastFetchDate": "2021-03-18T19:50:19+00:00",
                    "object": "Phone",
                    "phoneNumber": "3302311195",
                    "phoneType": "DEFAULT"
                  },
                  {
                    "firstFetchDate": "2020-02-18T18:45:16+00:00",
                    "isVisible": false,
                    "lastFetchDate": "2021-03-18T19:50:19+00:00",
                    "object": "Phone",
                    "phoneNumber": "1888711921",
                    "phoneType": "FAX"
                  },
                  {
                    "firstFetchDate": "2021-07-21T06:55:42+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2022-06-02T10:44:27+00:00",
                    "object": "Phone",
                    "phoneNumber": "1-888-711-9210",
                    "phoneType": "OFFICE"
                  }
                ]
              },
              "firstFetchDate": "2020-02-18T18:45:16+00:00",
              "firstName": "Thomas",
              "isVisible": true,
              "lastFetchDate": "2022-06-02T10:44:27+00:00",
              "lastName": "White",
              "middleName": "D",
              "name": "Thomas D. White",
              "namePrefix": null,
              "nameSuffix": null,
              "object": "Attorney",
              "partyAttorneyAssociations": {
                "nextPageAPI": null,
                "object": "PartyAttorneyAssociations",
                "pageNumber": 1,
                "partyAttorneyAssociationArray": [
                  {
                    "attorneyId": "ATTYgq76004c992317",
                    "isVisible": true,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgqf83d4f451c59",
                    "partyId": "PRTYgq0563a550664f"
                  },
                  {
                    "attorneyId": "ATTYgq76004c992317",
                    "isVisible": false,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgqca82ced7e71c",
                    "partyId": "PRTYgq2bd25e724c75"
                  },
                  {
                    "attorneyId": "ATTYgq76004c992317",
                    "isVisible": true,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgq38281f33e9aa",
                    "partyId": "PRTYgq831bc25f4892"
                  },
                  {
                    "attorneyId": "ATTYgq76004c992317",
                    "isVisible": true,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgqe1216d006542",
                    "partyId": "PRTYgq0dbe0fdaf91e"
                  },
                  {
                    "attorneyId": "ATTYgq76004c992317",
                    "isVisible": false,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgqe2230bebe513",
                    "partyId": "PRTYgqe80725718022"
                  },
                  {
                    "attorneyId": "ATTYgq76004c992317",
                    "isVisible": true,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgq7f968ba8312d",
                    "partyId": "PRTYgqe6e2ee3413cf"
                  },
                  {
                    "attorneyId": "ATTYgq76004c992317",
                    "isVisible": false,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgq60e86c5d24d1",
                    "partyId": "PRTYgq083d73a0307b"
                  }
                ],
                "totalCount": 7,
                "totalPages": 1
              },
              "partyRoleGroupIdArray": [
                "PTYGBnjxbx6tKNfVEP"
              ],
              "partyRoleIdArray": [
                "PTYR9F4zbteyj7ehmi"
              ],
              "possibleNormAttorneyArray": [
                {
                  "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormJudges?pageNumber=1",
                  "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormLawFirms?pageNumber=1",
                  "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormParties?pageNumber=1",
                  "bestMatch": true,
                  "caseCountAnalyticsByNormAttorneyAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByNormAttorney?pageNumber=1&q=normAttorneyId:NATY11111111111111",
                  "caseCountAnalyticsByOpposingNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByOpposingNormAttorney?pageNumber=1",
                  "confidenceScore": 0.5,
                  "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111",
                  "normAttorneyId": "NATY11111111111111",
                  "normAttorneyName": "ACOSTA S FERNANDO",
                  "object": "PossibleNormAttorney",
                  "scoreConstituents": {
                    "address": "Not_Provided_By_Data_Source",
                    "barId": "Not_Provided_By_Data_Source",
                    "email": "Not_Provided_By_Data_Source",
                    "lawFirm": "Not_Provided_By_Data_Source",
                    "nameSimilarityScore": 0.6,
                    "otherPotentialNormAttorneys": 0,
                    "phone": "Not_Provided_By_Data_Source"
                  }
                }
              ],
              "possibleNormLawFirmArray": [
                {
                  "associatedNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormAttorney?pageNumber=1",
                  "associatedNormJudgeAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormJudges?pageNumber=1",
                  "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormParties?pageNumber=1",
                  "bestMatch": true,
                  "caseCountAnalyticsByNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByNormLawFirm?pageNumber=1",
                  "caseCountAnalyticsByOpposingNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByOpposingNormLawFirm?pageNumber=1",
                  "confidenceScore": 0.66,
                  "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111",
                  "normLawFirmId": "NLAF11111111111111",
                  "normLawFirmName": "MidLand Funding LLC",
                  "object": "PossibleNormLawFirm",
                  "scoreConstituents": {
                    "address": "Not_Provided_By_Data_Source",
                    "email": "Not_Provided_By_Data_Source",
                    "nameSimilarityScore": 0.8,
                    "otherPotentialNormLawFirms": 0,
                    "phone": "Not_Provided_By_Data_Source",
                    "secretaryOfStateId": "Not_Provided_By_Data_Source"
                  },
                  "sourceDetails": {
                    "linkedNormAttorneyIdArray": [
                      "NATY11111111111111"
                    ],
                    "source": "Case_Attorney_Linked_In_Other_Cases"
                  }
                }
              ],
              "sourceAttorneyType": "LEAD ATTORNEY"
            },
            {
              "attorneyId": "ATTYgq40f60a2b7146",
              "attorneyLawFirmArray": [
                {
                  "attorneyLawFirmId": "ALFIgq212f0f6146c3",
                  "firstFetchDate": "2020-02-18T18:45:10+00:00",
                  "isVisible": true,
                  "lastFetchDate": "2022-06-02T10:44:28+00:00",
                  "name": "Crabbe Brown & James - 2",
                  "object": "AttorneyLawFirm"
                }
              ],
              "attorneyType": {
                "attorneyTypeId": "ATYPRPk3LNobYmtqwF",
                "createdDate": "2022-03-28T04:59:12+00:00",
                "name": "Attorney",
                "object": "AttorneyType"
              },
              "barNumber": null,
              "contact": {
                "addressArray": [
                  {
                    "city": "Columbus",
                    "countryCode": "USA",
                    "countryName": "United States of America",
                    "firstFetchDate": "2021-07-21T06:55:43+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2022-06-02T10:44:28+00:00",
                    "latitude": null,
                    "longitude": null,
                    "object": "Address",
                    "stateCode": "OH",
                    "stateName": "OHIO",
                    "streetAddress1": "500 S Front Street",
                    "streetAddress2": "Suite 1200",
                    "zip": "43215",
                    "zip4": null
                  },
                  {
                    "city": "Columbus",
                    "countryCode": "USA",
                    "countryName": "United States of America",
                    "firstFetchDate": "2020-02-18T18:45:16+00:00",
                    "isVisible": false,
                    "lastFetchDate": "2021-03-18T19:50:19+00:00",
                    "latitude": null,
                    "longitude": null,
                    "object": "Address",
                    "stateCode": "OH",
                    "stateName": "OHIO",
                    "streetAddress1": "500 S Front Street, Suite 1200",
                    "streetAddress2": null,
                    "zip": "43215",
                    "zip4": null
                  }
                ],
                "emailArray": [
                  {
                    "emailId": "ljames@cbjlawyers.com",
                    "firstFetchDate": "2020-02-18T18:45:16+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2022-06-02T10:44:28+00:00",
                    "object": "Email"
                  }
                ],
                "object": "Contact",
                "phoneNumberArray": [
                  {
                    "firstFetchDate": "2021-07-21T06:55:43+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2022-06-02T10:44:28+00:00",
                    "object": "Phone",
                    "phoneNumber": "614-228-5511",
                    "phoneType": "DEFAULT"
                  },
                  {
                    "firstFetchDate": "2020-02-18T18:45:16+00:00",
                    "isVisible": false,
                    "lastFetchDate": "2021-03-18T19:50:19+00:00",
                    "object": "Phone",
                    "phoneNumber": "6142285511",
                    "phoneType": "DEFAULT"
                  }
                ]
              },
              "firstFetchDate": "2020-02-18T18:45:16+00:00",
              "firstName": "Larry",
              "isVisible": true,
              "lastFetchDate": "2022-06-02T10:44:28+00:00",
              "lastName": "James",
              "middleName": "Holliday",
              "name": "Larry Holliday James",
              "namePrefix": null,
              "nameSuffix": null,
              "object": "Attorney",
              "partyAttorneyAssociations": {
                "nextPageAPI": null,
                "object": "PartyAttorneyAssociations",
                "pageNumber": 1,
                "partyAttorneyAssociationArray": [
                  {
                    "attorneyId": "ATTYgq40f60a2b7146",
                    "isVisible": true,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgqb4e1669580a8",
                    "partyId": "PRTYgq113e208e0670"
                  },
                  {
                    "attorneyId": "ATTYgq40f60a2b7146",
                    "isVisible": true,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgqb85e69a777d8",
                    "partyId": "PRTYgqffd5af24d709"
                  }
                ],
                "totalCount": 2,
                "totalPages": 1
              },
              "partyRoleGroupIdArray": [
                "PTYGBnjxbx6tKNfVEP"
              ],
              "partyRoleIdArray": [
                "PTYR9F4zbteyj7ehmi"
              ],
              "possibleNormAttorneyArray": [
                {
                  "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormJudges?pageNumber=1",
                  "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormLawFirms?pageNumber=1",
                  "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormParties?pageNumber=1",
                  "bestMatch": true,
                  "caseCountAnalyticsByNormAttorneyAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByNormAttorney?pageNumber=1&q=normAttorneyId:NATY11111111111111",
                  "caseCountAnalyticsByOpposingNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByOpposingNormAttorney?pageNumber=1",
                  "confidenceScore": 0.5,
                  "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111",
                  "normAttorneyId": "NATY11111111111111",
                  "normAttorneyName": "ACOSTA S FERNANDO",
                  "object": "PossibleNormAttorney",
                  "scoreConstituents": {
                    "address": "Not_Provided_By_Data_Source",
                    "barId": "Not_Provided_By_Data_Source",
                    "email": "Not_Provided_By_Data_Source",
                    "lawFirm": "Not_Provided_By_Data_Source",
                    "nameSimilarityScore": 0.6,
                    "otherPotentialNormAttorneys": 0,
                    "phone": "Not_Provided_By_Data_Source"
                  }
                }
              ],
              "possibleNormLawFirmArray": [
                {
                  "associatedNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormAttorney?pageNumber=1",
                  "associatedNormJudgeAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormJudges?pageNumber=1",
                  "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormParties?pageNumber=1",
                  "bestMatch": true,
                  "caseCountAnalyticsByNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByNormLawFirm?pageNumber=1",
                  "caseCountAnalyticsByOpposingNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByOpposingNormLawFirm?pageNumber=1",
                  "confidenceScore": 0.66,
                  "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111",
                  "normLawFirmId": "NLAF11111111111111",
                  "normLawFirmName": "MidLand Funding LLC",
                  "object": "PossibleNormLawFirm",
                  "scoreConstituents": {
                    "address": "Not_Provided_By_Data_Source",
                    "email": "Not_Provided_By_Data_Source",
                    "nameSimilarityScore": 0.8,
                    "otherPotentialNormLawFirms": 0,
                    "phone": "Not_Provided_By_Data_Source",
                    "secretaryOfStateId": "Not_Provided_By_Data_Source"
                  },
                  "sourceDetails": {
                    "linkedNormAttorneyIdArray": [
                      "NATY11111111111111"
                    ],
                    "source": "Case_Attorney_Linked_In_Other_Cases"
                  }
                }
              ],
              "sourceAttorneyType": "ATTORNEY"
            },
            {
              "attorneyId": "ATTYgq6f54a343168d",
              "attorneyLawFirmArray": [
                {
                  "attorneyLawFirmId": "ALFIgqde1e615bf9f0",
                  "firstFetchDate": "2020-02-18T18:45:10+00:00",
                  "isVisible": true,
                  "lastFetchDate": "2022-06-02T10:44:29+00:00",
                  "name": "Roetzel & Andress LPA",
                  "object": "AttorneyLawFirm"
                }
              ],
              "attorneyType": {
                "attorneyTypeId": "ATYPRPk3LNobYmtqwF",
                "createdDate": "2022-03-28T04:59:12+00:00",
                "name": "Attorney",
                "object": "AttorneyType"
              },
              "barNumber": null,
              "contact": {
                "addressArray": [
                  {
                    "city": "Columbus",
                    "countryCode": "USA",
                    "countryName": "United States of America",
                    "firstFetchDate": "2021-07-21T06:55:43+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2022-06-02T10:44:29+00:00",
                    "latitude": null,
                    "longitude": null,
                    "object": "Address",
                    "stateCode": "OH",
                    "stateName": "OHIO",
                    "streetAddress1": "41 South High Street, 21st Floor",
                    "streetAddress2": null,
                    "zip": "43215",
                    "zip4": null
                  },
                  {
                    "city": "Columbus",
                    "countryCode": "USA",
                    "countryName": "United States of America",
                    "firstFetchDate": "2020-02-18T18:45:16+00:00",
                    "isVisible": false,
                    "lastFetchDate": "2021-03-18T19:50:19+00:00",
                    "latitude": null,
                    "longitude": null,
                    "object": "Address",
                    "stateCode": "OH",
                    "stateName": "OHIO",
                    "streetAddress1": "41 South High Street, 21st Floor",
                    "streetAddress2": null,
                    "zip": "43215",
                    "zip4": null
                  }
                ],
                "emailArray": [
                  {
                    "emailId": "jyoung@ralaw.com",
                    "firstFetchDate": "2020-02-18T18:45:16+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2022-06-02T10:44:29+00:00",
                    "object": "Email"
                  }
                ],
                "object": "Contact",
                "phoneNumberArray": [
                  {
                    "firstFetchDate": "2020-02-18T18:45:16+00:00",
                    "isVisible": false,
                    "lastFetchDate": "2021-03-18T19:50:19+00:00",
                    "object": "Phone",
                    "phoneNumber": "6144639792",
                    "phoneType": "FAX"
                  },
                  {
                    "firstFetchDate": "2021-07-21T06:55:43+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2022-06-02T10:44:29+00:00",
                    "object": "Phone",
                    "phoneNumber": "614-463-9792",
                    "phoneType": "OFFICE"
                  },
                  {
                    "firstFetchDate": "2021-07-21T06:55:43+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2022-06-02T10:44:29+00:00",
                    "object": "Phone",
                    "phoneNumber": "614-723-2030",
                    "phoneType": "DEFAULT"
                  },
                  {
                    "firstFetchDate": "2020-02-18T18:45:16+00:00",
                    "isVisible": false,
                    "lastFetchDate": "2021-03-18T19:50:19+00:00",
                    "object": "Phone",
                    "phoneNumber": "6147232030",
                    "phoneType": "DEFAULT"
                  }
                ]
              },
              "firstFetchDate": "2020-02-18T18:45:16+00:00",
              "firstName": "Jeremy",
              "isVisible": true,
              "lastFetchDate": "2022-06-02T10:44:29+00:00",
              "lastName": "Young",
              "middleName": null,
              "name": "Jeremy Young",
              "namePrefix": null,
              "nameSuffix": null,
              "object": "Attorney",
              "partyAttorneyAssociations": {
                "nextPageAPI": null,
                "object": "PartyAttorneyAssociations",
                "pageNumber": 1,
                "partyAttorneyAssociationArray": [
                  {
                    "attorneyId": "ATTYgq6f54a343168d",
                    "isVisible": true,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgq2fc2aacd4a81",
                    "partyId": "PRTYgq4bc9cbcbd704"
                  },
                  {
                    "attorneyId": "ATTYgq6f54a343168d",
                    "isVisible": true,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgqcfd1b3ea655a",
                    "partyId": "PRTYgq1c0e34d7cc94"
                  },
                  {
                    "attorneyId": "ATTYgq6f54a343168d",
                    "isVisible": true,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgq6adff09947fd",
                    "partyId": "PRTYgq3635bd6565ec"
                  },
                  {
                    "attorneyId": "ATTYgq6f54a343168d",
                    "isVisible": true,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgqf88a90c7b3f0",
                    "partyId": "PRTYgq7d0fe5755dab"
                  },
                  {
                    "attorneyId": "ATTYgq6f54a343168d",
                    "isVisible": true,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgqe93690724579",
                    "partyId": "PRTYgq3fcf5345c807"
                  },
                  {
                    "attorneyId": "ATTYgq6f54a343168d",
                    "isVisible": true,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgqab526973842e",
                    "partyId": "PRTYgqc8672f68f2db"
                  },
                  {
                    "attorneyId": "ATTYgq6f54a343168d",
                    "isVisible": true,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgqf09474288702",
                    "partyId": "PRTYgqea6a03b921f3"
                  },
                  {
                    "attorneyId": "ATTYgq6f54a343168d",
                    "isVisible": false,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgqfba52f39f636",
                    "partyId": "PRTYgq398dcb252369"
                  },
                  {
                    "attorneyId": "ATTYgq6f54a343168d",
                    "isVisible": false,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgqa4c7b6328cc0",
                    "partyId": "PRTYgq867887f161b3"
                  },
                  {
                    "attorneyId": "ATTYgq6f54a343168d",
                    "isVisible": true,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgq432e1b3ac0a7",
                    "partyId": "PRTYgq99a750dec743"
                  },
                  {
                    "attorneyId": "ATTYgq6f54a343168d",
                    "isVisible": true,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgq3598d9676440",
                    "partyId": "PRTYgq3f3d7a9c369b"
                  },
                  {
                    "attorneyId": "ATTYgq6f54a343168d",
                    "isVisible": false,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgq6660a5816d45",
                    "partyId": "PRTYgqe65df68d5551"
                  },
                  {
                    "attorneyId": "ATTYgq6f54a343168d",
                    "isVisible": true,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgqe4b03c9a291e",
                    "partyId": "PRTYgqd8a52610d66b"
                  },
                  {
                    "attorneyId": "ATTYgq6f54a343168d",
                    "isVisible": true,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgq47c171e42b49",
                    "partyId": "PRTYgq74ab6a71e299"
                  },
                  {
                    "attorneyId": "ATTYgq6f54a343168d",
                    "isVisible": true,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgq477c65294186",
                    "partyId": "PRTYgqb1f19c340199"
                  },
                  {
                    "attorneyId": "ATTYgq6f54a343168d",
                    "isVisible": true,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgq4e828b1a4640",
                    "partyId": "PRTYgq841adc3e06c3"
                  },
                  {
                    "attorneyId": "ATTYgq6f54a343168d",
                    "isVisible": true,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgq8fbb8a6d50b4",
                    "partyId": "PRTYgq95776890f245"
                  },
                  {
                    "attorneyId": "ATTYgq6f54a343168d",
                    "isVisible": false,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgq765fa390a5bd",
                    "partyId": "PRTYgq018f48538fea"
                  },
                  {
                    "attorneyId": "ATTYgq6f54a343168d",
                    "isVisible": false,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgqb55f9d51b150",
                    "partyId": "PRTYgqaef701210079"
                  },
                  {
                    "attorneyId": "ATTYgq6f54a343168d",
                    "isVisible": true,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgqf59d6b6fe253",
                    "partyId": "PRTYgq6e832fa71f81"
                  },
                  {
                    "attorneyId": "ATTYgq6f54a343168d",
                    "isVisible": true,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgq989e370f6c44",
                    "partyId": "PRTYgq4ea7e1a93320"
                  },
                  {
                    "attorneyId": "ATTYgq6f54a343168d",
                    "isVisible": true,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgq7e6201133be6",
                    "partyId": "PRTYgq2b0b251c593a"
                  },
                  {
                    "attorneyId": "ATTYgq6f54a343168d",
                    "isVisible": true,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgq514f7837c59f",
                    "partyId": "PRTYgq0f77468e3104"
                  },
                  {
                    "attorneyId": "ATTYgq6f54a343168d",
                    "isVisible": true,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgq6f47a33bcf34",
                    "partyId": "PRTYgqa70bf711987a"
                  }
                ],
                "totalCount": 24,
                "totalPages": 1
              },
              "partyRoleGroupIdArray": [
                "PTYGBnjxbx6tKNfVEP"
              ],
              "partyRoleIdArray": [
                "PTYR9F4zbteyj7ehmi"
              ],
              "possibleNormAttorneyArray": [
                {
                  "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormJudges?pageNumber=1",
                  "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormLawFirms?pageNumber=1",
                  "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormParties?pageNumber=1",
                  "bestMatch": true,
                  "caseCountAnalyticsByNormAttorneyAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByNormAttorney?pageNumber=1&q=normAttorneyId:NATY11111111111111",
                  "caseCountAnalyticsByOpposingNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByOpposingNormAttorney?pageNumber=1",
                  "confidenceScore": 0.5,
                  "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111",
                  "normAttorneyId": "NATY11111111111111",
                  "normAttorneyName": "ACOSTA S FERNANDO",
                  "object": "PossibleNormAttorney",
                  "scoreConstituents": {
                    "address": "Not_Provided_By_Data_Source",
                    "barId": "Not_Provided_By_Data_Source",
                    "email": "Not_Provided_By_Data_Source",
                    "lawFirm": "Not_Provided_By_Data_Source",
                    "nameSimilarityScore": 0.6,
                    "otherPotentialNormAttorneys": 0,
                    "phone": "Not_Provided_By_Data_Source"
                  }
                }
              ],
              "possibleNormLawFirmArray": [
                {
                  "associatedNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormAttorney?pageNumber=1",
                  "associatedNormJudgeAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormJudges?pageNumber=1",
                  "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormParties?pageNumber=1",
                  "bestMatch": true,
                  "caseCountAnalyticsByNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByNormLawFirm?pageNumber=1",
                  "caseCountAnalyticsByOpposingNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByOpposingNormLawFirm?pageNumber=1",
                  "confidenceScore": 0.66,
                  "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111",
                  "normLawFirmId": "NLAF11111111111111",
                  "normLawFirmName": "MidLand Funding LLC",
                  "object": "PossibleNormLawFirm",
                  "scoreConstituents": {
                    "address": "Not_Provided_By_Data_Source",
                    "email": "Not_Provided_By_Data_Source",
                    "nameSimilarityScore": 0.8,
                    "otherPotentialNormLawFirms": 0,
                    "phone": "Not_Provided_By_Data_Source",
                    "secretaryOfStateId": "Not_Provided_By_Data_Source"
                  },
                  "sourceDetails": {
                    "linkedNormAttorneyIdArray": [
                      "NATY11111111111111"
                    ],
                    "source": "Case_Attorney_Linked_In_Other_Cases"
                  }
                }
              ],
              "sourceAttorneyType": "ATTORNEY"
            },
            {
              "attorneyId": "ATTYgqcae2a57ab332",
              "attorneyLawFirmArray": [
                {
                  "attorneyLawFirmId": "ALFIgqb1561393d6e0",
                  "firstFetchDate": "2020-02-18T18:45:08+00:00",
                  "isVisible": true,
                  "lastFetchDate": "2022-06-02T10:44:23+00:00",
                  "name": "Frost Brown Todd LLC",
                  "object": "AttorneyLawFirm"
                }
              ],
              "attorneyType": {
                "attorneyTypeId": "ATYPWXtARwvzu5HLcf",
                "createdDate": "2022-03-28T04:59:12+00:00",
                "name": "Lead Attorney",
                "object": "AttorneyType"
              },
              "barNumber": null,
              "contact": {
                "addressArray": [
                  {
                    "city": "Columbus",
                    "countryCode": "USA",
                    "countryName": "United States of America",
                    "firstFetchDate": "2021-07-21T06:55:39+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2022-06-02T10:44:23+00:00",
                    "latitude": null,
                    "longitude": null,
                    "object": "Address",
                    "stateCode": "OH",
                    "stateName": "OHIO",
                    "streetAddress1": "One Columbus, Suite 2300",
                    "streetAddress2": "10 West Broad Street",
                    "zip": "43215",
                    "zip4": null
                  },
                  {
                    "city": "Columbus",
                    "countryCode": "USA",
                    "countryName": "United States of America",
                    "firstFetchDate": "2020-02-18T18:45:16+00:00",
                    "isVisible": false,
                    "lastFetchDate": "2021-03-18T19:50:19+00:00",
                    "latitude": null,
                    "longitude": null,
                    "object": "Address",
                    "stateCode": "OH",
                    "stateName": "OHIO",
                    "streetAddress1": "One Columbus, Suite 2300, 10 West Broad Street",
                    "streetAddress2": null,
                    "zip": "43215",
                    "zip4": null
                  }
                ],
                "emailArray": [
                  {
                    "emailId": "jgrayem@fbtlaw.com",
                    "firstFetchDate": "2020-02-18T18:45:16+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2022-06-02T10:44:23+00:00",
                    "object": "Email"
                  }
                ],
                "object": "Contact",
                "phoneNumberArray": [
                  {
                    "firstFetchDate": "2021-07-21T06:55:39+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2022-06-02T10:44:23+00:00",
                    "object": "Phone",
                    "phoneNumber": "614-464-1737",
                    "phoneType": "OFFICE"
                  },
                  {
                    "firstFetchDate": "2020-02-18T18:45:16+00:00",
                    "isVisible": false,
                    "lastFetchDate": "2021-03-18T19:50:19+00:00",
                    "object": "Phone",
                    "phoneNumber": "6145597284",
                    "phoneType": "DEFAULT"
                  },
                  {
                    "firstFetchDate": "2020-02-18T18:45:16+00:00",
                    "isVisible": false,
                    "lastFetchDate": "2021-03-18T19:50:19+00:00",
                    "object": "Phone",
                    "phoneNumber": "6144641737",
                    "phoneType": "FAX"
                  },
                  {
                    "firstFetchDate": "2021-07-21T06:55:39+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2022-06-02T10:44:23+00:00",
                    "object": "Phone",
                    "phoneNumber": "614-559-7284",
                    "phoneType": "DEFAULT"
                  }
                ]
              },
              "firstFetchDate": "2020-02-18T18:45:16+00:00",
              "firstName": "Jeremy",
              "isVisible": true,
              "lastFetchDate": "2022-06-02T10:44:23+00:00",
              "lastName": "Grayem",
              "middleName": "M",
              "name": "Jeremy M Grayem",
              "namePrefix": null,
              "nameSuffix": null,
              "object": "Attorney",
              "partyAttorneyAssociations": {
                "nextPageAPI": null,
                "object": "PartyAttorneyAssociations",
                "pageNumber": 1,
                "partyAttorneyAssociationArray": [
                  {
                    "attorneyId": "ATTYgqcae2a57ab332",
                    "isVisible": false,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgqa694e5426a44",
                    "partyId": "PRTYgq0e5c67d1fe56"
                  }
                ],
                "totalCount": 1,
                "totalPages": 1
              },
              "partyRoleGroupIdArray": [
                "PTYGBnjxbx6tKNfVEP"
              ],
              "partyRoleIdArray": [
                "PTYR9F4zbteyj7ehmi"
              ],
              "possibleNormAttorneyArray": [
                {
                  "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormJudges?pageNumber=1",
                  "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormLawFirms?pageNumber=1",
                  "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormParties?pageNumber=1",
                  "bestMatch": true,
                  "caseCountAnalyticsByNormAttorneyAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByNormAttorney?pageNumber=1&q=normAttorneyId:NATY11111111111111",
                  "caseCountAnalyticsByOpposingNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByOpposingNormAttorney?pageNumber=1",
                  "confidenceScore": 0.5,
                  "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111",
                  "normAttorneyId": "NATY11111111111111",
                  "normAttorneyName": "ACOSTA S FERNANDO",
                  "object": "PossibleNormAttorney",
                  "scoreConstituents": {
                    "address": "Not_Provided_By_Data_Source",
                    "barId": "Not_Provided_By_Data_Source",
                    "email": "Not_Provided_By_Data_Source",
                    "lawFirm": "Not_Provided_By_Data_Source",
                    "nameSimilarityScore": 0.6,
                    "otherPotentialNormAttorneys": 0,
                    "phone": "Not_Provided_By_Data_Source"
                  }
                }
              ],
              "possibleNormLawFirmArray": [
                {
                  "associatedNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormAttorney?pageNumber=1",
                  "associatedNormJudgeAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormJudges?pageNumber=1",
                  "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormParties?pageNumber=1",
                  "bestMatch": true,
                  "caseCountAnalyticsByNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByNormLawFirm?pageNumber=1",
                  "caseCountAnalyticsByOpposingNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByOpposingNormLawFirm?pageNumber=1",
                  "confidenceScore": 0.66,
                  "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111",
                  "normLawFirmId": "NLAF11111111111111",
                  "normLawFirmName": "MidLand Funding LLC",
                  "object": "PossibleNormLawFirm",
                  "scoreConstituents": {
                    "address": "Not_Provided_By_Data_Source",
                    "email": "Not_Provided_By_Data_Source",
                    "nameSimilarityScore": 0.8,
                    "otherPotentialNormLawFirms": 0,
                    "phone": "Not_Provided_By_Data_Source",
                    "secretaryOfStateId": "Not_Provided_By_Data_Source"
                  },
                  "sourceDetails": {
                    "linkedNormAttorneyIdArray": [
                      "NATY11111111111111"
                    ],
                    "source": "Case_Attorney_Linked_In_Other_Cases"
                  }
                }
              ],
              "sourceAttorneyType": "LEAD ATTORNEY"
            },
            {
              "attorneyId": "ATTYgqcbfa287194fa",
              "attorneyLawFirmArray": [
                {
                  "attorneyLawFirmId": "ALFIgq69a95ef0ee62",
                  "firstFetchDate": "2020-02-18T18:45:09+00:00",
                  "isVisible": true,
                  "lastFetchDate": "2022-06-02T10:44:27+00:00",
                  "name": "Kimble Company",
                  "object": "AttorneyLawFirm"
                }
              ],
              "attorneyType": {
                "attorneyTypeId": "ATYPWXtARwvzu5HLcf",
                "createdDate": "2022-03-28T04:59:12+00:00",
                "name": "Lead Attorney",
                "object": "AttorneyType"
              },
              "barNumber": null,
              "contact": {
                "addressArray": [
                  {
                    "city": "Dover",
                    "countryCode": "USA",
                    "countryName": "United States of America",
                    "firstFetchDate": "2021-07-21T06:55:42+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2022-06-02T10:44:27+00:00",
                    "latitude": null,
                    "longitude": null,
                    "object": "Address",
                    "stateCode": "OH",
                    "stateName": "OHIO",
                    "streetAddress1": "3596 SR 39, NW",
                    "streetAddress2": null,
                    "zip": "44622",
                    "zip4": null
                  },
                  {
                    "city": "Dover",
                    "countryCode": "USA",
                    "countryName": "United States of America",
                    "firstFetchDate": "2020-02-18T18:45:16+00:00",
                    "isVisible": false,
                    "lastFetchDate": "2021-03-18T19:50:19+00:00",
                    "latitude": null,
                    "longitude": null,
                    "object": "Address",
                    "stateCode": "OH",
                    "stateName": "OHIO",
                    "streetAddress1": "3596 SR 39, NW",
                    "streetAddress2": null,
                    "zip": "44622",
                    "zip4": null
                  }
                ],
                "emailArray": [
                  {
                    "emailId": "nvaughan@kimblecompanies.com",
                    "firstFetchDate": "2020-02-18T18:45:16+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2022-06-02T10:44:27+00:00",
                    "object": "Email"
                  }
                ],
                "object": "Contact",
                "phoneNumberArray": [
                  {
                    "firstFetchDate": "2021-07-21T06:55:42+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2022-06-02T10:44:27+00:00",
                    "object": "Phone",
                    "phoneNumber": "330-365-3090",
                    "phoneType": "OFFICE"
                  },
                  {
                    "firstFetchDate": "2021-07-21T06:55:42+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2022-06-02T10:44:27+00:00",
                    "object": "Phone",
                    "phoneNumber": "330-343-1226",
                    "phoneType": "DEFAULT"
                  },
                  {
                    "firstFetchDate": "2020-02-18T18:45:16+00:00",
                    "isVisible": false,
                    "lastFetchDate": "2021-03-18T19:50:19+00:00",
                    "object": "Phone",
                    "phoneNumber": "3303431226",
                    "phoneType": "DEFAULT"
                  },
                  {
                    "firstFetchDate": "2020-02-18T18:45:16+00:00",
                    "isVisible": false,
                    "lastFetchDate": "2021-03-18T19:50:19+00:00",
                    "object": "Phone",
                    "phoneNumber": "3303653090",
                    "phoneType": "FAX"
                  }
                ]
              },
              "firstFetchDate": "2020-02-18T18:45:16+00:00",
              "firstName": "Nathan",
              "isVisible": true,
              "lastFetchDate": "2022-06-02T10:44:27+00:00",
              "lastName": "Vaughan",
              "middleName": "D",
              "name": "Nathan D Vaughan",
              "namePrefix": null,
              "nameSuffix": null,
              "object": "Attorney",
              "partyAttorneyAssociations": {
                "nextPageAPI": null,
                "object": "PartyAttorneyAssociations",
                "pageNumber": 1,
                "partyAttorneyAssociationArray": [
                  {
                    "attorneyId": "ATTYgqcbfa287194fa",
                    "isVisible": false,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgqa3a274b3c39a",
                    "partyId": "PRTYgq682f36c1a7e6"
                  }
                ],
                "totalCount": 1,
                "totalPages": 1
              },
              "partyRoleGroupIdArray": [
                "PTYGBnjxbx6tKNfVEP"
              ],
              "partyRoleIdArray": [
                "PTYR9F4zbteyj7ehmi"
              ],
              "possibleNormAttorneyArray": [
                {
                  "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormJudges?pageNumber=1",
                  "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormLawFirms?pageNumber=1",
                  "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormParties?pageNumber=1",
                  "bestMatch": true,
                  "caseCountAnalyticsByNormAttorneyAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByNormAttorney?pageNumber=1&q=normAttorneyId:NATY11111111111111",
                  "caseCountAnalyticsByOpposingNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByOpposingNormAttorney?pageNumber=1",
                  "confidenceScore": 0.5,
                  "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111",
                  "normAttorneyId": "NATY11111111111111",
                  "normAttorneyName": "ACOSTA S FERNANDO",
                  "object": "PossibleNormAttorney",
                  "scoreConstituents": {
                    "address": "Not_Provided_By_Data_Source",
                    "barId": "Not_Provided_By_Data_Source",
                    "email": "Not_Provided_By_Data_Source",
                    "lawFirm": "Not_Provided_By_Data_Source",
                    "nameSimilarityScore": 0.6,
                    "otherPotentialNormAttorneys": 0,
                    "phone": "Not_Provided_By_Data_Source"
                  }
                }
              ],
              "possibleNormLawFirmArray": [
                {
                  "associatedNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormAttorney?pageNumber=1",
                  "associatedNormJudgeAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormJudges?pageNumber=1",
                  "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormParties?pageNumber=1",
                  "bestMatch": true,
                  "caseCountAnalyticsByNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByNormLawFirm?pageNumber=1",
                  "caseCountAnalyticsByOpposingNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByOpposingNormLawFirm?pageNumber=1",
                  "confidenceScore": 0.66,
                  "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111",
                  "normLawFirmId": "NLAF11111111111111",
                  "normLawFirmName": "MidLand Funding LLC",
                  "object": "PossibleNormLawFirm",
                  "scoreConstituents": {
                    "address": "Not_Provided_By_Data_Source",
                    "email": "Not_Provided_By_Data_Source",
                    "nameSimilarityScore": 0.8,
                    "otherPotentialNormLawFirms": 0,
                    "phone": "Not_Provided_By_Data_Source",
                    "secretaryOfStateId": "Not_Provided_By_Data_Source"
                  },
                  "sourceDetails": {
                    "linkedNormAttorneyIdArray": [
                      "NATY11111111111111"
                    ],
                    "source": "Case_Attorney_Linked_In_Other_Cases"
                  }
                }
              ],
              "sourceAttorneyType": "LEAD ATTORNEY"
            },
            {
              "attorneyId": "ATTYgqaafa465b1891",
              "attorneyLawFirmArray": [
                {
                  "attorneyLawFirmId": "ALFIgq058507bf4465",
                  "firstFetchDate": "2020-03-17T19:37:10+00:00",
                  "isVisible": true,
                  "lastFetchDate": "2022-06-02T10:44:24+00:00",
                  "name": "Bricker and Eckler LLP",
                  "object": "AttorneyLawFirm"
                }
              ],
              "attorneyType": {
                "attorneyTypeId": "ATYPWXtARwvzu5HLcf",
                "createdDate": "2022-03-28T04:59:12+00:00",
                "name": "Lead Attorney",
                "object": "AttorneyType"
              },
              "barNumber": null,
              "contact": {
                "addressArray": [
                  {
                    "city": "Columbus",
                    "countryCode": "USA",
                    "countryName": "United States of America",
                    "firstFetchDate": "2021-07-21T06:55:40+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2022-06-02T10:44:24+00:00",
                    "latitude": null,
                    "longitude": null,
                    "object": "Address",
                    "stateCode": "OH",
                    "stateName": "OHIO",
                    "streetAddress1": "100 S. 3rd Street",
                    "streetAddress2": null,
                    "zip": "43215",
                    "zip4": null
                  },
                  {
                    "city": "Columbus",
                    "countryCode": "USA",
                    "countryName": "United States of America",
                    "firstFetchDate": "2020-02-18T18:45:16+00:00",
                    "isVisible": false,
                    "lastFetchDate": "2021-03-18T19:50:20+00:00",
                    "latitude": null,
                    "longitude": null,
                    "object": "Address",
                    "stateCode": "OH",
                    "stateName": "OHIO",
                    "streetAddress1": "100 S. 3rd Street",
                    "streetAddress2": null,
                    "zip": "43215",
                    "zip4": null
                  }
                ],
                "emailArray": [
                  {
                    "emailId": "kherrnstein@bricker.com",
                    "firstFetchDate": "2020-02-18T18:45:16+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2022-06-02T10:44:24+00:00",
                    "object": "Email"
                  }
                ],
                "object": "Contact",
                "phoneNumberArray": [
                  {
                    "firstFetchDate": "2021-07-21T06:55:40+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2022-06-02T10:44:24+00:00",
                    "object": "Phone",
                    "phoneNumber": "614-227-4908",
                    "phoneType": "DEFAULT"
                  },
                  {
                    "firstFetchDate": "2021-07-21T06:55:40+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2022-06-02T10:44:24+00:00",
                    "object": "Phone",
                    "phoneNumber": "614-227-2390",
                    "phoneType": "OFFICE"
                  },
                  {
                    "firstFetchDate": "2020-02-18T18:45:16+00:00",
                    "isVisible": false,
                    "lastFetchDate": "2021-03-18T19:50:20+00:00",
                    "object": "Phone",
                    "phoneNumber": "6142272390",
                    "phoneType": "FAX"
                  },
                  {
                    "firstFetchDate": "2020-02-18T18:45:16+00:00",
                    "isVisible": false,
                    "lastFetchDate": "2021-03-18T19:50:20+00:00",
                    "object": "Phone",
                    "phoneNumber": "6142274908",
                    "phoneType": "DEFAULT"
                  }
                ]
              },
              "firstFetchDate": "2020-02-18T18:45:16+00:00",
              "firstName": "Kara",
              "isVisible": true,
              "lastFetchDate": "2022-06-02T10:44:26+00:00",
              "lastName": "Herrnstein",
              "middleName": "H",
              "name": "Kara H Herrnstein",
              "namePrefix": null,
              "nameSuffix": null,
              "object": "Attorney",
              "partyAttorneyAssociations": {
                "nextPageAPI": null,
                "object": "PartyAttorneyAssociations",
                "pageNumber": 1,
                "partyAttorneyAssociationArray": [
                  {
                    "attorneyId": "ATTYgqaafa465b1891",
                    "isVisible": true,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgq4c2c7486b805",
                    "partyId": "PRTYgqc807c549428a"
                  },
                  {
                    "attorneyId": "ATTYgqaafa465b1891",
                    "isVisible": true,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgqf11b25f7800c",
                    "partyId": "PRTYgq6e82359ec5ec"
                  }
                ],
                "totalCount": 2,
                "totalPages": 1
              },
              "partyRoleGroupIdArray": [
                "PTYGBnjxbx6tKNfVEP"
              ],
              "partyRoleIdArray": [
                "PTYR9F4zbteyj7ehmi"
              ],
              "possibleNormAttorneyArray": [
                {
                  "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormJudges?pageNumber=1",
                  "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormLawFirms?pageNumber=1",
                  "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormParties?pageNumber=1",
                  "bestMatch": true,
                  "caseCountAnalyticsByNormAttorneyAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByNormAttorney?pageNumber=1&q=normAttorneyId:NATY11111111111111",
                  "caseCountAnalyticsByOpposingNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByOpposingNormAttorney?pageNumber=1",
                  "confidenceScore": 0.5,
                  "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111",
                  "normAttorneyId": "NATY11111111111111",
                  "normAttorneyName": "ACOSTA S FERNANDO",
                  "object": "PossibleNormAttorney",
                  "scoreConstituents": {
                    "address": "Not_Provided_By_Data_Source",
                    "barId": "Not_Provided_By_Data_Source",
                    "email": "Not_Provided_By_Data_Source",
                    "lawFirm": "Not_Provided_By_Data_Source",
                    "nameSimilarityScore": 0.6,
                    "otherPotentialNormAttorneys": 0,
                    "phone": "Not_Provided_By_Data_Source"
                  }
                }
              ],
              "possibleNormLawFirmArray": [
                {
                  "associatedNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormAttorney?pageNumber=1",
                  "associatedNormJudgeAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormJudges?pageNumber=1",
                  "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormParties?pageNumber=1",
                  "bestMatch": true,
                  "caseCountAnalyticsByNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByNormLawFirm?pageNumber=1",
                  "caseCountAnalyticsByOpposingNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByOpposingNormLawFirm?pageNumber=1",
                  "confidenceScore": 0.66,
                  "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111",
                  "normLawFirmId": "NLAF11111111111111",
                  "normLawFirmName": "MidLand Funding LLC",
                  "object": "PossibleNormLawFirm",
                  "scoreConstituents": {
                    "address": "Not_Provided_By_Data_Source",
                    "email": "Not_Provided_By_Data_Source",
                    "nameSimilarityScore": 0.8,
                    "otherPotentialNormLawFirms": 0,
                    "phone": "Not_Provided_By_Data_Source",
                    "secretaryOfStateId": "Not_Provided_By_Data_Source"
                  },
                  "sourceDetails": {
                    "linkedNormAttorneyIdArray": [
                      "NATY11111111111111"
                    ],
                    "source": "Case_Attorney_Linked_In_Other_Cases"
                  }
                }
              ],
              "sourceAttorneyType": "LEAD ATTORNEY"
            },
            {
              "attorneyId": "ATTYgq7f93df76c689",
              "attorneyLawFirmArray": [
                {
                  "attorneyLawFirmId": "ALFIgq058507bf4465",
                  "firstFetchDate": "2020-03-17T19:37:10+00:00",
                  "isVisible": true,
                  "lastFetchDate": "2022-06-02T10:44:24+00:00",
                  "name": "Bricker and Eckler LLP",
                  "object": "AttorneyLawFirm"
                }
              ],
              "attorneyType": {
                "attorneyTypeId": "ATYPRPk3LNobYmtqwF",
                "createdDate": "2022-03-28T04:59:12+00:00",
                "name": "Attorney",
                "object": "AttorneyType"
              },
              "barNumber": null,
              "contact": {
                "addressArray": [
                  {
                    "city": "Columbus",
                    "countryCode": "USA",
                    "countryName": "United States of America",
                    "firstFetchDate": "2021-07-21T06:55:40+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2022-06-02T10:44:24+00:00",
                    "latitude": null,
                    "longitude": null,
                    "object": "Address",
                    "stateCode": "OH",
                    "stateName": "OHIO",
                    "streetAddress1": "100 S. 3rd Street",
                    "streetAddress2": null,
                    "zip": "43215",
                    "zip4": null
                  },
                  {
                    "city": "Columbus",
                    "countryCode": "USA",
                    "countryName": "United States of America",
                    "firstFetchDate": "2020-02-18T18:45:16+00:00",
                    "isVisible": false,
                    "lastFetchDate": "2021-03-18T19:50:20+00:00",
                    "latitude": null,
                    "longitude": null,
                    "object": "Address",
                    "stateCode": "OH",
                    "stateName": "OHIO",
                    "streetAddress1": "100 S. 3rd Street",
                    "streetAddress2": null,
                    "zip": "43215",
                    "zip4": null
                  }
                ],
                "emailArray": [
                  {
                    "emailId": "kherrnstein@bricker.com",
                    "firstFetchDate": "2020-02-18T18:45:16+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2022-06-02T10:44:24+00:00",
                    "object": "Email"
                  }
                ],
                "object": "Contact",
                "phoneNumberArray": [
                  {
                    "firstFetchDate": "2021-07-21T06:55:40+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2022-06-02T10:44:24+00:00",
                    "object": "Phone",
                    "phoneNumber": "614-227-4908",
                    "phoneType": "DEFAULT"
                  },
                  {
                    "firstFetchDate": "2021-07-21T06:55:40+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2022-06-02T10:44:24+00:00",
                    "object": "Phone",
                    "phoneNumber": "614-227-2390",
                    "phoneType": "OFFICE"
                  },
                  {
                    "firstFetchDate": "2020-02-18T18:45:16+00:00",
                    "isVisible": false,
                    "lastFetchDate": "2021-03-18T19:50:20+00:00",
                    "object": "Phone",
                    "phoneNumber": "6142272390",
                    "phoneType": "FAX"
                  },
                  {
                    "firstFetchDate": "2020-02-18T18:45:16+00:00",
                    "isVisible": false,
                    "lastFetchDate": "2021-03-18T19:50:20+00:00",
                    "object": "Phone",
                    "phoneNumber": "6142274908",
                    "phoneType": "DEFAULT"
                  }
                ]
              },
              "firstFetchDate": "2020-02-18T18:45:16+00:00",
              "firstName": "Kara",
              "isVisible": true,
              "lastFetchDate": "2022-06-02T10:44:24+00:00",
              "lastName": "Herrnstein",
              "middleName": "H",
              "name": "Kara H Herrnstein",
              "namePrefix": null,
              "nameSuffix": null,
              "object": "Attorney",
              "partyAttorneyAssociations": {
                "nextPageAPI": null,
                "object": "PartyAttorneyAssociations",
                "pageNumber": 1,
                "partyAttorneyAssociationArray": [
                  {
                    "attorneyId": "ATTYgq7f93df76c689",
                    "isVisible": false,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgq6274b48e2454",
                    "partyId": "PRTYgqfb97c393dc39"
                  },
                  {
                    "attorneyId": "ATTYgq7f93df76c689",
                    "isVisible": true,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgqc4455ca63a6f",
                    "partyId": "PRTYgqadac9e124022"
                  },
                  {
                    "attorneyId": "ATTYgq7f93df76c689",
                    "isVisible": false,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgq0ad5fe0978a8",
                    "partyId": "PRTYgq095931005b15"
                  },
                  {
                    "attorneyId": "ATTYgq7f93df76c689",
                    "isVisible": false,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgq5dea5105cd8c",
                    "partyId": "PRTYgq7b45790da768"
                  },
                  {
                    "attorneyId": "ATTYgq7f93df76c689",
                    "isVisible": false,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgq5e0b950ee272",
                    "partyId": "PRTYgq1621df9b4855"
                  }
                ],
                "totalCount": 5,
                "totalPages": 1
              },
              "partyRoleGroupIdArray": [
                "PTYGBnjxbx6tKNfVEP"
              ],
              "partyRoleIdArray": [
                "PTYR9F4zbteyj7ehmi"
              ],
              "possibleNormAttorneyArray": [
                {
                  "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormJudges?pageNumber=1",
                  "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormLawFirms?pageNumber=1",
                  "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormParties?pageNumber=1",
                  "bestMatch": true,
                  "caseCountAnalyticsByNormAttorneyAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByNormAttorney?pageNumber=1&q=normAttorneyId:NATY11111111111111",
                  "caseCountAnalyticsByOpposingNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByOpposingNormAttorney?pageNumber=1",
                  "confidenceScore": 0.5,
                  "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111",
                  "normAttorneyId": "NATY11111111111111",
                  "normAttorneyName": "ACOSTA S FERNANDO",
                  "object": "PossibleNormAttorney",
                  "scoreConstituents": {
                    "address": "Not_Provided_By_Data_Source",
                    "barId": "Not_Provided_By_Data_Source",
                    "email": "Not_Provided_By_Data_Source",
                    "lawFirm": "Not_Provided_By_Data_Source",
                    "nameSimilarityScore": 0.6,
                    "otherPotentialNormAttorneys": 0,
                    "phone": "Not_Provided_By_Data_Source"
                  }
                }
              ],
              "possibleNormLawFirmArray": [
                {
                  "associatedNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormAttorney?pageNumber=1",
                  "associatedNormJudgeAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormJudges?pageNumber=1",
                  "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormParties?pageNumber=1",
                  "bestMatch": true,
                  "caseCountAnalyticsByNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByNormLawFirm?pageNumber=1",
                  "caseCountAnalyticsByOpposingNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByOpposingNormLawFirm?pageNumber=1",
                  "confidenceScore": 0.66,
                  "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111",
                  "normLawFirmId": "NLAF11111111111111",
                  "normLawFirmName": "MidLand Funding LLC",
                  "object": "PossibleNormLawFirm",
                  "scoreConstituents": {
                    "address": "Not_Provided_By_Data_Source",
                    "email": "Not_Provided_By_Data_Source",
                    "nameSimilarityScore": 0.8,
                    "otherPotentialNormLawFirms": 0,
                    "phone": "Not_Provided_By_Data_Source",
                    "secretaryOfStateId": "Not_Provided_By_Data_Source"
                  },
                  "sourceDetails": {
                    "linkedNormAttorneyIdArray": [
                      "NATY11111111111111"
                    ],
                    "source": "Case_Attorney_Linked_In_Other_Cases"
                  }
                }
              ],
              "sourceAttorneyType": "ATTORNEY"
            },
            {
              "attorneyId": "ATTYgqb26030931cd6",
              "attorneyLawFirmArray": [
                {
                  "attorneyLawFirmId": "ALFIgqae8ecfc0d86c",
                  "firstFetchDate": "2020-02-18T18:45:10+00:00",
                  "isVisible": true,
                  "lastFetchDate": "2022-06-02T10:44:28+00:00",
                  "name": "Isaac Wiles Burkholder & Teetor, LLC",
                  "object": "AttorneyLawFirm"
                }
              ],
              "attorneyType": {
                "attorneyTypeId": "ATYPRPk3LNobYmtqwF",
                "createdDate": "2022-03-28T04:59:12+00:00",
                "name": "Attorney",
                "object": "AttorneyType"
              },
              "barNumber": null,
              "contact": {
                "addressArray": [
                  {
                    "city": "Columbus",
                    "countryCode": "USA",
                    "countryName": "United States of America",
                    "firstFetchDate": "2020-02-18T18:45:16+00:00",
                    "isVisible": false,
                    "lastFetchDate": "2021-03-18T19:50:19+00:00",
                    "latitude": null,
                    "longitude": null,
                    "object": "Address",
                    "stateCode": "OH",
                    "stateName": "OHIO",
                    "streetAddress1": "Two Miranova",
                    "streetAddress2": null,
                    "zip": "43215",
                    "zip4": "3742"
                  },
                  {
                    "city": "Columbus",
                    "countryCode": "USA",
                    "countryName": "United States of America",
                    "firstFetchDate": "2021-07-21T06:55:43+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2022-06-02T10:44:28+00:00",
                    "latitude": null,
                    "longitude": null,
                    "object": "Address",
                    "stateCode": "OH",
                    "stateName": "OHIO",
                    "streetAddress1": "Two Miranova",
                    "streetAddress2": null,
                    "zip": "43215",
                    "zip4": "3742"
                  }
                ],
                "emailArray": [
                  {
                    "emailId": "mlandes@isaacwiles.com",
                    "firstFetchDate": "2020-02-18T18:45:16+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2022-06-02T10:44:28+00:00",
                    "object": "Email"
                  }
                ],
                "object": "Contact",
                "phoneNumberArray": [
                  {
                    "firstFetchDate": "2021-07-21T06:55:43+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2022-06-02T10:44:28+00:00",
                    "object": "Phone",
                    "phoneNumber": "614-221-2121",
                    "phoneType": "DEFAULT"
                  },
                  {
                    "firstFetchDate": "2020-02-18T18:45:16+00:00",
                    "isVisible": false,
                    "lastFetchDate": "2021-03-18T19:50:19+00:00",
                    "object": "Phone",
                    "phoneNumber": "6143659516",
                    "phoneType": "FAX"
                  },
                  {
                    "firstFetchDate": "2020-02-18T18:45:16+00:00",
                    "isVisible": false,
                    "lastFetchDate": "2021-03-18T19:50:19+00:00",
                    "object": "Phone",
                    "phoneNumber": "6142212121",
                    "phoneType": "DEFAULT"
                  },
                  {
                    "firstFetchDate": "2021-07-21T06:55:43+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2022-06-02T10:44:28+00:00",
                    "object": "Phone",
                    "phoneNumber": "614-365-9516",
                    "phoneType": "OFFICE"
                  }
                ]
              },
              "firstFetchDate": "2020-02-18T18:45:16+00:00",
              "firstName": "Mark",
              "isVisible": true,
              "lastFetchDate": "2022-06-02T10:44:28+00:00",
              "lastName": "Landes",
              "middleName": "David",
              "name": "Mark David Landes",
              "namePrefix": null,
              "nameSuffix": null,
              "object": "Attorney",
              "partyAttorneyAssociations": {
                "nextPageAPI": null,
                "object": "PartyAttorneyAssociations",
                "pageNumber": 1,
                "partyAttorneyAssociationArray": [
                  {
                    "attorneyId": "ATTYgqb26030931cd6",
                    "isVisible": true,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgq638a3ed87740",
                    "partyId": "PRTYgq113e208e0670"
                  },
                  {
                    "attorneyId": "ATTYgqb26030931cd6",
                    "isVisible": true,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgq27e8667f3445",
                    "partyId": "PRTYgqffd5af24d709"
                  }
                ],
                "totalCount": 2,
                "totalPages": 1
              },
              "partyRoleGroupIdArray": [
                "PTYGBnjxbx6tKNfVEP"
              ],
              "partyRoleIdArray": [
                "PTYR9F4zbteyj7ehmi"
              ],
              "possibleNormAttorneyArray": [
                {
                  "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormJudges?pageNumber=1",
                  "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormLawFirms?pageNumber=1",
                  "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormParties?pageNumber=1",
                  "bestMatch": true,
                  "caseCountAnalyticsByNormAttorneyAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByNormAttorney?pageNumber=1&q=normAttorneyId:NATY11111111111111",
                  "caseCountAnalyticsByOpposingNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByOpposingNormAttorney?pageNumber=1",
                  "confidenceScore": 0.5,
                  "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111",
                  "normAttorneyId": "NATY11111111111111",
                  "normAttorneyName": "ACOSTA S FERNANDO",
                  "object": "PossibleNormAttorney",
                  "scoreConstituents": {
                    "address": "Not_Provided_By_Data_Source",
                    "barId": "Not_Provided_By_Data_Source",
                    "email": "Not_Provided_By_Data_Source",
                    "lawFirm": "Not_Provided_By_Data_Source",
                    "nameSimilarityScore": 0.6,
                    "otherPotentialNormAttorneys": 0,
                    "phone": "Not_Provided_By_Data_Source"
                  }
                }
              ],
              "possibleNormLawFirmArray": [
                {
                  "associatedNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormAttorney?pageNumber=1",
                  "associatedNormJudgeAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormJudges?pageNumber=1",
                  "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormParties?pageNumber=1",
                  "bestMatch": true,
                  "caseCountAnalyticsByNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByNormLawFirm?pageNumber=1",
                  "caseCountAnalyticsByOpposingNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByOpposingNormLawFirm?pageNumber=1",
                  "confidenceScore": 0.66,
                  "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111",
                  "normLawFirmId": "NLAF11111111111111",
                  "normLawFirmName": "MidLand Funding LLC",
                  "object": "PossibleNormLawFirm",
                  "scoreConstituents": {
                    "address": "Not_Provided_By_Data_Source",
                    "email": "Not_Provided_By_Data_Source",
                    "nameSimilarityScore": 0.8,
                    "otherPotentialNormLawFirms": 0,
                    "phone": "Not_Provided_By_Data_Source",
                    "secretaryOfStateId": "Not_Provided_By_Data_Source"
                  },
                  "sourceDetails": {
                    "linkedNormAttorneyIdArray": [
                      "NATY11111111111111"
                    ],
                    "source": "Case_Attorney_Linked_In_Other_Cases"
                  }
                }
              ],
              "sourceAttorneyType": "ATTORNEY"
            },
            {
              "attorneyId": "ATTYgq90e4d65ddba3",
              "attorneyLawFirmArray": [
                {
                  "attorneyLawFirmId": "ALFIgq055935cf2ab6",
                  "firstFetchDate": "2020-02-18T18:45:11+00:00",
                  "isVisible": true,
                  "lastFetchDate": "2022-06-02T10:44:30+00:00",
                  "name": "Black, McCuskey, Souers & Arbaugh",
                  "object": "AttorneyLawFirm"
                }
              ],
              "attorneyType": {
                "attorneyTypeId": "ATYPWXtARwvzu5HLcf",
                "createdDate": "2022-03-28T04:59:12+00:00",
                "name": "Lead Attorney",
                "object": "AttorneyType"
              },
              "barNumber": null,
              "contact": {
                "addressArray": [
                  {
                    "city": "Canton",
                    "countryCode": "USA",
                    "countryName": "United States of America",
                    "firstFetchDate": "2020-02-18T18:45:16+00:00",
                    "isVisible": false,
                    "lastFetchDate": "2021-03-18T19:50:20+00:00",
                    "latitude": null,
                    "longitude": null,
                    "object": "Address",
                    "stateCode": "OH",
                    "stateName": "OHIO",
                    "streetAddress1": "220 Market Avenue South, Suite 1000",
                    "streetAddress2": null,
                    "zip": "44702",
                    "zip4": null
                  },
                  {
                    "city": "Canton",
                    "countryCode": "USA",
                    "countryName": "United States of America",
                    "firstFetchDate": "2021-07-21T06:55:44+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2022-06-02T10:44:30+00:00",
                    "latitude": null,
                    "longitude": null,
                    "object": "Address",
                    "stateCode": "OH",
                    "stateName": "OHIO",
                    "streetAddress1": "220 Market Avenue South",
                    "streetAddress2": "Suite 1000",
                    "zip": "44702",
                    "zip4": null
                  }
                ],
                "emailArray": [
                  {
                    "emailId": "rsnow@bmsa.com",
                    "firstFetchDate": "2020-02-18T18:45:16+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2022-06-02T10:44:30+00:00",
                    "object": "Email"
                  }
                ],
                "object": "Contact",
                "phoneNumberArray": [
                  {
                    "firstFetchDate": "2021-07-21T06:55:44+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2022-06-02T10:44:30+00:00",
                    "object": "Phone",
                    "phoneNumber": "(330) 456-8341",
                    "phoneType": "DEFAULT"
                  },
                  {
                    "firstFetchDate": "2021-07-21T06:55:44+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2022-06-02T10:44:30+00:00",
                    "object": "Phone",
                    "phoneNumber": "(330) 456-5756",
                    "phoneType": "OFFICE"
                  },
                  {
                    "firstFetchDate": "2020-02-18T18:45:16+00:00",
                    "isVisible": false,
                    "lastFetchDate": "2021-03-18T19:50:20+00:00",
                    "object": "Phone",
                    "phoneNumber": "2164568341",
                    "phoneType": "DEFAULT"
                  },
                  {
                    "firstFetchDate": "2020-02-18T18:45:16+00:00",
                    "isVisible": false,
                    "lastFetchDate": "2021-03-18T19:50:20+00:00",
                    "object": "Phone",
                    "phoneNumber": "3304568341",
                    "phoneType": "DEFAULT"
                  },
                  {
                    "firstFetchDate": "2020-02-18T18:45:16+00:00",
                    "isVisible": false,
                    "lastFetchDate": "2021-03-18T19:50:20+00:00",
                    "object": "Phone",
                    "phoneNumber": "3304565756",
                    "phoneType": "FAX"
                  }
                ]
              },
              "firstFetchDate": "2020-02-18T18:45:16+00:00",
              "firstName": "Randolph",
              "isVisible": true,
              "lastFetchDate": "2022-06-02T10:44:30+00:00",
              "lastName": "Snow",
              "middleName": "L",
              "name": "Randolph L Snow",
              "namePrefix": null,
              "nameSuffix": null,
              "object": "Attorney",
              "partyAttorneyAssociations": {
                "nextPageAPI": null,
                "object": "PartyAttorneyAssociations",
                "pageNumber": 1,
                "partyAttorneyAssociationArray": [
                  {
                    "attorneyId": "ATTYgq90e4d65ddba3",
                    "isVisible": false,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgqc7bc1209f37f",
                    "partyId": "PRTYgq473146e17327"
                  }
                ],
                "totalCount": 1,
                "totalPages": 1
              },
              "partyRoleGroupIdArray": [
                "PTYGBnjxbx6tKNfVEP"
              ],
              "partyRoleIdArray": [
                "PTYR9F4zbteyj7ehmi"
              ],
              "possibleNormAttorneyArray": [
                {
                  "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormJudges?pageNumber=1",
                  "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormLawFirms?pageNumber=1",
                  "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormParties?pageNumber=1",
                  "bestMatch": true,
                  "caseCountAnalyticsByNormAttorneyAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByNormAttorney?pageNumber=1&q=normAttorneyId:NATY11111111111111",
                  "caseCountAnalyticsByOpposingNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByOpposingNormAttorney?pageNumber=1",
                  "confidenceScore": 0.5,
                  "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111",
                  "normAttorneyId": "NATY11111111111111",
                  "normAttorneyName": "ACOSTA S FERNANDO",
                  "object": "PossibleNormAttorney",
                  "scoreConstituents": {
                    "address": "Not_Provided_By_Data_Source",
                    "barId": "Not_Provided_By_Data_Source",
                    "email": "Not_Provided_By_Data_Source",
                    "lawFirm": "Not_Provided_By_Data_Source",
                    "nameSimilarityScore": 0.6,
                    "otherPotentialNormAttorneys": 0,
                    "phone": "Not_Provided_By_Data_Source"
                  }
                }
              ],
              "possibleNormLawFirmArray": [
                {
                  "associatedNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormAttorney?pageNumber=1",
                  "associatedNormJudgeAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormJudges?pageNumber=1",
                  "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormParties?pageNumber=1",
                  "bestMatch": true,
                  "caseCountAnalyticsByNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByNormLawFirm?pageNumber=1",
                  "caseCountAnalyticsByOpposingNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByOpposingNormLawFirm?pageNumber=1",
                  "confidenceScore": 0.66,
                  "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111",
                  "normLawFirmId": "NLAF11111111111111",
                  "normLawFirmName": "MidLand Funding LLC",
                  "object": "PossibleNormLawFirm",
                  "scoreConstituents": {
                    "address": "Not_Provided_By_Data_Source",
                    "email": "Not_Provided_By_Data_Source",
                    "nameSimilarityScore": 0.8,
                    "otherPotentialNormLawFirms": 0,
                    "phone": "Not_Provided_By_Data_Source",
                    "secretaryOfStateId": "Not_Provided_By_Data_Source"
                  },
                  "sourceDetails": {
                    "linkedNormAttorneyIdArray": [
                      "NATY11111111111111"
                    ],
                    "source": "Case_Attorney_Linked_In_Other_Cases"
                  }
                }
              ],
              "sourceAttorneyType": "LEAD ATTORNEY"
            },
            {
              "attorneyId": "ATTYgq36296db0279b",
              "attorneyLawFirmArray": [
                {
                  "attorneyLawFirmId": "ALFIgq6ac54592aa6b",
                  "firstFetchDate": "2020-02-18T18:45:09+00:00",
                  "isVisible": true,
                  "lastFetchDate": "2022-06-02T10:44:25+00:00",
                  "name": "McDonald Hopkins LLC",
                  "object": "AttorneyLawFirm"
                }
              ],
              "attorneyType": {
                "attorneyTypeId": "ATYPWXtARwvzu5HLcf",
                "createdDate": "2022-03-28T04:59:12+00:00",
                "name": "Lead Attorney",
                "object": "AttorneyType"
              },
              "barNumber": null,
              "contact": {
                "addressArray": [
                  {
                    "city": "Cleveland",
                    "countryCode": "USA",
                    "countryName": "United States of America",
                    "firstFetchDate": "2021-07-21T06:55:40+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2022-06-02T10:44:25+00:00",
                    "latitude": null,
                    "longitude": null,
                    "object": "Address",
                    "stateCode": "OH",
                    "stateName": "OHIO",
                    "streetAddress1": "600 Superior Avenue East",
                    "streetAddress2": "Suite 2100",
                    "zip": "44114",
                    "zip4": null
                  },
                  {
                    "city": "Cleveland",
                    "countryCode": "USA",
                    "countryName": "United States of America",
                    "firstFetchDate": "2020-02-18T18:45:16+00:00",
                    "isVisible": false,
                    "lastFetchDate": "2021-03-18T19:50:20+00:00",
                    "latitude": null,
                    "longitude": null,
                    "object": "Address",
                    "stateCode": "OH",
                    "stateName": "OHIO",
                    "streetAddress1": "600 Superior Avenue East, Suite 2100, 216-348-540",
                    "streetAddress2": null,
                    "zip": "44114",
                    "zip4": null
                  }
                ],
                "emailArray": [
                  {
                    "emailId": "acsmith@mcdonaldhopkins.com",
                    "firstFetchDate": "2020-02-18T18:45:16+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2022-06-02T10:44:25+00:00",
                    "object": "Email"
                  }
                ],
                "object": "Contact",
                "phoneNumberArray": [
                  {
                    "firstFetchDate": "2021-07-21T06:55:40+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2022-06-02T10:44:25+00:00",
                    "object": "Phone",
                    "phoneNumber": "216-348-5474",
                    "phoneType": "OFFICE"
                  },
                  {
                    "firstFetchDate": "2020-02-18T18:45:16+00:00",
                    "isVisible": false,
                    "lastFetchDate": "2021-03-18T19:50:20+00:00",
                    "object": "Phone",
                    "phoneNumber": "2163485474",
                    "phoneType": "FAX"
                  }
                ]
              },
              "firstFetchDate": "2020-02-18T18:45:16+00:00",
              "firstName": "Adam",
              "isVisible": true,
              "lastFetchDate": "2022-06-02T10:44:25+00:00",
              "lastName": "Smith",
              "middleName": "C",
              "name": "Adam C Smith",
              "namePrefix": null,
              "nameSuffix": null,
              "object": "Attorney",
              "partyAttorneyAssociations": {
                "nextPageAPI": null,
                "object": "PartyAttorneyAssociations",
                "pageNumber": 1,
                "partyAttorneyAssociationArray": [
                  {
                    "attorneyId": "ATTYgq36296db0279b",
                    "isVisible": true,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgqfce18b687a39",
                    "partyId": "PRTYgq327ee9c6548f"
                  }
                ],
                "totalCount": 1,
                "totalPages": 1
              },
              "partyRoleGroupIdArray": [
                "PTYGBnjxbx6tKNfVEP"
              ],
              "partyRoleIdArray": [
                "PTYR9F4zbteyj7ehmi"
              ],
              "possibleNormAttorneyArray": [
                {
                  "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormJudges?pageNumber=1",
                  "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormLawFirms?pageNumber=1",
                  "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormParties?pageNumber=1",
                  "bestMatch": true,
                  "caseCountAnalyticsByNormAttorneyAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByNormAttorney?pageNumber=1&q=normAttorneyId:NATY11111111111111",
                  "caseCountAnalyticsByOpposingNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByOpposingNormAttorney?pageNumber=1",
                  "confidenceScore": 0.5,
                  "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111",
                  "normAttorneyId": "NATY11111111111111",
                  "normAttorneyName": "ACOSTA S FERNANDO",
                  "object": "PossibleNormAttorney",
                  "scoreConstituents": {
                    "address": "Not_Provided_By_Data_Source",
                    "barId": "Not_Provided_By_Data_Source",
                    "email": "Not_Provided_By_Data_Source",
                    "lawFirm": "Not_Provided_By_Data_Source",
                    "nameSimilarityScore": 0.6,
                    "otherPotentialNormAttorneys": 0,
                    "phone": "Not_Provided_By_Data_Source"
                  }
                }
              ],
              "possibleNormLawFirmArray": [
                {
                  "associatedNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormAttorney?pageNumber=1",
                  "associatedNormJudgeAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormJudges?pageNumber=1",
                  "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormParties?pageNumber=1",
                  "bestMatch": true,
                  "caseCountAnalyticsByNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByNormLawFirm?pageNumber=1",
                  "caseCountAnalyticsByOpposingNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByOpposingNormLawFirm?pageNumber=1",
                  "confidenceScore": 0.66,
                  "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111",
                  "normLawFirmId": "NLAF11111111111111",
                  "normLawFirmName": "MidLand Funding LLC",
                  "object": "PossibleNormLawFirm",
                  "scoreConstituents": {
                    "address": "Not_Provided_By_Data_Source",
                    "email": "Not_Provided_By_Data_Source",
                    "nameSimilarityScore": 0.8,
                    "otherPotentialNormLawFirms": 0,
                    "phone": "Not_Provided_By_Data_Source",
                    "secretaryOfStateId": "Not_Provided_By_Data_Source"
                  },
                  "sourceDetails": {
                    "linkedNormAttorneyIdArray": [
                      "NATY11111111111111"
                    ],
                    "source": "Case_Attorney_Linked_In_Other_Cases"
                  }
                }
              ],
              "sourceAttorneyType": "LEAD ATTORNEY"
            },
            {
              "attorneyId": "ATTYgqdf028b71e4bf",
              "attorneyLawFirmArray": [],
              "attorneyType": {
                "attorneyTypeId": "ATYPWXtARwvzu5HLcf",
                "createdDate": "2022-03-28T04:59:12+00:00",
                "name": "Lead Attorney",
                "object": "AttorneyType"
              },
              "barNumber": null,
              "contact": {
                "addressArray": [
                  {
                    "city": "Chardon",
                    "countryCode": "USA",
                    "countryName": "United States of America",
                    "firstFetchDate": "2020-02-18T18:45:16+00:00",
                    "isVisible": false,
                    "lastFetchDate": "2021-03-18T19:50:20+00:00",
                    "latitude": null,
                    "longitude": null,
                    "object": "Address",
                    "stateCode": "OH",
                    "stateName": "OHIO",
                    "streetAddress1": "100 7th Avenue, Suite 150",
                    "streetAddress2": null,
                    "zip": "44024",
                    "zip4": null
                  },
                  {
                    "city": "Chardon",
                    "countryCode": "USA",
                    "countryName": "United States of America",
                    "firstFetchDate": "2021-07-21T06:55:39+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2022-06-02T10:44:24+00:00",
                    "latitude": null,
                    "longitude": null,
                    "object": "Address",
                    "stateCode": "OH",
                    "stateName": "OHIO",
                    "streetAddress1": "100 7th Avenue, Suite 150",
                    "streetAddress2": null,
                    "zip": "44024",
                    "zip4": null
                  }
                ],
                "emailArray": [
                  {
                    "emailId": "dmarkowitz@tddlaw.com",
                    "firstFetchDate": "2020-02-18T18:45:16+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2022-06-02T10:44:24+00:00",
                    "object": "Email"
                  }
                ],
                "object": "Contact",
                "phoneNumberArray": [
                  {
                    "firstFetchDate": "2020-02-18T18:45:16+00:00",
                    "isVisible": false,
                    "lastFetchDate": "2021-03-18T19:50:20+00:00",
                    "object": "Phone",
                    "phoneNumber": "4402852242",
                    "phoneType": "DEFAULT"
                  },
                  {
                    "firstFetchDate": "2020-02-18T18:45:16+00:00",
                    "isVisible": false,
                    "lastFetchDate": "2021-03-18T19:50:20+00:00",
                    "object": "Phone",
                    "phoneNumber": "4402859423",
                    "phoneType": "FAX"
                  },
                  {
                    "firstFetchDate": "2021-07-21T06:55:39+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2022-06-02T10:44:24+00:00",
                    "object": "Phone",
                    "phoneNumber": "440-285-9423",
                    "phoneType": "OFFICE"
                  },
                  {
                    "firstFetchDate": "2021-07-21T06:55:39+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2022-06-02T10:44:24+00:00",
                    "object": "Phone",
                    "phoneNumber": "440-285-2242",
                    "phoneType": "DEFAULT"
                  }
                ]
              },
              "firstFetchDate": "2020-02-18T18:45:16+00:00",
              "firstName": "Dale",
              "isVisible": true,
              "lastFetchDate": "2022-06-02T10:44:24+00:00",
              "lastName": "Markowitz",
              "middleName": "H",
              "name": "Dale H. Markowitz",
              "namePrefix": null,
              "nameSuffix": null,
              "object": "Attorney",
              "partyAttorneyAssociations": {
                "nextPageAPI": null,
                "object": "PartyAttorneyAssociations",
                "pageNumber": 1,
                "partyAttorneyAssociationArray": [
                  {
                    "attorneyId": "ATTYgqdf028b71e4bf",
                    "isVisible": false,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgqd8b12e543719",
                    "partyId": "PRTYgq2948039c788e"
                  },
                  {
                    "attorneyId": "ATTYgqdf028b71e4bf",
                    "isVisible": true,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgq16075b011542",
                    "partyId": "PRTYgqbacd5dc5d1d3"
                  },
                  {
                    "attorneyId": "ATTYgqdf028b71e4bf",
                    "isVisible": false,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgq20507909a2c7",
                    "partyId": "PRTYgq60909b78da1f"
                  },
                  {
                    "attorneyId": "ATTYgqdf028b71e4bf",
                    "isVisible": true,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgq916236fd9572",
                    "partyId": "PRTYgq8db617bcc836"
                  },
                  {
                    "attorneyId": "ATTYgqdf028b71e4bf",
                    "isVisible": true,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgq311670610ce7",
                    "partyId": "PRTYgqd0967d9d4f6e"
                  },
                  {
                    "attorneyId": "ATTYgqdf028b71e4bf",
                    "isVisible": false,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgqf49d4b84e64c",
                    "partyId": "PRTYgq13c41c388bc6"
                  },
                  {
                    "attorneyId": "ATTYgqdf028b71e4bf",
                    "isVisible": false,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgq590a6599ac3e",
                    "partyId": "PRTYgqffa0cf6158d0"
                  },
                  {
                    "attorneyId": "ATTYgqdf028b71e4bf",
                    "isVisible": true,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgqa74721d69383",
                    "partyId": "PRTYgq57025397bf8d"
                  }
                ],
                "totalCount": 8,
                "totalPages": 1
              },
              "partyRoleGroupIdArray": [
                "PTYGBnjxbx6tKNfVEP"
              ],
              "partyRoleIdArray": [
                "PTYR9F4zbteyj7ehmi"
              ],
              "possibleNormAttorneyArray": [
                {
                  "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormJudges?pageNumber=1",
                  "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormLawFirms?pageNumber=1",
                  "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormParties?pageNumber=1",
                  "bestMatch": true,
                  "caseCountAnalyticsByNormAttorneyAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByNormAttorney?pageNumber=1&q=normAttorneyId:NATY11111111111111",
                  "caseCountAnalyticsByOpposingNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByOpposingNormAttorney?pageNumber=1",
                  "confidenceScore": 0.5,
                  "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111",
                  "normAttorneyId": "NATY11111111111111",
                  "normAttorneyName": "ACOSTA S FERNANDO",
                  "object": "PossibleNormAttorney",
                  "scoreConstituents": {
                    "address": "Not_Provided_By_Data_Source",
                    "barId": "Not_Provided_By_Data_Source",
                    "email": "Not_Provided_By_Data_Source",
                    "lawFirm": "Not_Provided_By_Data_Source",
                    "nameSimilarityScore": 0.6,
                    "otherPotentialNormAttorneys": 0,
                    "phone": "Not_Provided_By_Data_Source"
                  }
                }
              ],
              "possibleNormLawFirmArray": [
                {
                  "associatedNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormAttorney?pageNumber=1",
                  "associatedNormJudgeAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormJudges?pageNumber=1",
                  "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormParties?pageNumber=1",
                  "bestMatch": true,
                  "caseCountAnalyticsByNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByNormLawFirm?pageNumber=1",
                  "caseCountAnalyticsByOpposingNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByOpposingNormLawFirm?pageNumber=1",
                  "confidenceScore": 0.66,
                  "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111",
                  "normLawFirmId": "NLAF11111111111111",
                  "normLawFirmName": "MidLand Funding LLC",
                  "object": "PossibleNormLawFirm",
                  "scoreConstituents": {
                    "address": "Not_Provided_By_Data_Source",
                    "email": "Not_Provided_By_Data_Source",
                    "nameSimilarityScore": 0.8,
                    "otherPotentialNormLawFirms": 0,
                    "phone": "Not_Provided_By_Data_Source",
                    "secretaryOfStateId": "Not_Provided_By_Data_Source"
                  },
                  "sourceDetails": {
                    "linkedNormAttorneyIdArray": [
                      "NATY11111111111111"
                    ],
                    "source": "Case_Attorney_Linked_In_Other_Cases"
                  }
                }
              ],
              "sourceAttorneyType": "LEAD ATTORNEY"
            },
            {
              "attorneyId": "ATTYgq4f5b532062b0",
              "attorneyLawFirmArray": [
                {
                  "attorneyLawFirmId": "ALFIgqa779cd4ec087",
                  "firstFetchDate": "2020-02-18T18:45:08+00:00",
                  "isVisible": true,
                  "lastFetchDate": "2022-06-02T10:44:22+00:00",
                  "name": "McDonald Hopkins Co LPA",
                  "object": "AttorneyLawFirm"
                }
              ],
              "attorneyType": {
                "attorneyTypeId": "ATYPWXtARwvzu5HLcf",
                "createdDate": "2022-03-28T04:59:12+00:00",
                "name": "Lead Attorney",
                "object": "AttorneyType"
              },
              "barNumber": null,
              "contact": {
                "addressArray": [
                  {
                    "city": "Cleveland",
                    "countryCode": "USA",
                    "countryName": "United States of America",
                    "firstFetchDate": "2020-02-18T18:45:16+00:00",
                    "isVisible": false,
                    "lastFetchDate": "2021-03-18T19:50:20+00:00",
                    "latitude": null,
                    "longitude": null,
                    "object": "Address",
                    "stateCode": "OH",
                    "stateName": "OHIO",
                    "streetAddress1": "600 Superior Avenue East",
                    "streetAddress2": null,
                    "zip": "44114",
                    "zip4": "2563"
                  },
                  {
                    "city": "Cleveland",
                    "countryCode": "USA",
                    "countryName": "United States of America",
                    "firstFetchDate": "2021-07-21T06:55:38+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2022-06-02T10:44:22+00:00",
                    "latitude": null,
                    "longitude": null,
                    "object": "Address",
                    "stateCode": "OH",
                    "stateName": "OHIO",
                    "streetAddress1": "600 Superior Avenue East",
                    "streetAddress2": null,
                    "zip": "44114",
                    "zip4": "2563"
                  }
                ],
                "emailArray": [
                  {
                    "emailId": "rcline@mcdonaldhopkins.com",
                    "firstFetchDate": "2020-02-18T18:45:16+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2022-06-02T10:44:22+00:00",
                    "object": "Email"
                  }
                ],
                "object": "Contact",
                "phoneNumberArray": [
                  {
                    "firstFetchDate": "2020-02-18T18:45:16+00:00",
                    "isVisible": false,
                    "lastFetchDate": "2021-03-18T19:50:20+00:00",
                    "object": "Phone",
                    "phoneNumber": "2163485400",
                    "phoneType": "DEFAULT"
                  },
                  {
                    "firstFetchDate": "2021-07-21T06:55:38+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2022-06-02T10:44:22+00:00",
                    "object": "Phone",
                    "phoneNumber": "216-348-5400",
                    "phoneType": "DEFAULT"
                  }
                ]
              },
              "firstFetchDate": "2020-02-18T18:45:16+00:00",
              "firstName": "Richard",
              "isVisible": true,
              "lastFetchDate": "2022-06-02T10:44:22+00:00",
              "lastName": "Cline",
              "middleName": "W",
              "name": "Richard W Cline",
              "namePrefix": null,
              "nameSuffix": null,
              "object": "Attorney",
              "partyAttorneyAssociations": {
                "nextPageAPI": null,
                "object": "PartyAttorneyAssociations",
                "pageNumber": 1,
                "partyAttorneyAssociationArray": [
                  {
                    "attorneyId": "ATTYgq4f5b532062b0",
                    "isVisible": true,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgq4952e1c5d661",
                    "partyId": "PRTYgq58c79f9b5f87"
                  },
                  {
                    "attorneyId": "ATTYgq4f5b532062b0",
                    "isVisible": true,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgqc1697f34a1c7",
                    "partyId": "PRTYgqd533e15ed59f"
                  },
                  {
                    "attorneyId": "ATTYgq4f5b532062b0",
                    "isVisible": false,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgq60dcc930be09",
                    "partyId": "PRTYgqeee84b6a9943"
                  }
                ],
                "totalCount": 3,
                "totalPages": 1
              },
              "partyRoleGroupIdArray": [
                "PTYGBnjxbx6tKNfVEP"
              ],
              "partyRoleIdArray": [
                "PTYR9F4zbteyj7ehmi"
              ],
              "possibleNormAttorneyArray": [
                {
                  "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormJudges?pageNumber=1",
                  "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormLawFirms?pageNumber=1",
                  "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormParties?pageNumber=1",
                  "bestMatch": true,
                  "caseCountAnalyticsByNormAttorneyAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByNormAttorney?pageNumber=1&q=normAttorneyId:NATY11111111111111",
                  "caseCountAnalyticsByOpposingNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByOpposingNormAttorney?pageNumber=1",
                  "confidenceScore": 0.5,
                  "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111",
                  "normAttorneyId": "NATY11111111111111",
                  "normAttorneyName": "ACOSTA S FERNANDO",
                  "object": "PossibleNormAttorney",
                  "scoreConstituents": {
                    "address": "Not_Provided_By_Data_Source",
                    "barId": "Not_Provided_By_Data_Source",
                    "email": "Not_Provided_By_Data_Source",
                    "lawFirm": "Not_Provided_By_Data_Source",
                    "nameSimilarityScore": 0.6,
                    "otherPotentialNormAttorneys": 0,
                    "phone": "Not_Provided_By_Data_Source"
                  }
                }
              ],
              "possibleNormLawFirmArray": [
                {
                  "associatedNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormAttorney?pageNumber=1",
                  "associatedNormJudgeAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormJudges?pageNumber=1",
                  "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormParties?pageNumber=1",
                  "bestMatch": true,
                  "caseCountAnalyticsByNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByNormLawFirm?pageNumber=1",
                  "caseCountAnalyticsByOpposingNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByOpposingNormLawFirm?pageNumber=1",
                  "confidenceScore": 0.66,
                  "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111",
                  "normLawFirmId": "NLAF11111111111111",
                  "normLawFirmName": "MidLand Funding LLC",
                  "object": "PossibleNormLawFirm",
                  "scoreConstituents": {
                    "address": "Not_Provided_By_Data_Source",
                    "email": "Not_Provided_By_Data_Source",
                    "nameSimilarityScore": 0.8,
                    "otherPotentialNormLawFirms": 0,
                    "phone": "Not_Provided_By_Data_Source",
                    "secretaryOfStateId": "Not_Provided_By_Data_Source"
                  },
                  "sourceDetails": {
                    "linkedNormAttorneyIdArray": [
                      "NATY11111111111111"
                    ],
                    "source": "Case_Attorney_Linked_In_Other_Cases"
                  }
                }
              ],
              "sourceAttorneyType": "LEAD ATTORNEY"
            },
            {
              "attorneyId": "ATTYgqab86ec715ca3",
              "attorneyLawFirmArray": [
                {
                  "attorneyLawFirmId": "ALFIgq71e8f5f0fb00",
                  "firstFetchDate": "2021-08-21T07:04:41+00:00",
                  "isVisible": true,
                  "lastFetchDate": "2022-06-02T10:44:32+00:00",
                  "name": "Harpst Becker LLC",
                  "object": "AttorneyLawFirm"
                },
                {
                  "attorneyLawFirmId": "ALFIgq5a06db1c5385",
                  "firstFetchDate": "2020-02-18T18:45:13+00:00",
                  "isVisible": false,
                  "lastFetchDate": "2021-07-30T06:04:54+00:00",
                  "name": "Arnold & Schafer, Ltd.",
                  "object": "AttorneyLawFirm"
                }
              ],
              "attorneyType": {
                "attorneyTypeId": "ATYPWXtARwvzu5HLcf",
                "createdDate": "2022-03-28T04:59:12+00:00",
                "name": "Lead Attorney",
                "object": "AttorneyType"
              },
              "barNumber": null,
              "contact": {
                "addressArray": [
                  {
                    "city": "Uniontown",
                    "countryCode": "USA",
                    "countryName": "United States of America",
                    "firstFetchDate": "2020-02-18T18:45:16+00:00",
                    "isVisible": false,
                    "lastFetchDate": "2021-03-18T19:50:20+00:00",
                    "latitude": null,
                    "longitude": null,
                    "object": "Address",
                    "stateCode": "OH",
                    "stateName": "OHIO",
                    "streetAddress1": "3458 Massillon Rd.",
                    "streetAddress2": null,
                    "zip": "44685",
                    "zip4": null
                  },
                  {
                    "city": "Uniontown",
                    "countryCode": "USA",
                    "countryName": "United States of America",
                    "firstFetchDate": "2021-08-21T07:04:41+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2022-06-02T10:44:32+00:00",
                    "latitude": null,
                    "longitude": null,
                    "object": "Address",
                    "stateCode": "OH",
                    "stateName": "OHIO",
                    "streetAddress1": "1559 Corporate Woods Parkway, Suite 250",
                    "streetAddress2": null,
                    "zip": "44685",
                    "zip4": null
                  },
                  {
                    "city": "Uniontown",
                    "countryCode": "USA",
                    "countryName": "United States of America",
                    "firstFetchDate": "2021-07-21T06:55:46+00:00",
                    "isVisible": false,
                    "lastFetchDate": "2021-07-30T06:04:54+00:00",
                    "latitude": null,
                    "longitude": null,
                    "object": "Address",
                    "stateCode": "OH",
                    "stateName": "OHIO",
                    "streetAddress1": "3458 Massillon Rd.",
                    "streetAddress2": null,
                    "zip": "44685",
                    "zip4": null
                  }
                ],
                "emailArray": [
                  {
                    "emailId": "jmurphy@harpstbecker.com",
                    "firstFetchDate": "2021-08-21T07:04:41+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2022-06-02T10:44:32+00:00",
                    "object": "Email"
                  },
                  {
                    "emailId": "jmurphy@asalawfirm.com",
                    "firstFetchDate": "2020-02-18T18:45:16+00:00",
                    "isVisible": false,
                    "lastFetchDate": "2021-07-30T06:04:55+00:00",
                    "object": "Email"
                  }
                ],
                "object": "Contact",
                "phoneNumberArray": [
                  {
                    "firstFetchDate": "2020-02-18T18:45:16+00:00",
                    "isVisible": false,
                    "lastFetchDate": "2021-07-30T06:04:55+00:00",
                    "object": "Phone",
                    "phoneNumber": "3305634149",
                    "phoneType": "DEFAULT"
                  },
                  {
                    "firstFetchDate": "2020-02-18T18:45:16+00:00",
                    "isVisible": false,
                    "lastFetchDate": "2021-07-30T06:04:55+00:00",
                    "object": "Phone",
                    "phoneNumber": "2342940033",
                    "phoneType": "OFFICE"
                  },
                  {
                    "firstFetchDate": "2021-08-21T07:04:41+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2022-06-02T10:44:32+00:00",
                    "object": "Phone",
                    "phoneNumber": "330-983-9971",
                    "phoneType": "DEFAULT"
                  },
                  {
                    "firstFetchDate": "2021-08-21T07:04:41+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2022-06-02T10:44:32+00:00",
                    "object": "Phone",
                    "phoneNumber": "330-983-9981",
                    "phoneType": "OFFICE"
                  }
                ]
              },
              "firstFetchDate": "2020-02-18T18:45:16+00:00",
              "firstName": "John",
              "isVisible": true,
              "lastFetchDate": "2022-06-02T10:44:32+00:00",
              "lastName": "Murphy",
              "middleName": "A",
              "name": "John A Murphy, Jr.",
              "namePrefix": null,
              "nameSuffix": "Jr",
              "object": "Attorney",
              "partyAttorneyAssociations": {
                "nextPageAPI": null,
                "object": "PartyAttorneyAssociations",
                "pageNumber": 1,
                "partyAttorneyAssociationArray": [
                  {
                    "attorneyId": "ATTYgqab86ec715ca3",
                    "isVisible": false,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgq614c1e7ad046",
                    "partyId": "PRTYgqa538edc4d837"
                  },
                  {
                    "attorneyId": "ATTYgqab86ec715ca3",
                    "isVisible": false,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgq1134ac494ae1",
                    "partyId": "PRTYgq84e38781e3ff"
                  },
                  {
                    "attorneyId": "ATTYgqab86ec715ca3",
                    "isVisible": false,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgq25cb703ce988",
                    "partyId": "PRTYgqdd23c3da8750"
                  },
                  {
                    "attorneyId": "ATTYgqab86ec715ca3",
                    "isVisible": false,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgq668499e5b783",
                    "partyId": "PRTYgq0f7c101fbe7c"
                  }
                ],
                "totalCount": 4,
                "totalPages": 1
              },
              "partyRoleGroupIdArray": [
                "PTYGBnjxbx6tKNfVEP"
              ],
              "partyRoleIdArray": [
                "PTYR9F4zbteyj7ehmi"
              ],
              "possibleNormAttorneyArray": [
                {
                  "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormJudges?pageNumber=1",
                  "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormLawFirms?pageNumber=1",
                  "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormParties?pageNumber=1",
                  "bestMatch": true,
                  "caseCountAnalyticsByNormAttorneyAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByNormAttorney?pageNumber=1&q=normAttorneyId:NATY11111111111111",
                  "caseCountAnalyticsByOpposingNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByOpposingNormAttorney?pageNumber=1",
                  "confidenceScore": 0.5,
                  "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111",
                  "normAttorneyId": "NATY11111111111111",
                  "normAttorneyName": "ACOSTA S FERNANDO",
                  "object": "PossibleNormAttorney",
                  "scoreConstituents": {
                    "address": "Not_Provided_By_Data_Source",
                    "barId": "Not_Provided_By_Data_Source",
                    "email": "Not_Provided_By_Data_Source",
                    "lawFirm": "Not_Provided_By_Data_Source",
                    "nameSimilarityScore": 0.6,
                    "otherPotentialNormAttorneys": 0,
                    "phone": "Not_Provided_By_Data_Source"
                  }
                }
              ],
              "possibleNormLawFirmArray": [
                {
                  "associatedNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormAttorney?pageNumber=1",
                  "associatedNormJudgeAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormJudges?pageNumber=1",
                  "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormParties?pageNumber=1",
                  "bestMatch": true,
                  "caseCountAnalyticsByNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByNormLawFirm?pageNumber=1",
                  "caseCountAnalyticsByOpposingNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByOpposingNormLawFirm?pageNumber=1",
                  "confidenceScore": 0.66,
                  "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111",
                  "normLawFirmId": "NLAF11111111111111",
                  "normLawFirmName": "MidLand Funding LLC",
                  "object": "PossibleNormLawFirm",
                  "scoreConstituents": {
                    "address": "Not_Provided_By_Data_Source",
                    "email": "Not_Provided_By_Data_Source",
                    "nameSimilarityScore": 0.8,
                    "otherPotentialNormLawFirms": 0,
                    "phone": "Not_Provided_By_Data_Source",
                    "secretaryOfStateId": "Not_Provided_By_Data_Source"
                  },
                  "sourceDetails": {
                    "linkedNormAttorneyIdArray": [
                      "NATY11111111111111"
                    ],
                    "source": "Case_Attorney_Linked_In_Other_Cases"
                  }
                }
              ],
              "sourceAttorneyType": "LEAD ATTORNEY"
            },
            {
              "attorneyId": "ATTYgqf332ebb8118c",
              "attorneyLawFirmArray": [
                {
                  "attorneyLawFirmId": "ALFIgqab0fa33d3b1a",
                  "firstFetchDate": "2020-02-18T18:45:09+00:00",
                  "isVisible": true,
                  "lastFetchDate": "2022-06-02T10:44:27+00:00",
                  "name": "Thompson Hine & Flory",
                  "object": "AttorneyLawFirm"
                }
              ],
              "attorneyType": {
                "attorneyTypeId": "ATYPWXtARwvzu5HLcf",
                "createdDate": "2022-03-28T04:59:12+00:00",
                "name": "Lead Attorney",
                "object": "AttorneyType"
              },
              "barNumber": null,
              "contact": {
                "addressArray": [
                  {
                    "city": "Cleveland",
                    "countryCode": "USA",
                    "countryName": "United States of America",
                    "firstFetchDate": "2021-07-21T06:55:41+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2022-06-02T10:44:27+00:00",
                    "latitude": null,
                    "longitude": null,
                    "object": "Address",
                    "stateCode": "OH",
                    "stateName": "OHIO",
                    "streetAddress1": "127 Public Square",
                    "streetAddress2": null,
                    "zip": "44114",
                    "zip4": "1216"
                  },
                  {
                    "city": "Cleveland",
                    "countryCode": "USA",
                    "countryName": "United States of America",
                    "firstFetchDate": "2020-02-18T18:45:16+00:00",
                    "isVisible": false,
                    "lastFetchDate": "2021-03-18T19:50:20+00:00",
                    "latitude": null,
                    "longitude": null,
                    "object": "Address",
                    "stateCode": "OH",
                    "stateName": "OHIO",
                    "streetAddress1": "127 Public Square",
                    "streetAddress2": null,
                    "zip": "44114",
                    "zip4": "1216"
                  }
                ],
                "emailArray": [
                  {
                    "emailId": "dan.haymond@thompsonhine.com",
                    "firstFetchDate": "2020-02-18T18:45:16+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2022-06-02T10:44:27+00:00",
                    "object": "Email"
                  }
                ],
                "object": "Contact",
                "phoneNumberArray": [
                  {
                    "firstFetchDate": "2021-07-21T06:55:41+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2022-06-02T10:44:27+00:00",
                    "object": "Phone",
                    "phoneNumber": "216-566-5800",
                    "phoneType": "OFFICE"
                  },
                  {
                    "firstFetchDate": "2020-02-18T18:45:16+00:00",
                    "isVisible": false,
                    "lastFetchDate": "2021-03-18T19:50:20+00:00",
                    "object": "Phone",
                    "phoneNumber": "2165665500",
                    "phoneType": "DEFAULT"
                  },
                  {
                    "firstFetchDate": "2021-07-21T06:55:41+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2022-06-02T10:44:27+00:00",
                    "object": "Phone",
                    "phoneNumber": "216-566-5500",
                    "phoneType": "DEFAULT"
                  },
                  {
                    "firstFetchDate": "2020-02-18T18:45:16+00:00",
                    "isVisible": false,
                    "lastFetchDate": "2021-03-18T19:50:20+00:00",
                    "object": "Phone",
                    "phoneNumber": "2165665800",
                    "phoneType": "FAX"
                  }
                ]
              },
              "firstFetchDate": "2020-02-18T18:45:16+00:00",
              "firstName": "Daniel",
              "isVisible": true,
              "lastFetchDate": "2022-06-02T10:44:27+00:00",
              "lastName": "Haymond",
              "middleName": "M",
              "name": "Daniel M Haymond",
              "namePrefix": null,
              "nameSuffix": null,
              "object": "Attorney",
              "partyAttorneyAssociations": {
                "nextPageAPI": null,
                "object": "PartyAttorneyAssociations",
                "pageNumber": 1,
                "partyAttorneyAssociationArray": [
                  {
                    "attorneyId": "ATTYgqf332ebb8118c",
                    "isVisible": false,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgq5f6faffb0edc",
                    "partyId": "PRTYgq9b1887c17327"
                  },
                  {
                    "attorneyId": "ATTYgqf332ebb8118c",
                    "isVisible": false,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgq3c1eda4cb375",
                    "partyId": "PRTYgq0f5823f26653"
                  }
                ],
                "totalCount": 2,
                "totalPages": 1
              },
              "partyRoleGroupIdArray": [
                "PTYGBnjxbx6tKNfVEP"
              ],
              "partyRoleIdArray": [
                "PTYR9F4zbteyj7ehmi"
              ],
              "possibleNormAttorneyArray": [
                {
                  "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormJudges?pageNumber=1",
                  "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormLawFirms?pageNumber=1",
                  "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormParties?pageNumber=1",
                  "bestMatch": true,
                  "caseCountAnalyticsByNormAttorneyAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByNormAttorney?pageNumber=1&q=normAttorneyId:NATY11111111111111",
                  "caseCountAnalyticsByOpposingNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByOpposingNormAttorney?pageNumber=1",
                  "confidenceScore": 0.5,
                  "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111",
                  "normAttorneyId": "NATY11111111111111",
                  "normAttorneyName": "ACOSTA S FERNANDO",
                  "object": "PossibleNormAttorney",
                  "scoreConstituents": {
                    "address": "Not_Provided_By_Data_Source",
                    "barId": "Not_Provided_By_Data_Source",
                    "email": "Not_Provided_By_Data_Source",
                    "lawFirm": "Not_Provided_By_Data_Source",
                    "nameSimilarityScore": 0.6,
                    "otherPotentialNormAttorneys": 0,
                    "phone": "Not_Provided_By_Data_Source"
                  }
                }
              ],
              "possibleNormLawFirmArray": [
                {
                  "associatedNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormAttorney?pageNumber=1",
                  "associatedNormJudgeAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormJudges?pageNumber=1",
                  "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormParties?pageNumber=1",
                  "bestMatch": true,
                  "caseCountAnalyticsByNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByNormLawFirm?pageNumber=1",
                  "caseCountAnalyticsByOpposingNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByOpposingNormLawFirm?pageNumber=1",
                  "confidenceScore": 0.66,
                  "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111",
                  "normLawFirmId": "NLAF11111111111111",
                  "normLawFirmName": "MidLand Funding LLC",
                  "object": "PossibleNormLawFirm",
                  "scoreConstituents": {
                    "address": "Not_Provided_By_Data_Source",
                    "email": "Not_Provided_By_Data_Source",
                    "nameSimilarityScore": 0.8,
                    "otherPotentialNormLawFirms": 0,
                    "phone": "Not_Provided_By_Data_Source",
                    "secretaryOfStateId": "Not_Provided_By_Data_Source"
                  },
                  "sourceDetails": {
                    "linkedNormAttorneyIdArray": [
                      "NATY11111111111111"
                    ],
                    "source": "Case_Attorney_Linked_In_Other_Cases"
                  }
                }
              ],
              "sourceAttorneyType": "LEAD ATTORNEY"
            },
            {
              "attorneyId": "ATTYgqec86fd81c8bc",
              "attorneyLawFirmArray": [],
              "attorneyType": {
                "attorneyTypeId": "ATYPRPk3LNobYmtqwF",
                "createdDate": "2022-03-28T04:59:12+00:00",
                "name": "Attorney",
                "object": "AttorneyType"
              },
              "barNumber": null,
              "contact": {
                "addressArray": [
                  {
                    "city": "Canton",
                    "countryCode": "USA",
                    "countryName": "United States of America",
                    "firstFetchDate": "2020-02-18T18:45:16+00:00",
                    "isVisible": false,
                    "lastFetchDate": "2021-03-18T19:50:20+00:00",
                    "latitude": null,
                    "longitude": null,
                    "object": "Address",
                    "stateCode": "OH",
                    "stateName": "OHIO",
                    "streetAddress1": "4775 Munson St. NW, PO Box 36963",
                    "streetAddress2": null,
                    "zip": "44735",
                    "zip4": "6963"
                  },
                  {
                    "city": "Canton",
                    "countryCode": "USA",
                    "countryName": "United States of America",
                    "firstFetchDate": "2021-07-21T06:55:41+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2022-06-02T10:44:26+00:00",
                    "latitude": null,
                    "longitude": null,
                    "object": "Address",
                    "stateCode": "OH",
                    "stateName": "OHIO",
                    "streetAddress1": "4775 Munson St. NW",
                    "streetAddress2": "PO Box 36963",
                    "zip": "44735",
                    "zip4": "6963"
                  }
                ],
                "emailArray": [
                  {
                    "emailId": "bwilliams@kwgd.com",
                    "firstFetchDate": "2020-02-18T18:45:16+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2022-06-02T10:44:26+00:00",
                    "object": "Email"
                  }
                ],
                "object": "Contact",
                "phoneNumberArray": [
                  {
                    "firstFetchDate": "2021-07-21T06:55:41+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2022-06-02T10:44:26+00:00",
                    "object": "Phone",
                    "phoneNumber": "330 497 0700",
                    "phoneType": "DEFAULT"
                  },
                  {
                    "firstFetchDate": "2021-07-21T06:55:41+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2022-06-02T10:44:26+00:00",
                    "object": "Phone",
                    "phoneNumber": "330 497 4020",
                    "phoneType": "OFFICE"
                  },
                  {
                    "firstFetchDate": "2020-02-18T18:45:16+00:00",
                    "isVisible": false,
                    "lastFetchDate": "2021-03-18T19:50:20+00:00",
                    "object": "Phone",
                    "phoneNumber": "3304974020",
                    "phoneType": "FAX"
                  },
                  {
                    "firstFetchDate": "2020-02-18T18:45:16+00:00",
                    "isVisible": false,
                    "lastFetchDate": "2021-03-18T19:50:20+00:00",
                    "object": "Phone",
                    "phoneNumber": "3304970700",
                    "phoneType": "DEFAULT"
                  }
                ]
              },
              "firstFetchDate": "2020-02-18T18:45:16+00:00",
              "firstName": "William",
              "isVisible": true,
              "lastFetchDate": "2022-06-02T10:44:26+00:00",
              "lastName": "Williams",
              "middleName": "G",
              "name": "William G Williams",
              "namePrefix": null,
              "nameSuffix": null,
              "object": "Attorney",
              "partyAttorneyAssociations": {
                "nextPageAPI": null,
                "object": "PartyAttorneyAssociations",
                "pageNumber": 1,
                "partyAttorneyAssociationArray": [
                  {
                    "attorneyId": "ATTYgqec86fd81c8bc",
                    "isVisible": false,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgqffe4300ad980",
                    "partyId": "PRTYgqe09b66b02dfb"
                  },
                  {
                    "attorneyId": "ATTYgqec86fd81c8bc",
                    "isVisible": true,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgq8e63621b2565",
                    "partyId": "PRTYgqb9bfa88313f2"
                  },
                  {
                    "attorneyId": "ATTYgqec86fd81c8bc",
                    "isVisible": false,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgq225f2ed45819",
                    "partyId": "PRTYgqcf52a57b8982"
                  },
                  {
                    "attorneyId": "ATTYgqec86fd81c8bc",
                    "isVisible": false,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgqa4ceb36a4189",
                    "partyId": "PRTYgq99b238934485"
                  }
                ],
                "totalCount": 4,
                "totalPages": 1
              },
              "partyRoleGroupIdArray": [
                "PTYGBnjxbx6tKNfVEP"
              ],
              "partyRoleIdArray": [
                "PTYR9F4zbteyj7ehmi"
              ],
              "possibleNormAttorneyArray": [
                {
                  "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormJudges?pageNumber=1",
                  "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormLawFirms?pageNumber=1",
                  "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormParties?pageNumber=1",
                  "bestMatch": true,
                  "caseCountAnalyticsByNormAttorneyAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByNormAttorney?pageNumber=1&q=normAttorneyId:NATY11111111111111",
                  "caseCountAnalyticsByOpposingNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByOpposingNormAttorney?pageNumber=1",
                  "confidenceScore": 0.5,
                  "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111",
                  "normAttorneyId": "NATY11111111111111",
                  "normAttorneyName": "ACOSTA S FERNANDO",
                  "object": "PossibleNormAttorney",
                  "scoreConstituents": {
                    "address": "Not_Provided_By_Data_Source",
                    "barId": "Not_Provided_By_Data_Source",
                    "email": "Not_Provided_By_Data_Source",
                    "lawFirm": "Not_Provided_By_Data_Source",
                    "nameSimilarityScore": 0.6,
                    "otherPotentialNormAttorneys": 0,
                    "phone": "Not_Provided_By_Data_Source"
                  }
                }
              ],
              "possibleNormLawFirmArray": [
                {
                  "associatedNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormAttorney?pageNumber=1",
                  "associatedNormJudgeAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormJudges?pageNumber=1",
                  "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormParties?pageNumber=1",
                  "bestMatch": true,
                  "caseCountAnalyticsByNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByNormLawFirm?pageNumber=1",
                  "caseCountAnalyticsByOpposingNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByOpposingNormLawFirm?pageNumber=1",
                  "confidenceScore": 0.66,
                  "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111",
                  "normLawFirmId": "NLAF11111111111111",
                  "normLawFirmName": "MidLand Funding LLC",
                  "object": "PossibleNormLawFirm",
                  "scoreConstituents": {
                    "address": "Not_Provided_By_Data_Source",
                    "email": "Not_Provided_By_Data_Source",
                    "nameSimilarityScore": 0.8,
                    "otherPotentialNormLawFirms": 0,
                    "phone": "Not_Provided_By_Data_Source",
                    "secretaryOfStateId": "Not_Provided_By_Data_Source"
                  },
                  "sourceDetails": {
                    "linkedNormAttorneyIdArray": [
                      "NATY11111111111111"
                    ],
                    "source": "Case_Attorney_Linked_In_Other_Cases"
                  }
                }
              ],
              "sourceAttorneyType": "ATTORNEY"
            },
            {
              "attorneyId": "ATTYgq0d715c2e68e9",
              "attorneyLawFirmArray": [
                {
                  "attorneyLawFirmId": "ALFIgqdcba5c66ca1a",
                  "firstFetchDate": "2021-07-21T06:55:39+00:00",
                  "isVisible": false,
                  "lastFetchDate": "2022-04-01T08:08:15+00:00",
                  "name": "Weston Hurd LLP",
                  "object": "AttorneyLawFirm"
                },
                {
                  "attorneyLawFirmId": "ALFIgqeab484e71a0d",
                  "firstFetchDate": "2020-02-18T18:45:08+00:00",
                  "isVisible": false,
                  "lastFetchDate": "2020-02-18T18:45:08+00:00",
                  "name": "Weston Hurd, LLP",
                  "object": "AttorneyLawFirm"
                },
                {
                  "attorneyLawFirmId": "ALFIgq7c1b94127e1f",
                  "firstFetchDate": "2022-06-02T10:44:24+00:00",
                  "isVisible": true,
                  "lastFetchDate": "2022-06-02T10:44:24+00:00",
                  "name": "Ulmer & Berne LLP",
                  "object": "AttorneyLawFirm"
                }
              ],
              "attorneyType": {
                "attorneyTypeId": "ATYPRPk3LNobYmtqwF",
                "createdDate": "2022-03-28T04:59:12+00:00",
                "name": "Attorney",
                "object": "AttorneyType"
              },
              "barNumber": null,
              "contact": {
                "addressArray": [
                  {
                    "city": "Columbus",
                    "countryCode": "USA",
                    "countryName": "United States of America",
                    "firstFetchDate": "2022-06-02T10:44:24+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2022-06-02T10:44:24+00:00",
                    "latitude": null,
                    "longitude": null,
                    "object": "Address",
                    "stateCode": "OH",
                    "stateName": "OHIO",
                    "streetAddress1": "Suite 2400",
                    "streetAddress2": "65 East State Street",
                    "zip": "43215",
                    "zip4": null
                  },
                  {
                    "city": "Columbus",
                    "countryCode": "USA",
                    "countryName": "United States of America",
                    "firstFetchDate": "2021-07-21T06:55:39+00:00",
                    "isVisible": false,
                    "lastFetchDate": "2022-04-01T08:08:15+00:00",
                    "latitude": null,
                    "longitude": null,
                    "object": "Address",
                    "stateCode": "OH",
                    "stateName": "OHIO",
                    "streetAddress1": "Suite 2400",
                    "streetAddress2": "101 East Town Street",
                    "zip": "43215",
                    "zip4": null
                  },
                  {
                    "city": "Columbus",
                    "countryCode": "USA",
                    "countryName": "United States of America",
                    "firstFetchDate": "2020-02-18T18:45:16+00:00",
                    "isVisible": false,
                    "lastFetchDate": "2021-03-18T19:50:20+00:00",
                    "latitude": null,
                    "longitude": null,
                    "object": "Address",
                    "stateCode": "OH",
                    "stateName": "OHIO",
                    "streetAddress1": "Suite 2400, 101 West Broad St.",
                    "streetAddress2": null,
                    "zip": "43215",
                    "zip4": null
                  }
                ],
                "emailArray": [
                  {
                    "emailId": "jberns@ulmer.com",
                    "firstFetchDate": "2022-06-02T10:44:24+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2022-06-02T10:44:24+00:00",
                    "object": "Email"
                  },
                  {
                    "emailId": "jberns@westonhurd.com",
                    "firstFetchDate": "2020-02-18T18:45:16+00:00",
                    "isVisible": false,
                    "lastFetchDate": "2022-04-01T08:08:15+00:00",
                    "object": "Email"
                  }
                ],
                "object": "Contact",
                "phoneNumberArray": [
                  {
                    "firstFetchDate": "2021-07-21T06:55:39+00:00",
                    "isVisible": false,
                    "lastFetchDate": "2022-04-01T08:08:15+00:00",
                    "object": "Phone",
                    "phoneNumber": "614-280-0200",
                    "phoneType": "DEFAULT"
                  },
                  {
                    "firstFetchDate": "2021-07-21T06:55:39+00:00",
                    "isVisible": false,
                    "lastFetchDate": "2022-04-01T08:08:15+00:00",
                    "object": "Phone",
                    "phoneNumber": "614-280-0204",
                    "phoneType": "OFFICE"
                  },
                  {
                    "firstFetchDate": "2022-06-02T10:44:24+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2022-06-02T10:44:24+00:00",
                    "object": "Phone",
                    "phoneNumber": "614-229-0041",
                    "phoneType": "OFFICE"
                  },
                  {
                    "firstFetchDate": "2020-02-18T18:45:16+00:00",
                    "isVisible": false,
                    "lastFetchDate": "2021-03-18T19:50:20+00:00",
                    "object": "Phone",
                    "phoneNumber": "6142800200",
                    "phoneType": "DEFAULT"
                  },
                  {
                    "firstFetchDate": "2020-02-18T18:45:16+00:00",
                    "isVisible": false,
                    "lastFetchDate": "2021-03-18T19:50:20+00:00",
                    "object": "Phone",
                    "phoneNumber": "6142800204",
                    "phoneType": "FAX"
                  },
                  {
                    "firstFetchDate": "2022-06-02T10:44:24+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2022-06-02T10:44:24+00:00",
                    "object": "Phone",
                    "phoneNumber": "614-229-0040",
                    "phoneType": "DEFAULT"
                  }
                ]
              },
              "firstFetchDate": "2020-02-18T18:45:16+00:00",
              "firstName": "Joshua",
              "isVisible": true,
              "lastFetchDate": "2022-06-02T10:44:24+00:00",
              "lastName": "Berns",
              "middleName": "C",
              "name": "Joshua C. Berns",
              "namePrefix": null,
              "nameSuffix": null,
              "object": "Attorney",
              "partyAttorneyAssociations": {
                "nextPageAPI": null,
                "object": "PartyAttorneyAssociations",
                "pageNumber": 1,
                "partyAttorneyAssociationArray": [
                  {
                    "attorneyId": "ATTYgq0d715c2e68e9",
                    "isVisible": true,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgqa29b3c439a4e",
                    "partyId": "PRTYgq9042259f5750"
                  }
                ],
                "totalCount": 1,
                "totalPages": 1
              },
              "partyRoleGroupIdArray": [
                "PTYGBnjxbx6tKNfVEP"
              ],
              "partyRoleIdArray": [
                "PTYR9F4zbteyj7ehmi"
              ],
              "possibleNormAttorneyArray": [
                {
                  "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormJudges?pageNumber=1",
                  "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormLawFirms?pageNumber=1",
                  "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormParties?pageNumber=1",
                  "bestMatch": true,
                  "caseCountAnalyticsByNormAttorneyAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByNormAttorney?pageNumber=1&q=normAttorneyId:NATY11111111111111",
                  "caseCountAnalyticsByOpposingNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByOpposingNormAttorney?pageNumber=1",
                  "confidenceScore": 0.5,
                  "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111",
                  "normAttorneyId": "NATY11111111111111",
                  "normAttorneyName": "ACOSTA S FERNANDO",
                  "object": "PossibleNormAttorney",
                  "scoreConstituents": {
                    "address": "Not_Provided_By_Data_Source",
                    "barId": "Not_Provided_By_Data_Source",
                    "email": "Not_Provided_By_Data_Source",
                    "lawFirm": "Not_Provided_By_Data_Source",
                    "nameSimilarityScore": 0.6,
                    "otherPotentialNormAttorneys": 0,
                    "phone": "Not_Provided_By_Data_Source"
                  }
                }
              ],
              "possibleNormLawFirmArray": [
                {
                  "associatedNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormAttorney?pageNumber=1",
                  "associatedNormJudgeAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormJudges?pageNumber=1",
                  "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormParties?pageNumber=1",
                  "bestMatch": true,
                  "caseCountAnalyticsByNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByNormLawFirm?pageNumber=1",
                  "caseCountAnalyticsByOpposingNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByOpposingNormLawFirm?pageNumber=1",
                  "confidenceScore": 0.66,
                  "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111",
                  "normLawFirmId": "NLAF11111111111111",
                  "normLawFirmName": "MidLand Funding LLC",
                  "object": "PossibleNormLawFirm",
                  "scoreConstituents": {
                    "address": "Not_Provided_By_Data_Source",
                    "email": "Not_Provided_By_Data_Source",
                    "nameSimilarityScore": 0.8,
                    "otherPotentialNormLawFirms": 0,
                    "phone": "Not_Provided_By_Data_Source",
                    "secretaryOfStateId": "Not_Provided_By_Data_Source"
                  },
                  "sourceDetails": {
                    "linkedNormAttorneyIdArray": [
                      "NATY11111111111111"
                    ],
                    "source": "Case_Attorney_Linked_In_Other_Cases"
                  }
                }
              ],
              "sourceAttorneyType": "ATTORNEY"
            },
            {
              "attorneyId": "ATTYgq2ab06adf6dc7",
              "attorneyLawFirmArray": [
                {
                  "attorneyLawFirmId": "ALFIgq640dedc817f0",
                  "firstFetchDate": "2020-02-18T18:45:08+00:00",
                  "isVisible": false,
                  "lastFetchDate": "2020-02-18T18:45:08+00:00",
                  "name": "Goldman & Braunstein, LLP",
                  "object": "AttorneyLawFirm"
                },
                {
                  "attorneyLawFirmId": "ALFIgq688f023e76c1",
                  "firstFetchDate": "2021-07-21T06:55:38+00:00",
                  "isVisible": true,
                  "lastFetchDate": "2022-06-02T10:44:23+00:00",
                  "name": "Goldman Braunstein Stahler Kenter LLP",
                  "object": "AttorneyLawFirm"
                }
              ],
              "attorneyType": {
                "attorneyTypeId": "ATYPWXtARwvzu5HLcf",
                "createdDate": "2022-03-28T04:59:12+00:00",
                "name": "Lead Attorney",
                "object": "AttorneyType"
              },
              "barNumber": null,
              "contact": {
                "addressArray": [
                  {
                    "city": "Columbus",
                    "countryCode": "USA",
                    "countryName": "United States of America",
                    "firstFetchDate": "2020-02-18T18:45:16+00:00",
                    "isVisible": false,
                    "lastFetchDate": "2020-03-17T19:37:28+00:00",
                    "latitude": null,
                    "longitude": null,
                    "object": "Address",
                    "stateCode": "OH",
                    "stateName": "OHIO",
                    "streetAddress1": "500 South Front Street",
                    "streetAddress2": null,
                    "zip": "43215",
                    "zip4": null
                  },
                  {
                    "city": "Columbus",
                    "countryCode": "USA",
                    "countryName": "United States of America",
                    "firstFetchDate": "2021-07-21T06:55:38+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2022-06-02T10:44:23+00:00",
                    "latitude": null,
                    "longitude": null,
                    "object": "Address",
                    "stateCode": "OH",
                    "stateName": "OHIO",
                    "streetAddress1": "500 South Front Street",
                    "streetAddress2": "Suite 1200",
                    "zip": "43215",
                    "zip4": null
                  },
                  {
                    "city": "Columbus",
                    "countryCode": "USA",
                    "countryName": "United States of America",
                    "firstFetchDate": "2020-04-10T05:56:58+00:00",
                    "isVisible": false,
                    "lastFetchDate": "2021-03-18T19:50:20+00:00",
                    "latitude": null,
                    "longitude": null,
                    "object": "Address",
                    "stateCode": "OH",
                    "stateName": "OHIO",
                    "streetAddress1": "500 South Front Street, Suite 1200",
                    "streetAddress2": null,
                    "zip": "43215",
                    "zip4": null
                  }
                ],
                "emailArray": [
                  {
                    "emailId": "stahler@GBLegal.net",
                    "firstFetchDate": "2020-02-18T18:45:16+00:00",
                    "isVisible": false,
                    "lastFetchDate": "2020-03-17T19:37:28+00:00",
                    "object": "Email"
                  },
                  {
                    "emailId": "stahler@GBSKlaw.com",
                    "firstFetchDate": "2020-04-10T05:56:58+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2022-06-02T10:44:23+00:00",
                    "object": "Email"
                  }
                ],
                "object": "Contact",
                "phoneNumberArray": [
                  {
                    "firstFetchDate": "2021-07-21T06:55:38+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2022-06-02T10:44:23+00:00",
                    "object": "Phone",
                    "phoneNumber": "614-229-4512",
                    "phoneType": "DEFAULT"
                  },
                  {
                    "firstFetchDate": "2020-02-18T18:45:16+00:00",
                    "isVisible": false,
                    "lastFetchDate": "2020-03-17T19:37:28+00:00",
                    "object": "Phone",
                    "phoneNumber": "6142294512",
                    "phoneType": "DEFAULT"
                  },
                  {
                    "firstFetchDate": "2020-02-18T18:45:16+00:00",
                    "isVisible": false,
                    "lastFetchDate": "2020-03-17T19:37:28+00:00",
                    "object": "Phone",
                    "phoneNumber": "5132294568",
                    "phoneType": "FAX"
                  },
                  {
                    "firstFetchDate": "2020-04-10T05:56:58+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2022-06-02T10:44:23+00:00",
                    "object": "Phone",
                    "phoneNumber": "6142294568",
                    "phoneType": "OFFICE"
                  }
                ]
              },
              "firstFetchDate": "2020-02-18T18:45:16+00:00",
              "firstName": "Clinton",
              "isVisible": true,
              "lastFetchDate": "2022-06-02T10:44:23+00:00",
              "lastName": "Stahler",
              "middleName": "Patrick",
              "name": "Clinton Patrick Stahler",
              "namePrefix": null,
              "nameSuffix": null,
              "object": "Attorney",
              "partyAttorneyAssociations": {
                "nextPageAPI": "https://enterpriseapi.unicourt.com/attorney/ATTYgq2ab06adf6dc7/associatedParties?pageNumber=2",
                "object": "PartyAttorneyAssociations",
                "pageNumber": 1,
                "partyAttorneyAssociationArray": [
                  {
                    "attorneyId": "ATTYgq2ab06adf6dc7",
                    "isVisible": false,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgq087b75634af1",
                    "partyId": "PRTYgq7e672ea4e538"
                  },
                  {
                    "attorneyId": "ATTYgq2ab06adf6dc7",
                    "isVisible": true,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgq6a36356e468d",
                    "partyId": "PRTYgqe128d713aace"
                  },
                  {
                    "attorneyId": "ATTYgq2ab06adf6dc7",
                    "isVisible": false,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgq69a090998f45",
                    "partyId": "PRTYgqf8f68045e230"
                  },
                  {
                    "attorneyId": "ATTYgq2ab06adf6dc7",
                    "isVisible": false,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgq22831c39937b",
                    "partyId": "PRTYgqf7880b041a6b"
                  },
                  {
                    "attorneyId": "ATTYgq2ab06adf6dc7",
                    "isVisible": false,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgq7480031bebe8",
                    "partyId": "PRTYgqc91ada2cfd09"
                  },
                  {
                    "attorneyId": "ATTYgq2ab06adf6dc7",
                    "isVisible": false,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgq9ba9eb3769aa",
                    "partyId": "PRTYgq47b83775465e"
                  },
                  {
                    "attorneyId": "ATTYgq2ab06adf6dc7",
                    "isVisible": true,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgqdf981ec07eb5",
                    "partyId": "PRTYgq6b5f1ac9b77a"
                  },
                  {
                    "attorneyId": "ATTYgq2ab06adf6dc7",
                    "isVisible": false,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgqbe0f4e633ae5",
                    "partyId": "PRTYgq9a8fe31c52d8"
                  },
                  {
                    "attorneyId": "ATTYgq2ab06adf6dc7",
                    "isVisible": false,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgqb89b2e75de9e",
                    "partyId": "PRTYgq35b0b1908be6"
                  },
                  {
                    "attorneyId": "ATTYgq2ab06adf6dc7",
                    "isVisible": true,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgqc7442065d655",
                    "partyId": "PRTYgq7ba3f6316581"
                  },
                  {
                    "attorneyId": "ATTYgq2ab06adf6dc7",
                    "isVisible": false,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgqcafd66bd1e6a",
                    "partyId": "PRTYgq72f06fc18870"
                  },
                  {
                    "attorneyId": "ATTYgq2ab06adf6dc7",
                    "isVisible": false,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgqc1c33f5ce689",
                    "partyId": "PRTYgq5d30c49d93ae"
                  },
                  {
                    "attorneyId": "ATTYgq2ab06adf6dc7",
                    "isVisible": false,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgqb1bd524f2daf",
                    "partyId": "PRTYgq8df03462b8e5"
                  },
                  {
                    "attorneyId": "ATTYgq2ab06adf6dc7",
                    "isVisible": false,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgq1b003493409f",
                    "partyId": "PRTYgq25a418fda5e8"
                  },
                  {
                    "attorneyId": "ATTYgq2ab06adf6dc7",
                    "isVisible": false,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgq14f082c389fd",
                    "partyId": "PRTYgqe904d176cc8b"
                  },
                  {
                    "attorneyId": "ATTYgq2ab06adf6dc7",
                    "isVisible": false,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgqe75350e259ae",
                    "partyId": "PRTYgqf7bc2e917525"
                  },
                  {
                    "attorneyId": "ATTYgq2ab06adf6dc7",
                    "isVisible": true,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgq234bc6406c8f",
                    "partyId": "PRTYgqe33b2cd3686f"
                  },
                  {
                    "attorneyId": "ATTYgq2ab06adf6dc7",
                    "isVisible": false,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgqac65d075d695",
                    "partyId": "PRTYgqf2004a30d1dc"
                  },
                  {
                    "attorneyId": "ATTYgq2ab06adf6dc7",
                    "isVisible": false,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgq005318ac8031",
                    "partyId": "PRTYgq66404406d5fc"
                  },
                  {
                    "attorneyId": "ATTYgq2ab06adf6dc7",
                    "isVisible": false,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgqc7f71ea3ae94",
                    "partyId": "PRTYgq56212155c0b9"
                  },
                  {
                    "attorneyId": "ATTYgq2ab06adf6dc7",
                    "isVisible": false,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgqa066d5b915f7",
                    "partyId": "PRTYgqec945c620eeb"
                  },
                  {
                    "attorneyId": "ATTYgq2ab06adf6dc7",
                    "isVisible": false,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgqba0b63c44d1a",
                    "partyId": "PRTYgqfba8ff0400e0"
                  },
                  {
                    "attorneyId": "ATTYgq2ab06adf6dc7",
                    "isVisible": false,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgq9c886ae98385",
                    "partyId": "PRTYgqf8a26ce4207f"
                  },
                  {
                    "attorneyId": "ATTYgq2ab06adf6dc7",
                    "isVisible": false,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgq3aab5ff96770",
                    "partyId": "PRTYgq670e3add2dcd"
                  },
                  {
                    "attorneyId": "ATTYgq2ab06adf6dc7",
                    "isVisible": true,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgqa3ed5b95faf7",
                    "partyId": "PRTYgq8224243b1308"
                  }
                ],
                "totalCount": 57,
                "totalPages": 3
              },
              "partyRoleGroupIdArray": [
                "PTYGBnjxbx6tKNfVEP"
              ],
              "partyRoleIdArray": [
                "PTYR9F4zbteyj7ehmi"
              ],
              "possibleNormAttorneyArray": [
                {
                  "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormJudges?pageNumber=1",
                  "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormLawFirms?pageNumber=1",
                  "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormParties?pageNumber=1",
                  "bestMatch": true,
                  "caseCountAnalyticsByNormAttorneyAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByNormAttorney?pageNumber=1&q=normAttorneyId:NATY11111111111111",
                  "caseCountAnalyticsByOpposingNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByOpposingNormAttorney?pageNumber=1",
                  "confidenceScore": 0.5,
                  "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111",
                  "normAttorneyId": "NATY11111111111111",
                  "normAttorneyName": "ACOSTA S FERNANDO",
                  "object": "PossibleNormAttorney",
                  "scoreConstituents": {
                    "address": "Not_Provided_By_Data_Source",
                    "barId": "Not_Provided_By_Data_Source",
                    "email": "Not_Provided_By_Data_Source",
                    "lawFirm": "Not_Provided_By_Data_Source",
                    "nameSimilarityScore": 0.6,
                    "otherPotentialNormAttorneys": 0,
                    "phone": "Not_Provided_By_Data_Source"
                  }
                }
              ],
              "possibleNormLawFirmArray": [
                {
                  "associatedNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormAttorney?pageNumber=1",
                  "associatedNormJudgeAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormJudges?pageNumber=1",
                  "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormParties?pageNumber=1",
                  "bestMatch": true,
                  "caseCountAnalyticsByNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByNormLawFirm?pageNumber=1",
                  "caseCountAnalyticsByOpposingNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByOpposingNormLawFirm?pageNumber=1",
                  "confidenceScore": 0.66,
                  "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111",
                  "normLawFirmId": "NLAF11111111111111",
                  "normLawFirmName": "MidLand Funding LLC",
                  "object": "PossibleNormLawFirm",
                  "scoreConstituents": {
                    "address": "Not_Provided_By_Data_Source",
                    "email": "Not_Provided_By_Data_Source",
                    "nameSimilarityScore": 0.8,
                    "otherPotentialNormLawFirms": 0,
                    "phone": "Not_Provided_By_Data_Source",
                    "secretaryOfStateId": "Not_Provided_By_Data_Source"
                  },
                  "sourceDetails": {
                    "linkedNormAttorneyIdArray": [
                      "NATY11111111111111"
                    ],
                    "source": "Case_Attorney_Linked_In_Other_Cases"
                  }
                }
              ],
              "sourceAttorneyType": "LEAD ATTORNEY"
            },
            {
              "attorneyId": "ATTYgq9f5080bc9d53",
              "attorneyLawFirmArray": [
                {
                  "attorneyLawFirmId": "ALFIgq47051fc1f217",
                  "firstFetchDate": "2020-02-18T18:45:08+00:00",
                  "isVisible": false,
                  "lastFetchDate": "2020-02-18T18:45:08+00:00",
                  "name": "Taft Stettinius & Hollister LLP",
                  "object": "AttorneyLawFirm"
                },
                {
                  "attorneyLawFirmId": "ALFIgq4edc3febc143",
                  "firstFetchDate": "2020-04-10T05:56:45+00:00",
                  "isVisible": true,
                  "lastFetchDate": "2022-06-02T10:44:21+00:00",
                  "name": "Fisher Law Firm, LLC",
                  "object": "AttorneyLawFirm"
                }
              ],
              "attorneyType": {
                "attorneyTypeId": "ATYPWXtARwvzu5HLcf",
                "createdDate": "2022-03-28T04:59:12+00:00",
                "name": "Lead Attorney",
                "object": "AttorneyType"
              },
              "barNumber": null,
              "contact": {
                "addressArray": [
                  {
                    "city": "Columbus",
                    "countryCode": "USA",
                    "countryName": "United States of America",
                    "firstFetchDate": "2020-04-10T05:56:58+00:00",
                    "isVisible": false,
                    "lastFetchDate": "2021-03-18T19:50:21+00:00",
                    "latitude": null,
                    "longitude": null,
                    "object": "Address",
                    "stateCode": "OH",
                    "stateName": "OHIO",
                    "streetAddress1": "454 East Main Street, Suite 275",
                    "streetAddress2": null,
                    "zip": "43215",
                    "zip4": "5393"
                  },
                  {
                    "city": "Columbus",
                    "countryCode": "USA",
                    "countryName": "United States of America",
                    "firstFetchDate": "2020-02-18T18:45:16+00:00",
                    "isVisible": false,
                    "lastFetchDate": "2020-03-17T19:37:28+00:00",
                    "latitude": null,
                    "longitude": null,
                    "object": "Address",
                    "stateCode": "OH",
                    "stateName": "OHIO",
                    "streetAddress1": "65 E State St",
                    "streetAddress2": null,
                    "zip": "43215",
                    "zip4": "8210"
                  },
                  {
                    "city": "Columbus",
                    "countryCode": "USA",
                    "countryName": "United States of America",
                    "firstFetchDate": "2021-07-21T06:55:37+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2022-06-02T10:44:21+00:00",
                    "latitude": null,
                    "longitude": null,
                    "object": "Address",
                    "stateCode": "OH",
                    "stateName": "OHIO",
                    "streetAddress1": "454 East Main Street",
                    "streetAddress2": "Suite 275",
                    "zip": "43215",
                    "zip4": "5393"
                  }
                ],
                "emailArray": [
                  {
                    "emailId": "cpaynter@taftlaw.com",
                    "firstFetchDate": "2020-02-18T18:45:16+00:00",
                    "isVisible": false,
                    "lastFetchDate": "2020-03-17T19:37:28+00:00",
                    "object": "Email"
                  },
                  {
                    "emailId": "cpaynter@FisherConstructionLaw.com",
                    "firstFetchDate": "2020-04-10T05:56:58+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2022-06-02T10:44:21+00:00",
                    "object": "Email"
                  }
                ],
                "object": "Contact",
                "phoneNumberArray": [
                  {
                    "firstFetchDate": "2021-07-21T06:55:37+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2022-06-02T10:44:21+00:00",
                    "object": "Phone",
                    "phoneNumber": "(614) 906-6988",
                    "phoneType": "DEFAULT"
                  },
                  {
                    "firstFetchDate": "2020-04-10T05:56:58+00:00",
                    "isVisible": false,
                    "lastFetchDate": "2021-03-18T19:50:21+00:00",
                    "object": "Phone",
                    "phoneNumber": "6149066988",
                    "phoneType": "DEFAULT"
                  },
                  {
                    "firstFetchDate": "2020-02-18T18:45:16+00:00",
                    "isVisible": false,
                    "lastFetchDate": "2020-03-17T19:37:28+00:00",
                    "object": "Phone",
                    "phoneNumber": "6142212838",
                    "phoneType": "DEFAULT"
                  },
                  {
                    "firstFetchDate": "2020-02-18T18:45:16+00:00",
                    "isVisible": false,
                    "lastFetchDate": "2020-03-17T19:37:28+00:00",
                    "object": "Phone",
                    "phoneNumber": "6142212007",
                    "phoneType": "FAX"
                  }
                ]
              },
              "firstFetchDate": "2020-02-18T18:45:16+00:00",
              "firstName": "Craig",
              "isVisible": true,
              "lastFetchDate": "2022-06-02T10:44:21+00:00",
              "lastName": "Paynter",
              "middleName": "Beaton",
              "name": "Craig Beaton Paynter",
              "namePrefix": null,
              "nameSuffix": null,
              "object": "Attorney",
              "partyAttorneyAssociations": {
                "nextPageAPI": null,
                "object": "PartyAttorneyAssociations",
                "pageNumber": 1,
                "partyAttorneyAssociationArray": [
                  {
                    "attorneyId": "ATTYgq9f5080bc9d53",
                    "isVisible": true,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgq48dd42ee887c",
                    "partyId": "PRTYgq1de8cc84fbe5"
                  }
                ],
                "totalCount": 1,
                "totalPages": 1
              },
              "partyRoleGroupIdArray": [
                "PTYGBnjxbx6tKNfVEP"
              ],
              "partyRoleIdArray": [
                "PTYR9F4zbteyj7ehmi"
              ],
              "possibleNormAttorneyArray": [
                {
                  "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormJudges?pageNumber=1",
                  "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormLawFirms?pageNumber=1",
                  "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormParties?pageNumber=1",
                  "bestMatch": true,
                  "caseCountAnalyticsByNormAttorneyAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByNormAttorney?pageNumber=1&q=normAttorneyId:NATY11111111111111",
                  "caseCountAnalyticsByOpposingNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByOpposingNormAttorney?pageNumber=1",
                  "confidenceScore": 0.5,
                  "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111",
                  "normAttorneyId": "NATY11111111111111",
                  "normAttorneyName": "ACOSTA S FERNANDO",
                  "object": "PossibleNormAttorney",
                  "scoreConstituents": {
                    "address": "Not_Provided_By_Data_Source",
                    "barId": "Not_Provided_By_Data_Source",
                    "email": "Not_Provided_By_Data_Source",
                    "lawFirm": "Not_Provided_By_Data_Source",
                    "nameSimilarityScore": 0.6,
                    "otherPotentialNormAttorneys": 0,
                    "phone": "Not_Provided_By_Data_Source"
                  }
                }
              ],
              "possibleNormLawFirmArray": [
                {
                  "associatedNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormAttorney?pageNumber=1",
                  "associatedNormJudgeAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormJudges?pageNumber=1",
                  "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormParties?pageNumber=1",
                  "bestMatch": true,
                  "caseCountAnalyticsByNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByNormLawFirm?pageNumber=1",
                  "caseCountAnalyticsByOpposingNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByOpposingNormLawFirm?pageNumber=1",
                  "confidenceScore": 0.66,
                  "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111",
                  "normLawFirmId": "NLAF11111111111111",
                  "normLawFirmName": "MidLand Funding LLC",
                  "object": "PossibleNormLawFirm",
                  "scoreConstituents": {
                    "address": "Not_Provided_By_Data_Source",
                    "email": "Not_Provided_By_Data_Source",
                    "nameSimilarityScore": 0.8,
                    "otherPotentialNormLawFirms": 0,
                    "phone": "Not_Provided_By_Data_Source",
                    "secretaryOfStateId": "Not_Provided_By_Data_Source"
                  },
                  "sourceDetails": {
                    "linkedNormAttorneyIdArray": [
                      "NATY11111111111111"
                    ],
                    "source": "Case_Attorney_Linked_In_Other_Cases"
                  }
                }
              ],
              "sourceAttorneyType": "LEAD ATTORNEY"
            },
            {
              "attorneyId": "ATTYgqec086336860f",
              "attorneyLawFirmArray": [
                {
                  "attorneyLawFirmId": "ALFIgq1acd2f2bcad3",
                  "firstFetchDate": "2020-02-18T18:45:12+00:00",
                  "isVisible": true,
                  "lastFetchDate": "2022-06-02T10:44:31+00:00",
                  "name": "Carpenter Lipps & Leland LLP",
                  "object": "AttorneyLawFirm"
                }
              ],
              "attorneyType": {
                "attorneyTypeId": "ATYPWXtARwvzu5HLcf",
                "createdDate": "2022-03-28T04:59:12+00:00",
                "name": "Lead Attorney",
                "object": "AttorneyType"
              },
              "barNumber": null,
              "contact": {
                "addressArray": [
                  {
                    "city": "Columbus",
                    "countryCode": "USA",
                    "countryName": "United States of America",
                    "firstFetchDate": "2021-07-21T06:55:45+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2022-06-02T10:44:31+00:00",
                    "latitude": null,
                    "longitude": null,
                    "object": "Address",
                    "stateCode": "OH",
                    "stateName": "OHIO",
                    "streetAddress1": "280 North High Street",
                    "streetAddress2": null,
                    "zip": "43215",
                    "zip4": null
                  },
                  {
                    "city": "Columbus",
                    "countryCode": "USA",
                    "countryName": "United States of America",
                    "firstFetchDate": "2020-02-18T18:45:16+00:00",
                    "isVisible": false,
                    "lastFetchDate": "2021-03-18T19:50:21+00:00",
                    "latitude": null,
                    "longitude": null,
                    "object": "Address",
                    "stateCode": "OH",
                    "stateName": "OHIO",
                    "streetAddress1": "280 North High Street",
                    "streetAddress2": null,
                    "zip": "43215",
                    "zip4": null
                  }
                ],
                "emailArray": [
                  {
                    "emailId": "bricker@carpenterlipps.com",
                    "firstFetchDate": "2020-02-18T18:45:16+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2022-06-02T10:44:31+00:00",
                    "object": "Email"
                  }
                ],
                "object": "Contact",
                "phoneNumberArray": [
                  {
                    "firstFetchDate": "2021-07-21T06:55:45+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2022-06-02T10:44:31+00:00",
                    "object": "Phone",
                    "phoneNumber": "614-365-4100",
                    "phoneType": "DEFAULT"
                  },
                  {
                    "firstFetchDate": "2021-07-21T06:55:45+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2022-06-02T10:44:31+00:00",
                    "object": "Phone",
                    "phoneNumber": "614-365-9145",
                    "phoneType": "OFFICE"
                  },
                  {
                    "firstFetchDate": "2020-02-18T18:45:16+00:00",
                    "isVisible": false,
                    "lastFetchDate": "2021-03-18T19:50:21+00:00",
                    "object": "Phone",
                    "phoneNumber": "6143659145",
                    "phoneType": "FAX"
                  },
                  {
                    "firstFetchDate": "2020-02-18T18:45:16+00:00",
                    "isVisible": false,
                    "lastFetchDate": "2021-03-18T19:50:21+00:00",
                    "object": "Phone",
                    "phoneNumber": "6143654100",
                    "phoneType": "DEFAULT"
                  }
                ]
              },
              "firstFetchDate": "2020-02-18T18:45:16+00:00",
              "firstName": "Timothy",
              "isVisible": true,
              "lastFetchDate": "2022-06-02T10:44:31+00:00",
              "lastName": "Bricker",
              "middleName": "R",
              "name": "Timothy R Bricker",
              "namePrefix": null,
              "nameSuffix": null,
              "object": "Attorney",
              "partyAttorneyAssociations": {
                "nextPageAPI": null,
                "object": "PartyAttorneyAssociations",
                "pageNumber": 1,
                "partyAttorneyAssociationArray": [
                  {
                    "attorneyId": "ATTYgqec086336860f",
                    "isVisible": false,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgq0f236ada088f",
                    "partyId": "PRTYgq75d3c93839f0"
                  }
                ],
                "totalCount": 1,
                "totalPages": 1
              },
              "partyRoleGroupIdArray": [
                "PTYGBnjxbx6tKNfVEP"
              ],
              "partyRoleIdArray": [
                "PTYR9F4zbteyj7ehmi"
              ],
              "possibleNormAttorneyArray": [
                {
                  "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormJudges?pageNumber=1",
                  "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormLawFirms?pageNumber=1",
                  "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormParties?pageNumber=1",
                  "bestMatch": true,
                  "caseCountAnalyticsByNormAttorneyAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByNormAttorney?pageNumber=1&q=normAttorneyId:NATY11111111111111",
                  "caseCountAnalyticsByOpposingNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByOpposingNormAttorney?pageNumber=1",
                  "confidenceScore": 0.5,
                  "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111",
                  "normAttorneyId": "NATY11111111111111",
                  "normAttorneyName": "ACOSTA S FERNANDO",
                  "object": "PossibleNormAttorney",
                  "scoreConstituents": {
                    "address": "Not_Provided_By_Data_Source",
                    "barId": "Not_Provided_By_Data_Source",
                    "email": "Not_Provided_By_Data_Source",
                    "lawFirm": "Not_Provided_By_Data_Source",
                    "nameSimilarityScore": 0.6,
                    "otherPotentialNormAttorneys": 0,
                    "phone": "Not_Provided_By_Data_Source"
                  }
                }
              ],
              "possibleNormLawFirmArray": [
                {
                  "associatedNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormAttorney?pageNumber=1",
                  "associatedNormJudgeAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormJudges?pageNumber=1",
                  "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormParties?pageNumber=1",
                  "bestMatch": true,
                  "caseCountAnalyticsByNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByNormLawFirm?pageNumber=1",
                  "caseCountAnalyticsByOpposingNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByOpposingNormLawFirm?pageNumber=1",
                  "confidenceScore": 0.66,
                  "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111",
                  "normLawFirmId": "NLAF11111111111111",
                  "normLawFirmName": "MidLand Funding LLC",
                  "object": "PossibleNormLawFirm",
                  "scoreConstituents": {
                    "address": "Not_Provided_By_Data_Source",
                    "email": "Not_Provided_By_Data_Source",
                    "nameSimilarityScore": 0.8,
                    "otherPotentialNormLawFirms": 0,
                    "phone": "Not_Provided_By_Data_Source",
                    "secretaryOfStateId": "Not_Provided_By_Data_Source"
                  },
                  "sourceDetails": {
                    "linkedNormAttorneyIdArray": [
                      "NATY11111111111111"
                    ],
                    "source": "Case_Attorney_Linked_In_Other_Cases"
                  }
                }
              ],
              "sourceAttorneyType": "LEAD ATTORNEY"
            },
            {
              "attorneyId": "ATTYgq88055b063459",
              "attorneyLawFirmArray": [
                {
                  "attorneyLawFirmId": "ALFIgqcaad4ad668e9",
                  "firstFetchDate": "2020-02-18T18:45:09+00:00",
                  "isVisible": true,
                  "lastFetchDate": "2022-06-02T10:44:25+00:00",
                  "name": "Krugliak Wilkins Griffiths & Dougherty Co LPA",
                  "object": "AttorneyLawFirm"
                }
              ],
              "attorneyType": {
                "attorneyTypeId": "ATYPWXtARwvzu5HLcf",
                "createdDate": "2022-03-28T04:59:12+00:00",
                "name": "Lead Attorney",
                "object": "AttorneyType"
              },
              "barNumber": null,
              "contact": {
                "addressArray": [
                  {
                    "city": "Canton",
                    "countryCode": "USA",
                    "countryName": "United States of America",
                    "firstFetchDate": "2020-02-18T18:45:16+00:00",
                    "isVisible": false,
                    "lastFetchDate": "2021-03-18T19:50:21+00:00",
                    "latitude": null,
                    "longitude": null,
                    "object": "Address",
                    "stateCode": "OH",
                    "stateName": "OHIO",
                    "streetAddress1": "4775 Munson Street NW, PO Box 36963",
                    "streetAddress2": null,
                    "zip": "44735",
                    "zip4": "6963"
                  },
                  {
                    "city": "Canton",
                    "countryCode": "USA",
                    "countryName": "United States of America",
                    "firstFetchDate": "2021-07-21T06:55:40+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2022-06-02T10:44:25+00:00",
                    "latitude": null,
                    "longitude": null,
                    "object": "Address",
                    "stateCode": "OH",
                    "stateName": "OHIO",
                    "streetAddress1": "4775 Munson Street NW",
                    "streetAddress2": "PO Box 36963",
                    "zip": "44735",
                    "zip4": "6963"
                  }
                ],
                "emailArray": [
                  {
                    "emailId": "szurakowski@kwgd.com",
                    "firstFetchDate": "2020-02-18T18:45:16+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2022-06-02T10:44:25+00:00",
                    "object": "Email"
                  }
                ],
                "object": "Contact",
                "phoneNumberArray": [
                  {
                    "firstFetchDate": "2021-07-21T06:55:40+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2022-06-02T10:44:25+00:00",
                    "object": "Phone",
                    "phoneNumber": "330-497-0700",
                    "phoneType": "DEFAULT"
                  },
                  {
                    "firstFetchDate": "2020-02-18T18:45:16+00:00",
                    "isVisible": false,
                    "lastFetchDate": "2021-03-18T19:50:21+00:00",
                    "object": "Phone",
                    "phoneNumber": "3304970700",
                    "phoneType": "DEFAULT"
                  },
                  {
                    "firstFetchDate": "2020-02-18T18:45:16+00:00",
                    "isVisible": false,
                    "lastFetchDate": "2021-03-18T19:50:21+00:00",
                    "object": "Phone",
                    "phoneNumber": "3304974020",
                    "phoneType": "FAX"
                  },
                  {
                    "firstFetchDate": "2021-07-21T06:55:40+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2022-06-02T10:44:25+00:00",
                    "object": "Phone",
                    "phoneNumber": "330-497-4020",
                    "phoneType": "OFFICE"
                  }
                ]
              },
              "firstFetchDate": "2020-02-18T18:45:16+00:00",
              "firstName": "Scott",
              "isVisible": true,
              "lastFetchDate": "2022-06-02T10:44:25+00:00",
              "lastName": "Zurakowski",
              "middleName": "M",
              "name": "Scott M Zurakowski",
              "namePrefix": null,
              "nameSuffix": null,
              "object": "Attorney",
              "partyAttorneyAssociations": {
                "nextPageAPI": null,
                "object": "PartyAttorneyAssociations",
                "pageNumber": 1,
                "partyAttorneyAssociationArray": [
                  {
                    "attorneyId": "ATTYgq88055b063459",
                    "isVisible": false,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgqf4a85346f0e4",
                    "partyId": "PRTYgq53f7f39aa3c2"
                  },
                  {
                    "attorneyId": "ATTYgq88055b063459",
                    "isVisible": false,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgq8739604c36c4",
                    "partyId": "PRTYgqe09b66b02dfb"
                  },
                  {
                    "attorneyId": "ATTYgq88055b063459",
                    "isVisible": true,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgq0f928be47709",
                    "partyId": "PRTYgqb654cb6db836"
                  },
                  {
                    "attorneyId": "ATTYgq88055b063459",
                    "isVisible": true,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgq8f744a07eda1",
                    "partyId": "PRTYgqb9bfa88313f2"
                  },
                  {
                    "attorneyId": "ATTYgq88055b063459",
                    "isVisible": false,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgqe9d3899d2dbf",
                    "partyId": "PRTYgqcf52a57b8982"
                  },
                  {
                    "attorneyId": "ATTYgq88055b063459",
                    "isVisible": false,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgqfef704acd7b7",
                    "partyId": "PRTYgq99b238934485"
                  },
                  {
                    "attorneyId": "ATTYgq88055b063459",
                    "isVisible": true,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgq1276cbccf718",
                    "partyId": "PRTYgq3a57530624a1"
                  }
                ],
                "totalCount": 7,
                "totalPages": 1
              },
              "partyRoleGroupIdArray": [
                "PTYGBnjxbx6tKNfVEP"
              ],
              "partyRoleIdArray": [
                "PTYR9F4zbteyj7ehmi"
              ],
              "possibleNormAttorneyArray": [
                {
                  "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormJudges?pageNumber=1",
                  "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormLawFirms?pageNumber=1",
                  "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormParties?pageNumber=1",
                  "bestMatch": true,
                  "caseCountAnalyticsByNormAttorneyAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByNormAttorney?pageNumber=1&q=normAttorneyId:NATY11111111111111",
                  "caseCountAnalyticsByOpposingNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByOpposingNormAttorney?pageNumber=1",
                  "confidenceScore": 0.5,
                  "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111",
                  "normAttorneyId": "NATY11111111111111",
                  "normAttorneyName": "ACOSTA S FERNANDO",
                  "object": "PossibleNormAttorney",
                  "scoreConstituents": {
                    "address": "Not_Provided_By_Data_Source",
                    "barId": "Not_Provided_By_Data_Source",
                    "email": "Not_Provided_By_Data_Source",
                    "lawFirm": "Not_Provided_By_Data_Source",
                    "nameSimilarityScore": 0.6,
                    "otherPotentialNormAttorneys": 0,
                    "phone": "Not_Provided_By_Data_Source"
                  }
                }
              ],
              "possibleNormLawFirmArray": [
                {
                  "associatedNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormAttorney?pageNumber=1",
                  "associatedNormJudgeAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormJudges?pageNumber=1",
                  "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormParties?pageNumber=1",
                  "bestMatch": true,
                  "caseCountAnalyticsByNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByNormLawFirm?pageNumber=1",
                  "caseCountAnalyticsByOpposingNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByOpposingNormLawFirm?pageNumber=1",
                  "confidenceScore": 0.66,
                  "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111",
                  "normLawFirmId": "NLAF11111111111111",
                  "normLawFirmName": "MidLand Funding LLC",
                  "object": "PossibleNormLawFirm",
                  "scoreConstituents": {
                    "address": "Not_Provided_By_Data_Source",
                    "email": "Not_Provided_By_Data_Source",
                    "nameSimilarityScore": 0.8,
                    "otherPotentialNormLawFirms": 0,
                    "phone": "Not_Provided_By_Data_Source",
                    "secretaryOfStateId": "Not_Provided_By_Data_Source"
                  },
                  "sourceDetails": {
                    "linkedNormAttorneyIdArray": [
                      "NATY11111111111111"
                    ],
                    "source": "Case_Attorney_Linked_In_Other_Cases"
                  }
                }
              ],
              "sourceAttorneyType": "LEAD ATTORNEY"
            }
          ],
          "nextPageAPI": "https://enterpriseapi.unicourt.com/case/CASEgq5943bd47a6d2/attorneys?pageNumber=2",
          "object": "Attorneys",
          "pageNumber": 1,
          "totalCount": 100,
          "totalPages": 4
        }
      },
      "CaseApiCaseDocumentResponse": {
        "value": {
          "addedToLibraryDate": null,
          "caseDocumentId": "CDOCag3e5eba43b870",
          "childDocumentIdArray": [],
          "description": "7/1/2022: Reply - Reply",
          "documentFiledDate": "2022-07-01T00:00:00+00:00",
          "downloadAPI": null,
          "estimatedOrderDuration": "withinMinutes",
          "firstFetchDate": "2022-07-17T18:20:45+00:00",
          "inLibrary": false,
          "isPreviewAvailable": true,
          "name": "Reply - Reply",
          "object": "CaseDocument",
          "pages": 14,
          "parentDocumentId": null,
          "previewDocument": {
            "addedToLibraryDate": "2022-07-28T12:30:30+00:00",
            "downloadAPI": "https://enterpriseapi.unicourt.com/caseDocumentDownload/CDOCag3e5eba43b870?isPreviewDocument=true",
            "inLibrary": true,
            "object": "PreviewDocument"
          },
          "price": 10.75,
          "sortOrder": 10,
          "sourceDataStatus": null
        }
      },
      "CaseApiCaseDocumentsResponse": {
        "value": {
          "caseDocumentArray": [
            {
              "addedToLibraryDate": null,
              "caseDocumentId": "CDOCdg061858270895",
              "childDocumentIdArray": [],
              "description": null,
              "documentFiledDate": "2022-07-20T00:00:00+00:00",
              "downloadAPI": null,
              "estimatedOrderDuration": "withinMinutes",
              "firstFetchDate": "2022-07-29T05:33:27+00:00",
              "inLibrary": false,
              "isPreviewAvailable": false,
              "name": "27",
              "object": "CaseDocument",
              "pages": 2,
              "parentDocumentId": null,
              "previewDocument": null,
              "price": 0.2,
              "sortOrder": null,
              "sourceDataStatus": null
            },
            {
              "addedToLibraryDate": null,
              "caseDocumentId": "CDOCdg8be799f2bd54",
              "childDocumentIdArray": [],
              "description": "Text of Proposed Order Proposed Order",
              "documentFiledDate": "2022-06-30T00:00:00+00:00",
              "downloadAPI": null,
              "estimatedOrderDuration": "withinMinutes",
              "firstFetchDate": "2022-07-29T05:33:26+00:00",
              "inLibrary": false,
              "isPreviewAvailable": false,
              "name": "26 #1",
              "object": "CaseDocument",
              "pages": 2,
              "parentDocumentId": "CDOCdgd7e239088210",
              "previewDocument": null,
              "price": 0.2,
              "sortOrder": null,
              "sourceDataStatus": null
            },
            {
              "addedToLibraryDate": null,
              "caseDocumentId": "CDOCdgd7e239088210",
              "childDocumentIdArray": [
                "CDOCdg8be799f2bd54"
              ],
              "description": null,
              "documentFiledDate": "2022-06-30T00:00:00+00:00",
              "downloadAPI": null,
              "estimatedOrderDuration": "withinMinutes",
              "firstFetchDate": "2022-07-29T05:33:26+00:00",
              "inLibrary": false,
              "isPreviewAvailable": false,
              "name": "26",
              "object": "CaseDocument",
              "pages": 3,
              "parentDocumentId": null,
              "previewDocument": null,
              "price": 0.3,
              "sortOrder": null,
              "sourceDataStatus": null
            },
            {
              "addedToLibraryDate": null,
              "caseDocumentId": "CDOCdga22a295065b6",
              "childDocumentIdArray": [],
              "description": null,
              "documentFiledDate": "2022-05-18T00:00:00+00:00",
              "downloadAPI": null,
              "estimatedOrderDuration": "withinMinutes",
              "firstFetchDate": "2022-07-29T05:33:25+00:00",
              "inLibrary": false,
              "isPreviewAvailable": false,
              "name": "25",
              "object": "CaseDocument",
              "pages": 2,
              "parentDocumentId": null,
              "previewDocument": null,
              "price": 0.2,
              "sortOrder": null,
              "sourceDataStatus": null
            },
            {
              "addedToLibraryDate": null,
              "caseDocumentId": "CDOCdg91423506970c",
              "childDocumentIdArray": [],
              "description": null,
              "documentFiledDate": "2022-03-10T00:00:00+00:00",
              "downloadAPI": null,
              "estimatedOrderDuration": "withinMinutes",
              "firstFetchDate": "2022-07-29T05:33:24+00:00",
              "inLibrary": false,
              "isPreviewAvailable": false,
              "name": "24",
              "object": "CaseDocument",
              "pages": 3,
              "parentDocumentId": null,
              "previewDocument": null,
              "price": 0.3,
              "sortOrder": null,
              "sourceDataStatus": null
            },
            {
              "addedToLibraryDate": null,
              "caseDocumentId": "CDOCdg4ef8b83cf35e",
              "childDocumentIdArray": [],
              "description": "Ex. D - 03.06.2022 Email",
              "documentFiledDate": "2022-03-09T00:00:00+00:00",
              "downloadAPI": null,
              "estimatedOrderDuration": "withinMinutes",
              "firstFetchDate": "2022-07-29T05:33:23+00:00",
              "inLibrary": false,
              "isPreviewAvailable": false,
              "name": "23 #4",
              "object": "CaseDocument",
              "pages": 2,
              "parentDocumentId": "CDOCdgff754455e089",
              "previewDocument": null,
              "price": 0.2,
              "sortOrder": null,
              "sourceDataStatus": null
            },
            {
              "addedToLibraryDate": null,
              "caseDocumentId": "CDOCdgb895c655406a",
              "childDocumentIdArray": [],
              "description": "Ex. C - 02.28.2022 Email and Notice",
              "documentFiledDate": "2022-03-09T00:00:00+00:00",
              "downloadAPI": null,
              "estimatedOrderDuration": "withinMinutes",
              "firstFetchDate": "2022-07-29T05:33:23+00:00",
              "inLibrary": false,
              "isPreviewAvailable": false,
              "name": "23 #3",
              "object": "CaseDocument",
              "pages": 3,
              "parentDocumentId": "CDOCdgff754455e089",
              "previewDocument": null,
              "price": 0.3,
              "sortOrder": null,
              "sourceDataStatus": null
            },
            {
              "addedToLibraryDate": null,
              "caseDocumentId": "CDOCdgd2a9185c873c",
              "childDocumentIdArray": [],
              "description": "Ex. B - 02.24.2022 Email",
              "documentFiledDate": "2022-03-09T00:00:00+00:00",
              "downloadAPI": null,
              "estimatedOrderDuration": "withinMinutes",
              "firstFetchDate": "2022-07-29T05:33:23+00:00",
              "inLibrary": false,
              "isPreviewAvailable": false,
              "name": "23 #2",
              "object": "CaseDocument",
              "pages": 1,
              "parentDocumentId": "CDOCdgff754455e089",
              "previewDocument": null,
              "price": 0.1,
              "sortOrder": null,
              "sourceDataStatus": null
            },
            {
              "addedToLibraryDate": null,
              "caseDocumentId": "CDOCdg3b3f6449ed63",
              "childDocumentIdArray": [],
              "description": "Ex. A - 02.10.2022 Email",
              "documentFiledDate": "2022-03-09T00:00:00+00:00",
              "downloadAPI": null,
              "estimatedOrderDuration": "withinMinutes",
              "firstFetchDate": "2022-07-29T05:33:23+00:00",
              "inLibrary": false,
              "isPreviewAvailable": false,
              "name": "23 #1",
              "object": "CaseDocument",
              "pages": 2,
              "parentDocumentId": "CDOCdgff754455e089",
              "previewDocument": null,
              "price": 0.2,
              "sortOrder": null,
              "sourceDataStatus": null
            },
            {
              "addedToLibraryDate": null,
              "caseDocumentId": "CDOCdgff754455e089",
              "childDocumentIdArray": [
                "CDOCdg3b3f6449ed63",
                "CDOCdgd2a9185c873c",
                "CDOCdgb895c655406a",
                "CDOCdg4ef8b83cf35e"
              ],
              "description": null,
              "documentFiledDate": "2022-03-09T00:00:00+00:00",
              "downloadAPI": null,
              "estimatedOrderDuration": "withinMinutes",
              "firstFetchDate": "2022-07-29T05:33:23+00:00",
              "inLibrary": false,
              "isPreviewAvailable": false,
              "name": "23",
              "object": "CaseDocument",
              "pages": 2,
              "parentDocumentId": null,
              "previewDocument": null,
              "price": 0.2,
              "sortOrder": null,
              "sourceDataStatus": null
            },
            {
              "addedToLibraryDate": null,
              "caseDocumentId": "CDOCdg35015b0de3fd",
              "childDocumentIdArray": [],
              "description": null,
              "documentFiledDate": "2022-03-09T00:00:00+00:00",
              "downloadAPI": null,
              "estimatedOrderDuration": "withinMinutes",
              "firstFetchDate": "2022-07-29T05:33:22+00:00",
              "inLibrary": false,
              "isPreviewAvailable": false,
              "name": "22",
              "object": "CaseDocument",
              "pages": 4,
              "parentDocumentId": null,
              "previewDocument": null,
              "price": 0.4,
              "sortOrder": null,
              "sourceDataStatus": null
            },
            {
              "addedToLibraryDate": null,
              "caseDocumentId": "CDOCdgb95d4631b24e",
              "childDocumentIdArray": [],
              "description": null,
              "documentFiledDate": "2022-03-03T00:00:00+00:00",
              "downloadAPI": null,
              "estimatedOrderDuration": "withinMinutes",
              "firstFetchDate": "2022-07-29T05:33:21+00:00",
              "inLibrary": false,
              "isPreviewAvailable": false,
              "name": "21",
              "object": "CaseDocument",
              "pages": 4,
              "parentDocumentId": null,
              "previewDocument": null,
              "price": 0.4,
              "sortOrder": null,
              "sourceDataStatus": null
            },
            {
              "addedToLibraryDate": null,
              "caseDocumentId": "CDOCdgbdfd5206a3d2",
              "childDocumentIdArray": [],
              "description": null,
              "documentFiledDate": "2022-02-24T00:00:00+00:00",
              "downloadAPI": null,
              "estimatedOrderDuration": "withinMinutes",
              "firstFetchDate": "2022-07-29T05:33:20+00:00",
              "inLibrary": false,
              "isPreviewAvailable": false,
              "name": "20",
              "object": "CaseDocument",
              "pages": 4,
              "parentDocumentId": null,
              "previewDocument": null,
              "price": 0.4,
              "sortOrder": null,
              "sourceDataStatus": null
            },
            {
              "addedToLibraryDate": null,
              "caseDocumentId": "CDOCdg833d7b542694",
              "childDocumentIdArray": [],
              "description": null,
              "documentFiledDate": "2022-02-18T00:00:00+00:00",
              "downloadAPI": null,
              "estimatedOrderDuration": "withinMinutes",
              "firstFetchDate": "2022-07-29T05:33:19+00:00",
              "inLibrary": false,
              "isPreviewAvailable": false,
              "name": "19",
              "object": "CaseDocument",
              "pages": 2,
              "parentDocumentId": null,
              "previewDocument": null,
              "price": 0.2,
              "sortOrder": null,
              "sourceDataStatus": null
            },
            {
              "addedToLibraryDate": null,
              "caseDocumentId": "CDOCdgd3ef50519128",
              "childDocumentIdArray": [],
              "description": null,
              "documentFiledDate": "2022-02-17T00:00:00+00:00",
              "downloadAPI": null,
              "estimatedOrderDuration": "withinMinutes",
              "firstFetchDate": "2022-07-29T05:33:18+00:00",
              "inLibrary": false,
              "isPreviewAvailable": false,
              "name": "18",
              "object": "CaseDocument",
              "pages": 2,
              "parentDocumentId": null,
              "previewDocument": null,
              "price": 0.2,
              "sortOrder": null,
              "sourceDataStatus": null
            },
            {
              "addedToLibraryDate": null,
              "caseDocumentId": "CDOCdg6f3924468196",
              "childDocumentIdArray": [],
              "description": null,
              "documentFiledDate": "2022-02-17T00:00:00+00:00",
              "downloadAPI": null,
              "estimatedOrderDuration": "withinMinutes",
              "firstFetchDate": "2022-07-29T05:33:17+00:00",
              "inLibrary": false,
              "isPreviewAvailable": false,
              "name": "17",
              "object": "CaseDocument",
              "pages": 3,
              "parentDocumentId": null,
              "previewDocument": null,
              "price": 0.3,
              "sortOrder": null,
              "sourceDataStatus": null
            },
            {
              "addedToLibraryDate": null,
              "caseDocumentId": "CDOCdge19f743b1c09",
              "childDocumentIdArray": [],
              "description": "Exhibit H - 01.27.2022 Email",
              "documentFiledDate": "2022-01-31T00:00:00+00:00",
              "downloadAPI": null,
              "estimatedOrderDuration": "withinMinutes",
              "firstFetchDate": "2022-07-29T05:33:16+00:00",
              "inLibrary": false,
              "isPreviewAvailable": false,
              "name": "16 #8",
              "object": "CaseDocument",
              "pages": 2,
              "parentDocumentId": "CDOCdg3a7fd8559998",
              "previewDocument": null,
              "price": 0.2,
              "sortOrder": null,
              "sourceDataStatus": null
            },
            {
              "addedToLibraryDate": null,
              "caseDocumentId": "CDOCdg48a057a7fdd6",
              "childDocumentIdArray": [],
              "description": "Exhibit G - UW Madison Subpoena",
              "documentFiledDate": "2022-01-31T00:00:00+00:00",
              "downloadAPI": null,
              "estimatedOrderDuration": "withinMinutes",
              "firstFetchDate": "2022-07-29T05:33:16+00:00",
              "inLibrary": false,
              "isPreviewAvailable": false,
              "name": "16 #7",
              "object": "CaseDocument",
              "pages": 3,
              "parentDocumentId": "CDOCdg3a7fd8559998",
              "previewDocument": null,
              "price": 0.3,
              "sortOrder": null,
              "sourceDataStatus": null
            },
            {
              "addedToLibraryDate": null,
              "caseDocumentId": "CDOCdg41c80e94a5f7",
              "childDocumentIdArray": [],
              "description": "Exhibit F - Dane County Subpoena",
              "documentFiledDate": "2022-01-31T00:00:00+00:00",
              "downloadAPI": null,
              "estimatedOrderDuration": "withinMinutes",
              "firstFetchDate": "2022-07-29T05:33:16+00:00",
              "inLibrary": false,
              "isPreviewAvailable": false,
              "name": "16 #6",
              "object": "CaseDocument",
              "pages": 3,
              "parentDocumentId": "CDOCdg3a7fd8559998",
              "previewDocument": null,
              "price": 0.3,
              "sortOrder": null,
              "sourceDataStatus": null
            },
            {
              "addedToLibraryDate": null,
              "caseDocumentId": "CDOCdgd62877ffee10",
              "childDocumentIdArray": [],
              "description": "Exhibit E - 01.09.2022 Email",
              "documentFiledDate": "2022-01-31T00:00:00+00:00",
              "downloadAPI": null,
              "estimatedOrderDuration": "withinMinutes",
              "firstFetchDate": "2022-07-29T05:33:16+00:00",
              "inLibrary": false,
              "isPreviewAvailable": false,
              "name": "16 #5",
              "object": "CaseDocument",
              "pages": 1,
              "parentDocumentId": "CDOCdg3a7fd8559998",
              "previewDocument": null,
              "price": 0.1,
              "sortOrder": null,
              "sourceDataStatus": null
            },
            {
              "addedToLibraryDate": null,
              "caseDocumentId": "CDOCdgdee6af0f1a79",
              "childDocumentIdArray": [],
              "description": "Exhibit D - Schrinsky Subpoena",
              "documentFiledDate": "2022-01-31T00:00:00+00:00",
              "downloadAPI": null,
              "estimatedOrderDuration": "withinMinutes",
              "firstFetchDate": "2022-07-29T05:33:16+00:00",
              "inLibrary": false,
              "isPreviewAvailable": false,
              "name": "16 #4",
              "object": "CaseDocument",
              "pages": 4,
              "parentDocumentId": "CDOCdg3a7fd8559998",
              "previewDocument": null,
              "price": 0.4,
              "sortOrder": null,
              "sourceDataStatus": null
            },
            {
              "addedToLibraryDate": null,
              "caseDocumentId": "CDOCdgf1fc189797b9",
              "childDocumentIdArray": [],
              "description": "Exhibit C - Williams Subpoena",
              "documentFiledDate": "2022-01-31T00:00:00+00:00",
              "downloadAPI": null,
              "estimatedOrderDuration": "withinMinutes",
              "firstFetchDate": "2022-07-29T05:33:16+00:00",
              "inLibrary": false,
              "isPreviewAvailable": false,
              "name": "16 #3",
              "object": "CaseDocument",
              "pages": 4,
              "parentDocumentId": "CDOCdg3a7fd8559998",
              "previewDocument": null,
              "price": 0.4,
              "sortOrder": null,
              "sourceDataStatus": null
            },
            {
              "addedToLibraryDate": null,
              "caseDocumentId": "CDOCdg5e2fee95f055",
              "childDocumentIdArray": [],
              "description": "Exhibit B - Bauman Subpoena",
              "documentFiledDate": "2022-01-31T00:00:00+00:00",
              "downloadAPI": null,
              "estimatedOrderDuration": "withinMinutes",
              "firstFetchDate": "2022-07-29T05:33:16+00:00",
              "inLibrary": false,
              "isPreviewAvailable": false,
              "name": "16 #2",
              "object": "CaseDocument",
              "pages": 4,
              "parentDocumentId": "CDOCdg3a7fd8559998",
              "previewDocument": null,
              "price": 0.4,
              "sortOrder": null,
              "sourceDataStatus": null
            },
            {
              "addedToLibraryDate": null,
              "caseDocumentId": "CDOCdge43523bb0799",
              "childDocumentIdArray": [],
              "description": "Exhibit A - 01.07.2022 Email",
              "documentFiledDate": "2022-01-31T00:00:00+00:00",
              "downloadAPI": null,
              "estimatedOrderDuration": "withinMinutes",
              "firstFetchDate": "2022-07-29T05:33:16+00:00",
              "inLibrary": false,
              "isPreviewAvailable": false,
              "name": "16 #1",
              "object": "CaseDocument",
              "pages": 2,
              "parentDocumentId": "CDOCdg3a7fd8559998",
              "previewDocument": null,
              "price": 0.2,
              "sortOrder": null,
              "sourceDataStatus": null
            },
            {
              "addedToLibraryDate": null,
              "caseDocumentId": "CDOCdg3a7fd8559998",
              "childDocumentIdArray": [
                "CDOCdge43523bb0799",
                "CDOCdg5e2fee95f055",
                "CDOCdgf1fc189797b9",
                "CDOCdgdee6af0f1a79",
                "CDOCdgd62877ffee10",
                "CDOCdg41c80e94a5f7",
                "CDOCdg48a057a7fdd6",
                "CDOCdge19f743b1c09"
              ],
              "description": null,
              "documentFiledDate": "2022-01-31T00:00:00+00:00",
              "downloadAPI": null,
              "estimatedOrderDuration": "withinMinutes",
              "firstFetchDate": "2022-07-29T05:33:16+00:00",
              "inLibrary": false,
              "isPreviewAvailable": false,
              "name": "16",
              "object": "CaseDocument",
              "pages": 2,
              "parentDocumentId": null,
              "previewDocument": null,
              "price": 0.2,
              "sortOrder": null,
              "sourceDataStatus": null
            },
            {
              "addedToLibraryDate": null,
              "caseDocumentId": "CDOCdgbf97e795dae6",
              "childDocumentIdArray": [],
              "description": null,
              "documentFiledDate": "2022-01-31T00:00:00+00:00",
              "downloadAPI": null,
              "estimatedOrderDuration": "withinMinutes",
              "firstFetchDate": "2022-07-29T05:33:15+00:00",
              "inLibrary": false,
              "isPreviewAvailable": false,
              "name": "15",
              "object": "CaseDocument",
              "pages": 10,
              "parentDocumentId": null,
              "previewDocument": null,
              "price": 1,
              "sortOrder": null,
              "sourceDataStatus": null
            },
            {
              "addedToLibraryDate": null,
              "caseDocumentId": "CDOCdg8de71b143fe1",
              "childDocumentIdArray": [],
              "description": null,
              "documentFiledDate": "2022-01-25T00:00:00+00:00",
              "downloadAPI": null,
              "estimatedOrderDuration": "withinMinutes",
              "firstFetchDate": "2022-07-29T05:33:14+00:00",
              "inLibrary": false,
              "isPreviewAvailable": false,
              "name": "14",
              "object": "CaseDocument",
              "pages": 2,
              "parentDocumentId": null,
              "previewDocument": null,
              "price": 0.2,
              "sortOrder": null,
              "sourceDataStatus": null
            },
            {
              "addedToLibraryDate": null,
              "caseDocumentId": "CDOCdgd4aabe7c3388",
              "childDocumentIdArray": [],
              "description": null,
              "documentFiledDate": "2022-01-25T00:00:00+00:00",
              "downloadAPI": null,
              "estimatedOrderDuration": "withinMinutes",
              "firstFetchDate": "2022-07-29T05:33:13+00:00",
              "inLibrary": false,
              "isPreviewAvailable": false,
              "name": "13",
              "object": "CaseDocument",
              "pages": 1,
              "parentDocumentId": null,
              "previewDocument": null,
              "price": 0.1,
              "sortOrder": null,
              "sourceDataStatus": null
            },
            {
              "addedToLibraryDate": null,
              "caseDocumentId": "CDOCdg2e6b1d3ecf36",
              "childDocumentIdArray": [],
              "description": null,
              "documentFiledDate": "2022-01-04T00:00:00+00:00",
              "downloadAPI": null,
              "estimatedOrderDuration": "withinMinutes",
              "firstFetchDate": "2022-07-29T05:33:12+00:00",
              "inLibrary": false,
              "isPreviewAvailable": false,
              "name": "12",
              "object": "CaseDocument",
              "pages": 6,
              "parentDocumentId": null,
              "previewDocument": null,
              "price": 0.6,
              "sortOrder": null,
              "sourceDataStatus": null
            },
            {
              "addedToLibraryDate": null,
              "caseDocumentId": "CDOCdg2a6c033f7696",
              "childDocumentIdArray": [],
              "description": null,
              "documentFiledDate": "2021-12-07T00:00:00+00:00",
              "downloadAPI": null,
              "estimatedOrderDuration": "withinMinutes",
              "firstFetchDate": "2022-07-29T05:33:12+00:00",
              "inLibrary": false,
              "isPreviewAvailable": false,
              "name": "11",
              "object": "CaseDocument",
              "pages": 2,
              "parentDocumentId": null,
              "previewDocument": null,
              "price": 0.2,
              "sortOrder": null,
              "sourceDataStatus": null
            },
            {
              "addedToLibraryDate": null,
              "caseDocumentId": "CDOCdg972a164d9076",
              "childDocumentIdArray": [],
              "description": null,
              "documentFiledDate": "2021-12-06T00:00:00+00:00",
              "downloadAPI": null,
              "estimatedOrderDuration": "withinMinutes",
              "firstFetchDate": "2022-07-29T05:33:11+00:00",
              "inLibrary": false,
              "isPreviewAvailable": false,
              "name": "10",
              "object": "CaseDocument",
              "pages": 1,
              "parentDocumentId": null,
              "previewDocument": null,
              "price": 0.1,
              "sortOrder": null,
              "sourceDataStatus": null
            },
            {
              "addedToLibraryDate": null,
              "caseDocumentId": "CDOCdg353d4496842a",
              "childDocumentIdArray": [],
              "description": null,
              "documentFiledDate": "2021-12-03T00:00:00+00:00",
              "downloadAPI": null,
              "estimatedOrderDuration": "withinMinutes",
              "firstFetchDate": "2022-07-29T05:33:10+00:00",
              "inLibrary": false,
              "isPreviewAvailable": false,
              "name": "9",
              "object": "CaseDocument",
              "pages": 2,
              "parentDocumentId": null,
              "previewDocument": null,
              "price": 0.2,
              "sortOrder": null,
              "sourceDataStatus": null
            },
            {
              "addedToLibraryDate": null,
              "caseDocumentId": "CDOCdgca98a15d5a20",
              "childDocumentIdArray": [],
              "description": null,
              "documentFiledDate": "2021-12-03T00:00:00+00:00",
              "downloadAPI": null,
              "estimatedOrderDuration": "withinMinutes",
              "firstFetchDate": "2022-07-29T05:33:08+00:00",
              "inLibrary": false,
              "isPreviewAvailable": false,
              "name": "8",
              "object": "CaseDocument",
              "pages": 2,
              "parentDocumentId": null,
              "previewDocument": null,
              "price": 0.2,
              "sortOrder": null,
              "sourceDataStatus": null
            },
            {
              "addedToLibraryDate": null,
              "caseDocumentId": "CDOCdg34a8ac42621e",
              "childDocumentIdArray": [],
              "description": null,
              "documentFiledDate": "2021-12-03T00:00:00+00:00",
              "downloadAPI": null,
              "estimatedOrderDuration": "withinMinutes",
              "firstFetchDate": "2022-07-29T05:33:07+00:00",
              "inLibrary": false,
              "isPreviewAvailable": false,
              "name": "7",
              "object": "CaseDocument",
              "pages": 2,
              "parentDocumentId": null,
              "previewDocument": null,
              "price": 0.2,
              "sortOrder": null,
              "sourceDataStatus": null
            },
            {
              "addedToLibraryDate": null,
              "caseDocumentId": "CDOCdg2fde3a5f0f54",
              "childDocumentIdArray": [],
              "description": null,
              "documentFiledDate": "2021-12-03T00:00:00+00:00",
              "downloadAPI": null,
              "estimatedOrderDuration": "withinMinutes",
              "firstFetchDate": "2022-07-29T05:33:06+00:00",
              "inLibrary": false,
              "isPreviewAvailable": false,
              "name": "6",
              "object": "CaseDocument",
              "pages": 11,
              "parentDocumentId": null,
              "previewDocument": null,
              "price": 1.1,
              "sortOrder": null,
              "sourceDataStatus": null
            },
            {
              "addedToLibraryDate": null,
              "caseDocumentId": "CDOCdg7661d55a816a",
              "childDocumentIdArray": [],
              "description": null,
              "documentFiledDate": "2021-12-03T00:00:00+00:00",
              "downloadAPI": null,
              "estimatedOrderDuration": "withinMinutes",
              "firstFetchDate": "2022-07-29T05:33:06+00:00",
              "inLibrary": false,
              "isPreviewAvailable": false,
              "name": "5",
              "object": "CaseDocument",
              "pages": 2,
              "parentDocumentId": null,
              "previewDocument": null,
              "price": 0.2,
              "sortOrder": null,
              "sourceDataStatus": null
            },
            {
              "addedToLibraryDate": null,
              "caseDocumentId": "CDOCdgd3243ed9206f",
              "childDocumentIdArray": [],
              "description": null,
              "documentFiledDate": "2021-10-07T00:00:00+00:00",
              "downloadAPI": null,
              "estimatedOrderDuration": "withinMinutes",
              "firstFetchDate": "2022-07-29T05:33:05+00:00",
              "inLibrary": false,
              "isPreviewAvailable": false,
              "name": "4",
              "object": "CaseDocument",
              "pages": 1,
              "parentDocumentId": null,
              "previewDocument": null,
              "price": 0.1,
              "sortOrder": null,
              "sourceDataStatus": null
            },
            {
              "addedToLibraryDate": null,
              "caseDocumentId": "CDOCdg8746bdb6fdd1",
              "childDocumentIdArray": [],
              "description": "RESTRICTED",
              "documentFiledDate": "2021-09-24T00:00:00+00:00",
              "downloadAPI": null,
              "estimatedOrderDuration": "withinMinutes",
              "firstFetchDate": "2022-07-29T05:33:03+00:00",
              "inLibrary": false,
              "isPreviewAvailable": false,
              "name": "3",
              "object": "CaseDocument",
              "pages": null,
              "parentDocumentId": null,
              "previewDocument": null,
              "price": null,
              "sortOrder": null,
              "sourceDataStatus": null
            },
            {
              "addedToLibraryDate": null,
              "caseDocumentId": "CDOCdg796a2a8eb898",
              "childDocumentIdArray": [],
              "description": "Summons Summons",
              "documentFiledDate": "2021-07-16T00:00:00+00:00",
              "downloadAPI": null,
              "estimatedOrderDuration": "withinMinutes",
              "firstFetchDate": "2021-09-13T09:41:30+00:00",
              "inLibrary": false,
              "isPreviewAvailable": false,
              "name": "2 #2",
              "object": "CaseDocument",
              "pages": 2,
              "parentDocumentId": "CDOCdg2fe13e635f7c",
              "previewDocument": null,
              "price": 0.2,
              "sortOrder": null,
              "sourceDataStatus": null
            },
            {
              "addedToLibraryDate": null,
              "caseDocumentId": "CDOCdga5796710eead",
              "childDocumentIdArray": [],
              "description": "Summons Summons",
              "documentFiledDate": "2021-07-16T00:00:00+00:00",
              "downloadAPI": null,
              "estimatedOrderDuration": "withinMinutes",
              "firstFetchDate": "2021-09-13T09:41:30+00:00",
              "inLibrary": false,
              "isPreviewAvailable": false,
              "name": "2 #1",
              "object": "CaseDocument",
              "pages": 2,
              "parentDocumentId": "CDOCdg2fe13e635f7c",
              "previewDocument": null,
              "price": 0.2,
              "sortOrder": null,
              "sourceDataStatus": null
            },
            {
              "addedToLibraryDate": null,
              "caseDocumentId": "CDOCdg2fe13e635f7c",
              "childDocumentIdArray": [
                "CDOCdg796a2a8eb898",
                "CDOCdga5796710eead"
              ],
              "description": null,
              "documentFiledDate": "2021-07-16T00:00:00+00:00",
              "downloadAPI": null,
              "estimatedOrderDuration": "withinMinutes",
              "firstFetchDate": "2021-09-13T09:41:30+00:00",
              "inLibrary": false,
              "isPreviewAvailable": false,
              "name": "2",
              "object": "CaseDocument",
              "pages": 2,
              "parentDocumentId": null,
              "previewDocument": null,
              "price": 0.2,
              "sortOrder": null,
              "sourceDataStatus": null
            },
            {
              "addedToLibraryDate": null,
              "caseDocumentId": "CDOCdg56afdd8b85dc",
              "childDocumentIdArray": [],
              "description": "Civil Cover Sheet",
              "documentFiledDate": "2021-07-15T00:00:00+00:00",
              "downloadAPI": null,
              "estimatedOrderDuration": "withinMinutes",
              "firstFetchDate": "2021-07-16T06:21:56+00:00",
              "inLibrary": false,
              "isPreviewAvailable": false,
              "name": "1 #1",
              "object": "CaseDocument",
              "pages": 2,
              "parentDocumentId": "CDOCdgd1c146f741f0",
              "previewDocument": null,
              "price": 0.2,
              "sortOrder": null,
              "sourceDataStatus": null
            },
            {
              "addedToLibraryDate": "2022-07-29T05:32:12+00:00",
              "caseDocumentId": "CDOCdgd1c146f741f0",
              "childDocumentIdArray": [
                "CDOCdg56afdd8b85dc"
              ],
              "description": null,
              "documentFiledDate": "2021-07-15T00:00:00+00:00",
              "downloadAPI": "https://enterpriseapi.unicourt.com/caseDocumentDownload/CDOCdgd1c146f741f0",
              "estimatedOrderDuration": "withinMinutes",
              "firstFetchDate": "2021-07-16T06:21:56+00:00",
              "inLibrary": true,
              "isPreviewAvailable": false,
              "name": "1",
              "object": "CaseDocument",
              "pages": 19,
              "parentDocumentId": null,
              "previewDocument": null,
              "price": 1.9,
              "sortOrder": null,
              "sourceDataStatus": null
            }
          ],
          "nextPageAPI": null,
          "object": "CaseDocuments",
          "pageNumber": 1,
          "totalCount": 43,
          "totalPages": 1
        }
      },
      "CaseApiCaseHearingsResponse": {
        "value": {
          "hearingArray": [
            {
              "firstFetchDate": "2022-07-28T06:21:28+00:00",
              "hearingDate": "2022-08-05T09:00:00-07:00",
              "hearingDescription": "Order to Show Cause Re: $250 in Sanctions Against Plaintiff for Failure to Appear",
              "hearingStructured": null,
              "lastFetchDate": "2022-07-28T06:21:28+00:00",
              "location": "Department N at 1725 Main Street, Santa Monica, CA 90401",
              "object": "Hearing"
            },
            {
              "firstFetchDate": "2022-07-28T06:21:28+00:00",
              "hearingDate": "2022-08-05T09:00:00-07:00",
              "hearingDescription": "Case Management Conference",
              "hearingStructured": null,
              "lastFetchDate": "2022-07-28T06:21:28+00:00",
              "location": "Department N at 1725 Main Street, Santa Monica, CA 90401",
              "object": "Hearing"
            },
            {
              "firstFetchDate": "2022-07-28T06:21:28+00:00",
              "hearingDate": "2022-11-10T08:30:00-08:00",
              "hearingDescription": "Hearing on Motion for Order Deeming Matters Admitted and Request for Sanctions (Filed by Defendant Horn Plaza Condominium on 06/03/22)",
              "hearingStructured": null,
              "lastFetchDate": "2022-07-28T06:21:28+00:00",
              "location": "Department N at 1725 Main Street, Santa Monica, CA 90401",
              "object": "Hearing"
            }
          ],
          "nextPageAPI": null,
          "object": "Hearings",
          "pageNumber": 1,
          "totalCount": 3,
          "totalPages": 1
        }
      },
      "CaseApiDocketEntryPrimaryDocumentsResponse": {
        "value": {
          "caseDocumentArray": [
            {
              "addedToLibraryDate": null,
              "caseDocumentId": "CDOCdgac797feb45b1",
              "childDocumentIdArray": [
                "CDOCdg8b0ab22bf455",
                "CDOCdg4411a0f6eb57",
                "CDOCdg09be778a0e90"
              ],
              "description": "Main Document",
              "documentFiledDate": "2022-05-20T00:00:00+00:00",
              "downloadAPI": null,
              "estimatedOrderDuration": "withinMinutes",
              "firstFetchDate": "2022-05-31T14:58:10+00:00",
              "inLibrary": false,
              "isPreviewAvailable": false,
              "name": "8745 #8745",
              "object": "CaseDocument",
              "pages": 3,
              "parentDocumentId": null,
              "previewDocument": null,
              "price": 0.3,
              "sortOrder": null,
              "sourceDataStatus": null
            }
          ],
          "nextPageAPI": null,
          "object": "DocketEntryPrimaryDocuments",
          "pageNumber": 1,
          "totalCount": 1,
          "totalPages": 1
        }
      },
      "CaseApiDocketEntryResponse": {
        "value": {
          "docketEntryArray": [
            {
              "boundary": "first",
              "docketBadge": "DOCKET",
              "docketEntryDate": "2022-06-23T00:00:00+00:00",
              "docketEntryPrimaryDocuments": {
                "caseDocumentArray": [
                  {
                    "addedToLibraryDate": null,
                    "caseDocumentId": "CDOCdg66f57a47841f",
                    "childDocumentIdArray": [],
                    "description": null,
                    "documentFiledDate": "2022-06-23T00:00:00+00:00",
                    "downloadAPI": null,
                    "estimatedOrderDuration": "withinMinutes",
                    "firstFetchDate": "2022-06-24T06:25:15+00:00",
                    "inLibrary": false,
                    "isPreviewAvailable": false,
                    "name": "2325",
                    "object": "CaseDocument",
                    "pages": 7,
                    "parentDocumentId": null,
                    "previewDocument": null,
                    "price": 0.7,
                    "sortOrder": null,
                    "sourceDataStatus": null
                  }
                ],
                "nextPageAPI": null,
                "object": "DocketEntryPrimaryDocuments",
                "pageNumber": 1,
                "totalCount": 1,
                "totalPages": 1
              },
              "docketEntrySecondaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntrySecondaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketNumber": 2325,
              "lastFetchDate": "2022-07-16T06:26:51+00:00",
              "object": "DocketEntry",
              "referencedDocketNumberArray": [
                {
                  "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgle0bf14b74a96/docketEntries?pageNumber=1&docketNumber=2324",
                  "docketNumber": 2324,
                  "object": "ReferencedDocketNumber"
                }
              ],
              "sortOrder": 2526,
              "text": "(#2325) Certificate of Service Filed by Liquidator Drivetrain LLC (RE: related document(s)#2324 Order Granting GUC Liquidating Trustees Motion to Extend the Term of the GUC Liquidating Trust). (Bossi, Mark). Modified on 6/23/2022 (nel, k). (Entered: 06/23/2022)",
              "textStructured": null
            },
            {
              "boundary": null,
              "docketBadge": "DOCKET",
              "docketEntryDate": "2022-06-23T00:00:00+00:00",
              "docketEntryPrimaryDocuments": {
                "caseDocumentArray": [
                  {
                    "addedToLibraryDate": null,
                    "caseDocumentId": "CDOCdg4fdf440dd204",
                    "childDocumentIdArray": [],
                    "description": null,
                    "documentFiledDate": "2022-06-23T00:00:00+00:00",
                    "downloadAPI": null,
                    "estimatedOrderDuration": "withinMinutes",
                    "firstFetchDate": "2022-06-24T06:25:14+00:00",
                    "inLibrary": false,
                    "isPreviewAvailable": false,
                    "name": "2324",
                    "object": "CaseDocument",
                    "pages": 2,
                    "parentDocumentId": null,
                    "previewDocument": null,
                    "price": 0.2,
                    "sortOrder": null,
                    "sourceDataStatus": null
                  }
                ],
                "nextPageAPI": null,
                "object": "DocketEntryPrimaryDocuments",
                "pageNumber": 1,
                "totalCount": 1,
                "totalPages": 1
              },
              "docketEntrySecondaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntrySecondaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketNumber": 2324,
              "lastFetchDate": "2022-07-16T06:26:51+00:00",
              "object": "DocketEntry",
              "referencedDocketNumberArray": [
                {
                  "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgle0bf14b74a96/docketEntries?pageNumber=1&docketNumber=2323",
                  "docketNumber": 2323,
                  "object": "ReferencedDocketNumber"
                }
              ],
              "sortOrder": 2525,
              "text": "(#2324) Order Granting GUC Liquidating Trustees Motion to Extend the Term of the GUC Liquidating Trust (Related Doc #2323) (nel, k) (Entered: 06/23/2022)",
              "textStructured": null
            },
            {
              "boundary": null,
              "docketBadge": "DOCKET",
              "docketEntryDate": "2022-05-26T00:00:00+00:00",
              "docketEntryPrimaryDocuments": {
                "caseDocumentArray": [
                  {
                    "addedToLibraryDate": null,
                    "caseDocumentId": "CDOCdga14d6888f9a0",
                    "childDocumentIdArray": [],
                    "description": null,
                    "documentFiledDate": "2022-05-26T00:00:00+00:00",
                    "downloadAPI": null,
                    "estimatedOrderDuration": "withinMinutes",
                    "firstFetchDate": "2022-06-24T06:25:13+00:00",
                    "inLibrary": false,
                    "isPreviewAvailable": false,
                    "name": "2323",
                    "object": "CaseDocument",
                    "pages": 18,
                    "parentDocumentId": null,
                    "previewDocument": null,
                    "price": 1.8,
                    "sortOrder": null,
                    "sourceDataStatus": null
                  }
                ],
                "nextPageAPI": null,
                "object": "DocketEntryPrimaryDocuments",
                "pageNumber": 1,
                "totalCount": 1,
                "totalPages": 1
              },
              "docketEntrySecondaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntrySecondaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketNumber": 2323,
              "lastFetchDate": "2022-06-24T06:25:13+00:00",
              "object": "DocketEntry",
              "referencedDocketNumberArray": [],
              "sortOrder": 2524,
              "text": "(#2323) Motion to Extend Time to Termination Date of the GUC Liquidating Trust Through July 31, 2023 Filed by Liquidator Drivetrain LLC Hearing scheduled 6/27/2022 at 11:00 AM at Bankruptcy Courtroom 7 North. (Bossi, Mark) (Entered: 05/26/2022)",
              "textStructured": null
            },
            {
              "boundary": null,
              "docketBadge": "DOCKET",
              "docketEntryDate": "2022-04-20T00:00:00+00:00",
              "docketEntryPrimaryDocuments": {
                "caseDocumentArray": [
                  {
                    "addedToLibraryDate": null,
                    "caseDocumentId": "CDOCdg0b22115c1d3b",
                    "childDocumentIdArray": [],
                    "description": null,
                    "documentFiledDate": "2022-04-20T00:00:00+00:00",
                    "downloadAPI": null,
                    "estimatedOrderDuration": "withinMinutes",
                    "firstFetchDate": "2022-06-24T06:25:12+00:00",
                    "inLibrary": false,
                    "isPreviewAvailable": false,
                    "name": "2322",
                    "object": "CaseDocument",
                    "pages": 7,
                    "parentDocumentId": null,
                    "previewDocument": null,
                    "price": 0.7,
                    "sortOrder": null,
                    "sourceDataStatus": null
                  }
                ],
                "nextPageAPI": null,
                "object": "DocketEntryPrimaryDocuments",
                "pageNumber": 1,
                "totalCount": 1,
                "totalPages": 1
              },
              "docketEntrySecondaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntrySecondaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketNumber": 2322,
              "lastFetchDate": "2022-06-24T06:25:12+00:00",
              "object": "DocketEntry",
              "referencedDocketNumberArray": [
                {
                  "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgle0bf14b74a96/docketEntries?pageNumber=1&docketNumber=2320",
                  "docketNumber": 2320,
                  "object": "ReferencedDocketNumber"
                },
                {
                  "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgle0bf14b74a96/docketEntries?pageNumber=1&docketNumber=2321",
                  "docketNumber": 2321,
                  "object": "ReferencedDocketNumber"
                }
              ],
              "sortOrder": 2523,
              "text": "(#2322) Certificate of Service Filed by Liquidator Drivetrain LLC (RE: related document(s)#2320 Chapter 11 Post-Confirmation Report, #2321 Chapter 11 Post-Confirmation Report). (Bossi, Mark) (Entered: 04/20/2022)",
              "textStructured": null
            },
            {
              "boundary": null,
              "docketBadge": "DOCKET",
              "docketEntryDate": "2022-04-20T00:00:00+00:00",
              "docketEntryPrimaryDocuments": {
                "caseDocumentArray": [
                  {
                    "addedToLibraryDate": null,
                    "caseDocumentId": "CDOCdg7927486d3026",
                    "childDocumentIdArray": [],
                    "description": null,
                    "documentFiledDate": "2022-04-20T00:00:00+00:00",
                    "downloadAPI": null,
                    "estimatedOrderDuration": "withinMinutes",
                    "firstFetchDate": "2022-06-24T06:25:11+00:00",
                    "inLibrary": false,
                    "isPreviewAvailable": false,
                    "name": "2321",
                    "object": "CaseDocument",
                    "pages": 10,
                    "parentDocumentId": null,
                    "previewDocument": null,
                    "price": 1,
                    "sortOrder": null,
                    "sourceDataStatus": null
                  }
                ],
                "nextPageAPI": null,
                "object": "DocketEntryPrimaryDocuments",
                "pageNumber": 1,
                "totalCount": 1,
                "totalPages": 1
              },
              "docketEntrySecondaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntrySecondaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketNumber": 2321,
              "lastFetchDate": "2022-06-24T06:25:11+00:00",
              "object": "DocketEntry",
              "referencedDocketNumberArray": [],
              "sortOrder": 2522,
              "text": "(#2321) Chapter 11 Post-Confirmation Report for the Quarter Ending: 03/31/2022 Filed by Liquidator Drivetrain LLC. (Bossi, Mark) (Entered: 04/20/2022)",
              "textStructured": null
            },
            {
              "boundary": null,
              "docketBadge": "DOCKET",
              "docketEntryDate": "2022-04-20T00:00:00+00:00",
              "docketEntryPrimaryDocuments": {
                "caseDocumentArray": [
                  {
                    "addedToLibraryDate": null,
                    "caseDocumentId": "CDOCdg5936f5f4e347",
                    "childDocumentIdArray": [],
                    "description": null,
                    "documentFiledDate": "2022-04-20T00:00:00+00:00",
                    "downloadAPI": null,
                    "estimatedOrderDuration": "withinMinutes",
                    "firstFetchDate": "2022-06-24T06:25:10+00:00",
                    "inLibrary": false,
                    "isPreviewAvailable": false,
                    "name": "2320",
                    "object": "CaseDocument",
                    "pages": 10,
                    "parentDocumentId": null,
                    "previewDocument": null,
                    "price": 1,
                    "sortOrder": null,
                    "sourceDataStatus": null
                  }
                ],
                "nextPageAPI": null,
                "object": "DocketEntryPrimaryDocuments",
                "pageNumber": 1,
                "totalCount": 1,
                "totalPages": 1
              },
              "docketEntrySecondaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntrySecondaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketNumber": 2320,
              "lastFetchDate": "2022-06-24T06:25:10+00:00",
              "object": "DocketEntry",
              "referencedDocketNumberArray": [],
              "sortOrder": 2521,
              "text": "(#2320) Chapter 11 Post-Confirmation Report for Case Number 16-44194 for the Quarter Ending: 03/31/2022 Filed by Liquidator Drivetrain LLC. (Bossi, Mark) (Entered: 04/20/2022)",
              "textStructured": null
            },
            {
              "boundary": null,
              "docketBadge": "DOCKET",
              "docketEntryDate": "2022-03-01T00:00:00+00:00",
              "docketEntryPrimaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntryPrimaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketEntrySecondaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntrySecondaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketNumber": null,
              "lastFetchDate": "2022-06-24T06:25:07+00:00",
              "object": "DocketEntry",
              "referencedDocketNumberArray": [],
              "sortOrder": 2520,
              "text": "Adversary Case 4:18-ap-4020 Closed (kru, l) (Entered: 03/01/2022)",
              "textStructured": null
            },
            {
              "boundary": null,
              "docketBadge": "DOCKET",
              "docketEntryDate": "2022-03-01T00:00:00+00:00",
              "docketEntryPrimaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntryPrimaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketEntrySecondaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntrySecondaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketNumber": null,
              "lastFetchDate": "2022-06-24T06:25:07+00:00",
              "object": "DocketEntry",
              "referencedDocketNumberArray": [],
              "sortOrder": 2519,
              "text": "Disposition of Adversary 4:18-ap-4020: Dismissed. (kru, l) (Entered: 03/01/2022)",
              "textStructured": null
            },
            {
              "boundary": null,
              "docketBadge": "DOCKET",
              "docketEntryDate": "2022-02-28T00:00:00+00:00",
              "docketEntryPrimaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntryPrimaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketEntrySecondaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntrySecondaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketNumber": 2319,
              "lastFetchDate": "2022-03-11T08:24:46+00:00",
              "object": "DocketEntry",
              "referencedDocketNumberArray": [
                {
                  "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgle0bf14b74a96/docketEntries?pageNumber=1&docketNumber=2318",
                  "docketNumber": 2318,
                  "object": "ReferencedDocketNumber"
                }
              ],
              "sortOrder": 2518,
              "text": "(#2319) Certificate of Service Filed by Liquidator Drivetrain LLC (RE: related document(s)#2318 Generic Order). (Farrell, David) (Entered: 02/28/2022)",
              "textStructured": null
            },
            {
              "boundary": null,
              "docketBadge": "DOCKET",
              "docketEntryDate": "2022-02-25T00:00:00+00:00",
              "docketEntryPrimaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntryPrimaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketEntrySecondaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntrySecondaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketNumber": 2318,
              "lastFetchDate": "2022-03-11T08:24:44+00:00",
              "object": "DocketEntry",
              "referencedDocketNumberArray": [
                {
                  "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgle0bf14b74a96/docketEntries?pageNumber=1&docketNumber=2314",
                  "docketNumber": 2314,
                  "object": "ReferencedDocketNumber"
                }
              ],
              "sortOrder": 2517,
              "text": "(#2318) Order Approving Consent Motion #2314 for Entry of a Stipulation and Order Regarding the Claims of Danisco US Inc. filed by Liquidator Drivetrain LLC (kru, l) (Entered: 02/25/2022)",
              "textStructured": null
            },
            {
              "boundary": null,
              "docketBadge": "DOCKET",
              "docketEntryDate": "2022-01-20T00:00:00+00:00",
              "docketEntryPrimaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntryPrimaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketEntrySecondaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntrySecondaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketNumber": 2317,
              "lastFetchDate": "2022-03-11T08:24:43+00:00",
              "object": "DocketEntry",
              "referencedDocketNumberArray": [
                {
                  "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgle0bf14b74a96/docketEntries?pageNumber=1&docketNumber=2316",
                  "docketNumber": 2316,
                  "object": "ReferencedDocketNumber"
                },
                {
                  "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgle0bf14b74a96/docketEntries?pageNumber=1&docketNumber=2315",
                  "docketNumber": 2315,
                  "object": "ReferencedDocketNumber"
                }
              ],
              "sortOrder": 2516,
              "text": "(#2317) Certificate of Service Filed by Liquidator Drivetrain LLC (RE: related document(s)#2315 Chapter 11 Post-Confirmation Report, #2316 Chapter 11 Post-Confirmation Report). (Bossi, Mark) (Entered: 01/20/2022)",
              "textStructured": null
            },
            {
              "boundary": null,
              "docketBadge": "DOCKET",
              "docketEntryDate": "2022-01-20T00:00:00+00:00",
              "docketEntryPrimaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntryPrimaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketEntrySecondaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntrySecondaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketNumber": 2316,
              "lastFetchDate": "2022-03-11T08:24:42+00:00",
              "object": "DocketEntry",
              "referencedDocketNumberArray": [],
              "sortOrder": 2515,
              "text": "(#2316) Chapter 11 Post-Confirmation Report for the Quarter Ending: 12/31/2021 Filed by Liquidator Drivetrain LLC. (Bossi, Mark) (Entered: 01/20/2022)",
              "textStructured": null
            },
            {
              "boundary": null,
              "docketBadge": "DOCKET",
              "docketEntryDate": "2022-01-20T00:00:00+00:00",
              "docketEntryPrimaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntryPrimaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketEntrySecondaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntrySecondaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketNumber": 2315,
              "lastFetchDate": "2022-03-11T08:24:41+00:00",
              "object": "DocketEntry",
              "referencedDocketNumberArray": [],
              "sortOrder": 2514,
              "text": "(#2315) Chapter 11 Post-Confirmation Report for Case Number 16-44194 for the Quarter Ending: 12/31/2021 Filed by Liquidator Drivetrain LLC. (Bossi, Mark) (Entered: 01/20/2022)",
              "textStructured": null
            },
            {
              "boundary": null,
              "docketBadge": "DOCKET",
              "docketEntryDate": "2022-01-18T00:00:00+00:00",
              "docketEntryPrimaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntryPrimaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketEntrySecondaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntrySecondaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketNumber": 2314,
              "lastFetchDate": "2022-03-11T08:24:40+00:00",
              "object": "DocketEntry",
              "referencedDocketNumberArray": [],
              "sortOrder": 2513,
              "text": "(#2314) Consent Motion for Entry of Stipulation and Order Regarding the Claims of Danisco US Inc. Filed by Liquidator Drivetrain LLC (Attachments: #1 Exhibit A (Stipulation of Claims) #2 Exhibit B (Service List)) (Farrell, David) Modified on 1/19/2022 (kru, l). (Entered: 01/18/2022)",
              "textStructured": null
            },
            {
              "boundary": null,
              "docketBadge": "DOCKET",
              "docketEntryDate": "2022-01-11T00:00:00+00:00",
              "docketEntryPrimaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntryPrimaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketEntrySecondaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntrySecondaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketNumber": 2313,
              "lastFetchDate": "2022-03-11T08:24:39+00:00",
              "object": "DocketEntry",
              "referencedDocketNumberArray": [
                {
                  "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgle0bf14b74a96/docketEntries?pageNumber=1&docketNumber=2312",
                  "docketNumber": 2312,
                  "object": "ReferencedDocketNumber"
                }
              ],
              "sortOrder": 2512,
              "text": "(#2313) Notice of Change of Address Filed by Creditor VonWin Capital Management, LP. (Wilson, Charmaine) NOTE: THIS DOCKET ENTRY IS A DUPLICATE OF DOCKET ENTRY #2312. Modified on 1/12/2022 (kru, l). (Entered: 01/11/2022)",
              "textStructured": null
            },
            {
              "boundary": null,
              "docketBadge": "DOCKET",
              "docketEntryDate": "2022-01-03T00:00:00+00:00",
              "docketEntryPrimaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntryPrimaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketEntrySecondaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntrySecondaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketNumber": 2312,
              "lastFetchDate": "2022-03-11T08:24:39+00:00",
              "object": "DocketEntry",
              "referencedDocketNumberArray": [],
              "sortOrder": 2511,
              "text": "(#2312) Notice of Change of Address Filed by Creditor VonWin Capital Management, LP. (Wilson, Charmaine) (Entered: 01/03/2022)",
              "textStructured": null
            },
            {
              "boundary": null,
              "docketBadge": "DOCKET",
              "docketEntryDate": "2021-12-30T00:00:00+00:00",
              "docketEntryPrimaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntryPrimaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketEntrySecondaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntrySecondaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketNumber": 2311,
              "lastFetchDate": "2022-03-11T08:24:38+00:00",
              "object": "DocketEntry",
              "referencedDocketNumberArray": [
                {
                  "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgle0bf14b74a96/docketEntries?pageNumber=1&docketNumber=2310",
                  "docketNumber": 2310,
                  "object": "ReferencedDocketNumber"
                }
              ],
              "sortOrder": 2510,
              "text": "(#2311) Certificate of Service Filed by Liquidator Drivetrain LLC (RE: related document(s)#2310 Generic Order). (Bossi, Mark) (Entered: 12/30/2021)",
              "textStructured": null
            },
            {
              "boundary": null,
              "docketBadge": "DOCKET",
              "docketEntryDate": "2021-12-30T00:00:00+00:00",
              "docketEntryPrimaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntryPrimaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketEntrySecondaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntrySecondaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketNumber": 2310,
              "lastFetchDate": "2022-03-11T08:24:36+00:00",
              "object": "DocketEntry",
              "referencedDocketNumberArray": [
                {
                  "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgle0bf14b74a96/docketEntries?pageNumber=1&docketNumber=2309",
                  "docketNumber": 2309,
                  "object": "ReferencedDocketNumber"
                }
              ],
              "sortOrder": 2509,
              "text": "(#2310) Order Approving Stipulation Regarding Claim of Lansing Trade Group, LLC (#2309 Motion to / for Approval of Stipulation Regarding Claim of Lansing Trade Group, LLC (Claim No. 30-1 in Case No. 16-44194) filed by Liquidator Drivetrain LLC) (nel, k) (Entered: 12/30/2021)",
              "textStructured": null
            },
            {
              "boundary": null,
              "docketBadge": "DOCKET",
              "docketEntryDate": "2021-12-28T00:00:00+00:00",
              "docketEntryPrimaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntryPrimaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketEntrySecondaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntrySecondaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketNumber": 2309,
              "lastFetchDate": "2022-03-11T08:24:35+00:00",
              "object": "DocketEntry",
              "referencedDocketNumberArray": [],
              "sortOrder": 2508,
              "text": "(#2309) Motion to / for Approval of Stipulation Regarding Claim of Lansing Trade Group, LLC (Claim No. 30-1 in Case No. 16-44194) Filed by Liquidator Drivetrain LLC (Bossi, Mark) (Entered: 12/28/2021)",
              "textStructured": null
            },
            {
              "boundary": null,
              "docketBadge": "DOCKET",
              "docketEntryDate": "2021-12-17T00:00:00+00:00",
              "docketEntryPrimaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntryPrimaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketEntrySecondaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntrySecondaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketNumber": 2308,
              "lastFetchDate": "2022-03-11T08:24:34+00:00",
              "object": "DocketEntry",
              "referencedDocketNumberArray": [
                {
                  "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgle0bf14b74a96/docketEntries?pageNumber=1&docketNumber=2306",
                  "docketNumber": 2306,
                  "object": "ReferencedDocketNumber"
                },
                {
                  "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgle0bf14b74a96/docketEntries?pageNumber=1&docketNumber=2307",
                  "docketNumber": 2307,
                  "object": "ReferencedDocketNumber"
                }
              ],
              "sortOrder": 2507,
              "text": "(#2308) Certificate of Service Filed by Liquidator Drivetrain LLC (RE: related document(s)#2306 Generic Order, #2307 Generic Order). (Bossi, Mark) (Entered: 12/17/2021)",
              "textStructured": null
            },
            {
              "boundary": null,
              "docketBadge": "DOCKET",
              "docketEntryDate": "2021-12-17T00:00:00+00:00",
              "docketEntryPrimaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntryPrimaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketEntrySecondaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntrySecondaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketNumber": 2307,
              "lastFetchDate": "2022-03-11T08:24:33+00:00",
              "object": "DocketEntry",
              "referencedDocketNumberArray": [
                {
                  "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgle0bf14b74a96/docketEntries?pageNumber=1&docketNumber=2305",
                  "docketNumber": 2305,
                  "object": "ReferencedDocketNumber"
                }
              ],
              "sortOrder": 2506,
              "text": "(#2307) Order Granting Motion #2305 Approving Stipulation Regarding Claim of Banco Popular Espanol, S.A. filed by Liquidator Drivetrain LLC (kru, l) (Entered: 12/17/2021)",
              "textStructured": null
            },
            {
              "boundary": null,
              "docketBadge": "DOCKET",
              "docketEntryDate": "2021-12-17T00:00:00+00:00",
              "docketEntryPrimaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntryPrimaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketEntrySecondaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntrySecondaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketNumber": 2306,
              "lastFetchDate": "2022-03-11T08:24:32+00:00",
              "object": "DocketEntry",
              "referencedDocketNumberArray": [
                {
                  "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgle0bf14b74a96/docketEntries?pageNumber=1&docketNumber=2304",
                  "docketNumber": 2304,
                  "object": "ReferencedDocketNumber"
                }
              ],
              "sortOrder": 2505,
              "text": "(#2306) Order Granting Motion #2304 Approving Stipulation Regarding Claims of Trinity Industries Leasing Company filed by Liquidator Drivetrain LLC (kru, l) (Entered: 12/17/2021)",
              "textStructured": null
            },
            {
              "boundary": null,
              "docketBadge": "DOCKET",
              "docketEntryDate": "2021-12-15T00:00:00+00:00",
              "docketEntryPrimaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntryPrimaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketEntrySecondaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntrySecondaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketNumber": 2305,
              "lastFetchDate": "2022-03-11T08:24:31+00:00",
              "object": "DocketEntry",
              "referencedDocketNumberArray": [],
              "sortOrder": 2504,
              "text": "(#2305) Motion to / for Approval of Stipulation Regarding Claim of Banco Popular Espanol, S.A. Filed by Liquidator Drivetrain LLC (Bossi, Mark) (Entered: 12/15/2021)",
              "textStructured": null
            },
            {
              "boundary": null,
              "docketBadge": "DOCKET",
              "docketEntryDate": "2021-12-15T00:00:00+00:00",
              "docketEntryPrimaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntryPrimaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketEntrySecondaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntrySecondaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketNumber": 2304,
              "lastFetchDate": "2022-03-11T08:24:30+00:00",
              "object": "DocketEntry",
              "referencedDocketNumberArray": [],
              "sortOrder": 2503,
              "text": "(#2304) Motion to /for Approval of Stipulation Regarding Claims of Trinity Industries Leasing Company Filed by Liquidator Drivetrain LLC (Bossi, Mark) (Entered: 12/15/2021)",
              "textStructured": null
            },
            {
              "boundary": null,
              "docketBadge": "DOCKET",
              "docketEntryDate": "2021-12-10T00:00:00+00:00",
              "docketEntryPrimaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntryPrimaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketEntrySecondaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntrySecondaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketNumber": 2303,
              "lastFetchDate": "2022-03-11T08:24:28+00:00",
              "object": "DocketEntry",
              "referencedDocketNumberArray": [
                {
                  "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgle0bf14b74a96/docketEntries?pageNumber=1&docketNumber=2297",
                  "docketNumber": 2297,
                  "object": "ReferencedDocketNumber"
                }
              ],
              "sortOrder": 2502,
              "text": "(#2303) BNC Certificate of Mailing Notice Date 12/10/2021. (Related Doc #2297) (Admin.) (Entered: 12/10/2021)",
              "textStructured": null
            },
            {
              "boundary": null,
              "docketBadge": "DOCKET",
              "docketEntryDate": "2021-12-10T00:00:00+00:00",
              "docketEntryPrimaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntryPrimaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketEntrySecondaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntrySecondaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketNumber": 2302,
              "lastFetchDate": "2022-03-11T08:24:27+00:00",
              "object": "DocketEntry",
              "referencedDocketNumberArray": [
                {
                  "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgle0bf14b74a96/docketEntries?pageNumber=1&docketNumber=2296",
                  "docketNumber": 2296,
                  "object": "ReferencedDocketNumber"
                }
              ],
              "sortOrder": 2501,
              "text": "(#2302) BNC Certificate of Mailing Notice Date 12/10/2021. (Related Doc #2296) (Admin.) (Entered: 12/10/2021)",
              "textStructured": null
            },
            {
              "boundary": null,
              "docketBadge": "DOCKET",
              "docketEntryDate": "2021-12-08T00:00:00+00:00",
              "docketEntryPrimaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntryPrimaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketEntrySecondaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntrySecondaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketNumber": 2301,
              "lastFetchDate": "2022-03-11T08:24:26+00:00",
              "object": "DocketEntry",
              "referencedDocketNumberArray": [
                {
                  "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgle0bf14b74a96/docketEntries?pageNumber=1&docketNumber=2297",
                  "docketNumber": 2297,
                  "object": "ReferencedDocketNumber"
                }
              ],
              "sortOrder": 2500,
              "text": "(#2301) Corrected PDF Filed by Creditor Encore Energy Services Inc (RE: related document(s)#2297 Transfer of Claim). (Riske, Thomas) Modified on 12/8/2021 (kru, l). (Entered: 12/08/2021)",
              "textStructured": null
            },
            {
              "boundary": null,
              "docketBadge": "DOCKET",
              "docketEntryDate": "2021-12-08T00:00:00+00:00",
              "docketEntryPrimaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntryPrimaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketEntrySecondaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntrySecondaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketNumber": 2300,
              "lastFetchDate": "2022-03-11T08:24:25+00:00",
              "object": "DocketEntry",
              "referencedDocketNumberArray": [
                {
                  "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgle0bf14b74a96/docketEntries?pageNumber=1&docketNumber=2296",
                  "docketNumber": 2296,
                  "object": "ReferencedDocketNumber"
                }
              ],
              "sortOrder": 2499,
              "text": "(#2300) Corrected PDF Filed by Creditor Encore Energy Services Inc (RE: related document(s)#2296 Transfer of Claim). (Riske, Thomas) Modified on 12/8/2021 (kru, l). (Entered: 12/08/2021)",
              "textStructured": null
            },
            {
              "boundary": null,
              "docketBadge": "DOCKET",
              "docketEntryDate": "2021-12-08T00:00:00+00:00",
              "docketEntryPrimaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntryPrimaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketEntrySecondaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntrySecondaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketNumber": 2299,
              "lastFetchDate": "2022-03-11T08:24:24+00:00",
              "object": "DocketEntry",
              "referencedDocketNumberArray": [
                {
                  "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgle0bf14b74a96/docketEntries?pageNumber=1&docketNumber=2297",
                  "docketNumber": 2297,
                  "object": "ReferencedDocketNumber"
                }
              ],
              "sortOrder": 2498,
              "text": "(#2299) Receipt of filing fee for Transfer of Claim(# 16-41161) [claims,trclm] ( 26.00). Receipt number A18460476, amount $ 26.00. (re: Doc#2297) (U.S. Treasury) (Entered: 12/08/2021)",
              "textStructured": null
            },
            {
              "boundary": null,
              "docketBadge": "DOCKET",
              "docketEntryDate": "2021-12-08T00:00:00+00:00",
              "docketEntryPrimaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntryPrimaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketEntrySecondaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntrySecondaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketNumber": 2298,
              "lastFetchDate": "2022-03-11T08:24:24+00:00",
              "object": "DocketEntry",
              "referencedDocketNumberArray": [
                {
                  "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgle0bf14b74a96/docketEntries?pageNumber=1&docketNumber=2296",
                  "docketNumber": 2296,
                  "object": "ReferencedDocketNumber"
                }
              ],
              "sortOrder": 2497,
              "text": "(#2298) Receipt of filing fee for Transfer of Claim(# 16-41161) [claims,trclm] ( 26.00). Receipt number A18460476, amount $ 26.00. (re: Doc#2296) (U.S. Treasury) (Entered: 12/08/2021)",
              "textStructured": null
            },
            {
              "boundary": null,
              "docketBadge": "DOCKET",
              "docketEntryDate": "2021-12-08T00:00:00+00:00",
              "docketEntryPrimaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntryPrimaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketEntrySecondaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntrySecondaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketNumber": 2297,
              "lastFetchDate": "2022-03-11T08:24:24+00:00",
              "object": "DocketEntry",
              "referencedDocketNumberArray": [
                {
                  "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgle0bf14b74a96/docketEntries?pageNumber=1&docketNumber=2301",
                  "docketNumber": 2301,
                  "object": "ReferencedDocketNumber"
                }
              ],
              "sortOrder": 2496,
              "text": "(#2297) Transfer of Claim(s). Fee Amount $26 Transfer Agreement 3001 (e) 2 Transferor: Hain Capital Investors, LLC To Encore Energy Services, Inc. Filed by Creditor Encore Energy Services Inc (Riske, Thomas) NOTE: THE FILER HAS FILED A CORRECTED PLEADING, SEE DOCKET ENTRY #2301. Modified on 12/8/2021 (kru, l). (Entered: 12/08/2021)",
              "textStructured": null
            },
            {
              "boundary": null,
              "docketBadge": "DOCKET",
              "docketEntryDate": "2021-12-08T00:00:00+00:00",
              "docketEntryPrimaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntryPrimaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketEntrySecondaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntrySecondaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketNumber": 2296,
              "lastFetchDate": "2022-03-11T08:24:23+00:00",
              "object": "DocketEntry",
              "referencedDocketNumberArray": [
                {
                  "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgle0bf14b74a96/docketEntries?pageNumber=1&docketNumber=2300",
                  "docketNumber": 2300,
                  "object": "ReferencedDocketNumber"
                }
              ],
              "sortOrder": 2495,
              "text": "(#2296) Transfer of Claim(s). Fee Amount $26 Transfer Agreement 3001 (e) 2 Transferor: Hain Capital Investors, LLC To Encore Energy Serivces, Inc. Filed by Creditor Encore Energy Services Inc (Riske, Thomas) NOTE: THE FILER HAS FILED A CORRECTED PLEADING, SEE DOCKET ENTRY #2300. Modified on 12/8/2021 (kru, l). (Entered: 12/08/2021)",
              "textStructured": null
            },
            {
              "boundary": null,
              "docketBadge": "DOCKET",
              "docketEntryDate": "2021-12-01T00:00:00+00:00",
              "docketEntryPrimaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntryPrimaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketEntrySecondaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntrySecondaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketNumber": 2295,
              "lastFetchDate": "2022-03-11T08:24:22+00:00",
              "object": "DocketEntry",
              "referencedDocketNumberArray": [
                {
                  "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgle0bf14b74a96/docketEntries?pageNumber=1&docketNumber=2294",
                  "docketNumber": 2294,
                  "object": "ReferencedDocketNumber"
                }
              ],
              "sortOrder": 2494,
              "text": "(#2295) Certificate of Service Filed by Liquidator Drivetrain LLC (RE: related document(s)#2294 Order on Objection to Claim). (Bossi, Mark) (Entered: 12/01/2021)",
              "textStructured": null
            },
            {
              "boundary": null,
              "docketBadge": "DOCKET",
              "docketEntryDate": "2021-12-01T00:00:00+00:00",
              "docketEntryPrimaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntryPrimaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketEntrySecondaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntrySecondaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketNumber": 2294,
              "lastFetchDate": "2022-03-11T08:24:21+00:00",
              "object": "DocketEntry",
              "referencedDocketNumberArray": [
                {
                  "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgle0bf14b74a96/docketEntries?pageNumber=1&docketNumber=2291",
                  "docketNumber": 2291,
                  "object": "ReferencedDocketNumber"
                }
              ],
              "sortOrder": 2493,
              "text": "(#2294) Order Sustaining GUC Liquidating Trustees Objection to the Claim of Tramco, Inc. (RE: related document(s)#2291 Objection to Claim filed by Liquidator Drivetrain LLC). (nel, k) (Entered: 12/01/2021)",
              "textStructured": null
            },
            {
              "boundary": null,
              "docketBadge": "DOCKET",
              "docketEntryDate": "2021-11-11T00:00:00+00:00",
              "docketEntryPrimaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntryPrimaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketEntrySecondaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntrySecondaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketNumber": 2293,
              "lastFetchDate": "2022-03-11T08:24:20+00:00",
              "object": "DocketEntry",
              "referencedDocketNumberArray": [],
              "sortOrder": 2492,
              "text": "(#2293) Notice of Withdrawal of Counsel by Cullen K. Kuhn Filed by Creditor DeWine Mechanical Inc. (Kuhn, Cullen) (Entered: 11/11/2021)",
              "textStructured": null
            },
            {
              "boundary": null,
              "docketBadge": "DOCKET",
              "docketEntryDate": "2021-11-02T00:00:00+00:00",
              "docketEntryPrimaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntryPrimaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketEntrySecondaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntrySecondaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketNumber": null,
              "lastFetchDate": "2022-03-11T08:24:19+00:00",
              "object": "DocketEntry",
              "referencedDocketNumberArray": [],
              "sortOrder": 2491,
              "text": "Adversary Case 4:20-ap-4081 Closed (kru, l) (Entered: 11/02/2021)",
              "textStructured": null
            },
            {
              "boundary": null,
              "docketBadge": "DOCKET",
              "docketEntryDate": "2021-11-02T00:00:00+00:00",
              "docketEntryPrimaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntryPrimaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketEntrySecondaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntrySecondaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketNumber": null,
              "lastFetchDate": "2022-03-11T08:24:19+00:00",
              "object": "DocketEntry",
              "referencedDocketNumberArray": [],
              "sortOrder": 2490,
              "text": "Disposition of Adversary 4:20-ap-4081: Judgment for Defendant. (kru, l) (Entered: 11/02/2021)",
              "textStructured": null
            },
            {
              "boundary": null,
              "docketBadge": "DOCKET",
              "docketEntryDate": "2021-10-27T00:00:00+00:00",
              "docketEntryPrimaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntryPrimaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketEntrySecondaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntrySecondaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketNumber": 2292,
              "lastFetchDate": "2022-03-11T08:24:19+00:00",
              "object": "DocketEntry",
              "referencedDocketNumberArray": [
                {
                  "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgle0bf14b74a96/docketEntries?pageNumber=1&docketNumber=2291",
                  "docketNumber": 2291,
                  "object": "ReferencedDocketNumber"
                }
              ],
              "sortOrder": 2489,
              "text": "(#2292) Reclassify Claim(s) 38 to add document to History of Claims Register. (RE: related document(s)#2291 Objection to Claim filed by Liquidator Drivetrain LLC) (kru, l) (Entered: 10/27/2021)",
              "textStructured": null
            },
            {
              "boundary": null,
              "docketBadge": "DOCKET",
              "docketEntryDate": "2021-10-27T00:00:00+00:00",
              "docketEntryPrimaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntryPrimaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketEntrySecondaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntrySecondaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketNumber": 2291,
              "lastFetchDate": "2022-03-11T08:24:19+00:00",
              "object": "DocketEntry",
              "referencedDocketNumberArray": [],
              "sortOrder": 2488,
              "text": "(#2291) Objection to Claim of Tramco, Inc. for $155,741.93. Certificate of Service: Filed. Hearing scheduled 12/6/2021 at 11:00 AM at Bankruptcy Courtroom 7 North. Filed by Liquidator Drivetrain LLC (Bossi, Mark) NOTE: THE FILER DID NOT LINK THE PLEADING TO A PROOF OF CLAIM. THE COURT STAFF HAS CORRECTED THIS BY LINKING THIS ENTRY TO CLAIM NUMBER 38. Modified on 10/27/2021 (kru, l). (Entered: 10/27/2021)",
              "textStructured": null
            },
            {
              "boundary": null,
              "docketBadge": "DOCKET",
              "docketEntryDate": "2021-10-21T00:00:00+00:00",
              "docketEntryPrimaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntryPrimaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketEntrySecondaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntrySecondaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketNumber": 2290,
              "lastFetchDate": "2022-03-11T08:24:18+00:00",
              "object": "DocketEntry",
              "referencedDocketNumberArray": [
                {
                  "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgle0bf14b74a96/docketEntries?pageNumber=1&docketNumber=2288",
                  "docketNumber": 2288,
                  "object": "ReferencedDocketNumber"
                },
                {
                  "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgle0bf14b74a96/docketEntries?pageNumber=1&docketNumber=2289",
                  "docketNumber": 2289,
                  "object": "ReferencedDocketNumber"
                },
                {
                  "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgle0bf14b74a96/docketEntries?pageNumber=1&docketNumber=2287",
                  "docketNumber": 2287,
                  "object": "ReferencedDocketNumber"
                }
              ],
              "sortOrder": 2487,
              "text": "(#2290) Certificate of Service Filed by Liquidator Drivetrain LLC (RE: related document(s)#2287 Chapter 11 Post-Confirmation Report, #2288 Chapter 11 Post-Confirmation Report, #2289 Chapter 11 Post-Confirmation Report). (Bossi, Mark) (Entered: 10/21/2021)",
              "textStructured": null
            },
            {
              "boundary": null,
              "docketBadge": "DOCKET",
              "docketEntryDate": "2021-10-21T00:00:00+00:00",
              "docketEntryPrimaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntryPrimaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketEntrySecondaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntrySecondaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketNumber": 2289,
              "lastFetchDate": "2022-03-11T08:24:17+00:00",
              "object": "DocketEntry",
              "referencedDocketNumberArray": [],
              "sortOrder": 2486,
              "text": "(#2289) Chapter 11 Post-Confirmation Report for Case Number 16-44194 for the Quarter Ending: 09/30/2021 Filed by Liquidator Drivetrain LLC. (Bossi, Mark) (Entered: 10/21/2021)",
              "textStructured": null
            },
            {
              "boundary": null,
              "docketBadge": "DOCKET",
              "docketEntryDate": "2021-10-21T00:00:00+00:00",
              "docketEntryPrimaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntryPrimaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketEntrySecondaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntrySecondaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketNumber": 2288,
              "lastFetchDate": "2022-03-11T08:24:16+00:00",
              "object": "DocketEntry",
              "referencedDocketNumberArray": [],
              "sortOrder": 2485,
              "text": "(#2288) Chapter 11 Post-Confirmation Report for the Quarter Ending: 09/30/2021 Filed by Liquidator Drivetrain LLC. (Bossi, Mark) (Entered: 10/21/2021)",
              "textStructured": null
            },
            {
              "boundary": null,
              "docketBadge": "DOCKET",
              "docketEntryDate": "2021-10-21T00:00:00+00:00",
              "docketEntryPrimaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntryPrimaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketEntrySecondaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntrySecondaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketNumber": 2287,
              "lastFetchDate": "2022-03-11T08:24:15+00:00",
              "object": "DocketEntry",
              "referencedDocketNumberArray": [],
              "sortOrder": 2484,
              "text": "(#2287) Amended Chapter 11 Post-Confirmation Report for the Quarter Ending: 06/30/2021 Filed by Liquidator Drivetrain LLC. (Bossi, Mark) (Entered: 10/21/2021)",
              "textStructured": null
            },
            {
              "boundary": null,
              "docketBadge": "DOCKET",
              "docketEntryDate": "2021-10-13T00:00:00+00:00",
              "docketEntryPrimaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntryPrimaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketEntrySecondaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntrySecondaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketNumber": 2286,
              "lastFetchDate": "2022-03-11T08:24:13+00:00",
              "object": "DocketEntry",
              "referencedDocketNumberArray": [
                {
                  "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgle0bf14b74a96/docketEntries?pageNumber=1&docketNumber=2285",
                  "docketNumber": 2285,
                  "object": "ReferencedDocketNumber"
                }
              ],
              "sortOrder": 2483,
              "text": "(#2286) Certificate of Service Filed by Liquidator Drivetrain LLC (RE: related document(s)#2285 Generic Order). (Bossi, Mark) (Entered: 10/13/2021)",
              "textStructured": null
            },
            {
              "boundary": null,
              "docketBadge": "DOCKET",
              "docketEntryDate": "2021-10-13T00:00:00+00:00",
              "docketEntryPrimaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntryPrimaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketEntrySecondaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntrySecondaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketNumber": 2285,
              "lastFetchDate": "2022-03-11T08:24:12+00:00",
              "object": "DocketEntry",
              "referencedDocketNumberArray": [
                {
                  "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgle0bf14b74a96/docketEntries?pageNumber=1&docketNumber=2284",
                  "docketNumber": 2284,
                  "object": "ReferencedDocketNumber"
                }
              ],
              "sortOrder": 2482,
              "text": "(#2285) Order Granting Thirteenth Motion to Extend Time for Claims Objection Bar Date. The Claims Objection Bar Date is extended to 2/11/2022 (Related Doc #2284) (kru, l) (Entered: 10/13/2021)",
              "textStructured": null
            },
            {
              "boundary": null,
              "docketBadge": "DOCKET",
              "docketEntryDate": "2021-10-12T00:00:00+00:00",
              "docketEntryPrimaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntryPrimaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketEntrySecondaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntrySecondaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketNumber": 2284,
              "lastFetchDate": "2022-03-11T08:24:12+00:00",
              "object": "DocketEntry",
              "referencedDocketNumberArray": [],
              "sortOrder": 2481,
              "text": "(#2284) Motion to to Extend the Claims Objection Bar Date (Thirteenth) Filed by Liquidator Drivetrain LLC (Bossi, Mark) (Entered: 10/12/2021)",
              "textStructured": null
            },
            {
              "boundary": null,
              "docketBadge": "DOCKET",
              "docketEntryDate": "2021-10-08T00:00:00+00:00",
              "docketEntryPrimaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntryPrimaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketEntrySecondaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntrySecondaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketNumber": 2283,
              "lastFetchDate": "2022-03-11T08:24:10+00:00",
              "object": "DocketEntry",
              "referencedDocketNumberArray": [
                {
                  "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgle0bf14b74a96/docketEntries?pageNumber=1&docketNumber=2280",
                  "docketNumber": 2280,
                  "object": "ReferencedDocketNumber"
                }
              ],
              "sortOrder": 2480,
              "text": "(#2283) BNC Certificate of Mailing - PDF Document Notice Date 10/08/2021. (Related Doc #2280) (Admin.) (Entered: 10/08/2021)",
              "textStructured": null
            },
            {
              "boundary": null,
              "docketBadge": "DOCKET",
              "docketEntryDate": "2021-10-08T00:00:00+00:00",
              "docketEntryPrimaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntryPrimaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketEntrySecondaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntrySecondaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketNumber": 2282,
              "lastFetchDate": "2022-03-11T08:24:09+00:00",
              "object": "DocketEntry",
              "referencedDocketNumberArray": [
                {
                  "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgle0bf14b74a96/docketEntries?pageNumber=1&docketNumber=2279",
                  "docketNumber": 2279,
                  "object": "ReferencedDocketNumber"
                }
              ],
              "sortOrder": 2479,
              "text": "(#2282) BNC Certificate of Mailing - PDF Document Notice Date 10/08/2021. (Related Doc #2279) (Admin.) (Entered: 10/08/2021)",
              "textStructured": null
            },
            {
              "boundary": null,
              "docketBadge": "DOCKET",
              "docketEntryDate": "2021-10-08T00:00:00+00:00",
              "docketEntryPrimaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntryPrimaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketEntrySecondaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntrySecondaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketNumber": 2281,
              "lastFetchDate": "2022-03-11T08:24:08+00:00",
              "object": "DocketEntry",
              "referencedDocketNumberArray": [
                {
                  "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgle0bf14b74a96/docketEntries?pageNumber=1&docketNumber=2278",
                  "docketNumber": 2278,
                  "object": "ReferencedDocketNumber"
                }
              ],
              "sortOrder": 2478,
              "text": "(#2281) BNC Certificate of Mailing - PDF Document Notice Date 10/08/2021. (Related Doc #2278) (Admin.) (Entered: 10/08/2021)",
              "textStructured": null
            },
            {
              "boundary": null,
              "docketBadge": "DOCKET",
              "docketEntryDate": "2021-10-06T00:00:00+00:00",
              "docketEntryPrimaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntryPrimaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketEntrySecondaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntrySecondaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketNumber": 2280,
              "lastFetchDate": "2022-03-11T08:24:07+00:00",
              "object": "DocketEntry",
              "referencedDocketNumberArray": [
                {
                  "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgle0bf14b74a96/docketEntries?pageNumber=1&docketNumber=2277",
                  "docketNumber": 2277,
                  "object": "ReferencedDocketNumber"
                }
              ],
              "sortOrder": 2477,
              "text": "(#2280) Order Granting Motion To Substitute Brian J. LaFlamme as Counsel for NXT Capital, LLC (Related Doc #2277). (kru, l) (Entered: 10/06/2021)",
              "textStructured": null
            },
            {
              "boundary": null,
              "docketBadge": "DOCKET",
              "docketEntryDate": "2021-10-06T00:00:00+00:00",
              "docketEntryPrimaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntryPrimaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketEntrySecondaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntrySecondaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketNumber": 2279,
              "lastFetchDate": "2022-03-11T08:24:06+00:00",
              "object": "DocketEntry",
              "referencedDocketNumberArray": [
                {
                  "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgle0bf14b74a96/docketEntries?pageNumber=1&docketNumber=2276",
                  "docketNumber": 2276,
                  "object": "ReferencedDocketNumber"
                }
              ],
              "sortOrder": 2476,
              "text": "(#2279) Order Granting Motion To Substitute Brian J. LaFlamme as Counsel for Murex LLC f/k/a Murex N.A., Ltd. (Related Doc #2276). (kru, l) (Entered: 10/06/2021)",
              "textStructured": null
            },
            {
              "boundary": null,
              "docketBadge": "DOCKET",
              "docketEntryDate": "2021-10-06T00:00:00+00:00",
              "docketEntryPrimaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntryPrimaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketEntrySecondaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntrySecondaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketNumber": 2278,
              "lastFetchDate": "2022-03-11T08:24:05+00:00",
              "object": "DocketEntry",
              "referencedDocketNumberArray": [
                {
                  "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgle0bf14b74a96/docketEntries?pageNumber=1&docketNumber=2275",
                  "docketNumber": 2275,
                  "object": "ReferencedDocketNumber"
                }
              ],
              "sortOrder": 2475,
              "text": "(#2278) Order Granting Motion To Substitute Brian J. LaFlamme as Counsel for Pumping Solutions, Inc. (Related Doc #2275). (kru, l) (Entered: 10/06/2021)",
              "textStructured": null
            },
            {
              "boundary": null,
              "docketBadge": "DOCKET",
              "docketEntryDate": "2021-10-04T00:00:00+00:00",
              "docketEntryPrimaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntryPrimaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketEntrySecondaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntrySecondaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketNumber": 2277,
              "lastFetchDate": "2022-03-11T08:24:04+00:00",
              "object": "DocketEntry",
              "referencedDocketNumberArray": [],
              "sortOrder": 2474,
              "text": "(#2277) Motion to Substitute Counsel Filed by Creditor NXT Capital, LLC (LaFlamme, Brian) (Entered: 10/04/2021)",
              "textStructured": null
            },
            {
              "boundary": null,
              "docketBadge": "DOCKET",
              "docketEntryDate": "2021-10-04T00:00:00+00:00",
              "docketEntryPrimaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntryPrimaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketEntrySecondaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntrySecondaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketNumber": 2276,
              "lastFetchDate": "2022-03-11T08:24:03+00:00",
              "object": "DocketEntry",
              "referencedDocketNumberArray": [],
              "sortOrder": 2473,
              "text": "(#2276) Motion to Substitute Counsel Filed by Interested Party Murex LLC (LaFlamme, Brian) (Entered: 10/04/2021)",
              "textStructured": null
            },
            {
              "boundary": null,
              "docketBadge": "DOCKET",
              "docketEntryDate": "2021-10-04T00:00:00+00:00",
              "docketEntryPrimaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntryPrimaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketEntrySecondaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntrySecondaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketNumber": 2275,
              "lastFetchDate": "2022-03-11T08:24:02+00:00",
              "object": "DocketEntry",
              "referencedDocketNumberArray": [],
              "sortOrder": 2472,
              "text": "(#2275) Motion to Substitute Counsel Filed by Creditor Pumping Solutions Inc (LaFlamme, Brian) (Entered: 10/04/2021)",
              "textStructured": null
            },
            {
              "boundary": null,
              "docketBadge": "DOCKET",
              "docketEntryDate": "2021-09-30T00:00:00+00:00",
              "docketEntryPrimaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntryPrimaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketEntrySecondaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntrySecondaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketNumber": null,
              "lastFetchDate": "2022-03-11T08:24:01+00:00",
              "object": "DocketEntry",
              "referencedDocketNumberArray": [],
              "sortOrder": 2471,
              "text": "Adversary Case 4:18-ap-4026 Closed (kru, l) (Entered: 09/30/2021)",
              "textStructured": null
            },
            {
              "boundary": null,
              "docketBadge": "DOCKET",
              "docketEntryDate": "2021-09-30T00:00:00+00:00",
              "docketEntryPrimaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntryPrimaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketEntrySecondaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntrySecondaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketNumber": null,
              "lastFetchDate": "2022-03-11T08:24:01+00:00",
              "object": "DocketEntry",
              "referencedDocketNumberArray": [],
              "sortOrder": 2470,
              "text": "Disposition of Adversary 4:18-ap-4026: Dismissed. (kru, l) (Entered: 09/30/2021)",
              "textStructured": null
            },
            {
              "boundary": null,
              "docketBadge": "DOCKET",
              "docketEntryDate": "2021-09-30T00:00:00+00:00",
              "docketEntryPrimaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntryPrimaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketEntrySecondaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntrySecondaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketNumber": null,
              "lastFetchDate": "2022-03-11T08:24:01+00:00",
              "object": "DocketEntry",
              "referencedDocketNumberArray": [],
              "sortOrder": 2469,
              "text": "Adversary Case 4:19-ap-4023 Closed (kru, l) (Entered: 09/30/2021)",
              "textStructured": null
            },
            {
              "boundary": null,
              "docketBadge": "DOCKET",
              "docketEntryDate": "2021-09-30T00:00:00+00:00",
              "docketEntryPrimaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntryPrimaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketEntrySecondaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntrySecondaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketNumber": null,
              "lastFetchDate": "2022-03-11T08:24:01+00:00",
              "object": "DocketEntry",
              "referencedDocketNumberArray": [],
              "sortOrder": 2468,
              "text": "Disposition of Adversary 4:19-ap-4023: Dismissed. (kru, l) (Entered: 09/30/2021)",
              "textStructured": null
            },
            {
              "boundary": null,
              "docketBadge": "DOCKET",
              "docketEntryDate": "2021-09-20T00:00:00+00:00",
              "docketEntryPrimaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntryPrimaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketEntrySecondaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntrySecondaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketNumber": null,
              "lastFetchDate": "2022-03-11T08:24:01+00:00",
              "object": "DocketEntry",
              "referencedDocketNumberArray": [
                {
                  "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgle0bf14b74a96/docketEntries?pageNumber=1&docketNumber=2243",
                  "docketNumber": 2243,
                  "object": "ReferencedDocketNumber"
                },
                {
                  "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgle0bf14b74a96/docketEntries?pageNumber=1&docketNumber=2234",
                  "docketNumber": 2234,
                  "object": "ReferencedDocketNumber"
                }
              ],
              "sortOrder": 2467,
              "text": "Hearing Held (RE: related document(s)#2234 Generic Motion filed by Creditor Encore Energy Services Inc, #2243 Omnibus Objection to Claims filed by Liquidator Drivetrain LLC) - Taken under submission. (how, j) (Entered: 09/21/2021)",
              "textStructured": null
            },
            {
              "boundary": null,
              "docketBadge": "DOCKET",
              "docketEntryDate": "2021-09-20T00:00:00+00:00",
              "docketEntryPrimaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntryPrimaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketEntrySecondaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntrySecondaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketNumber": 2274,
              "lastFetchDate": "2022-03-11T08:24:01+00:00",
              "object": "DocketEntry",
              "referencedDocketNumberArray": [],
              "sortOrder": 2466,
              "text": "(#2274) PDF with attached Audio File. Court Date & Time [ 9/20/2021 11:24:58 AM ]. File Size [ 151291 KB ]. Run Time [ 05:15:11 ]. (admin). (Entered: 09/20/2021)",
              "textStructured": null
            },
            {
              "boundary": null,
              "docketBadge": "DOCKET",
              "docketEntryDate": "2021-09-20T00:00:00+00:00",
              "docketEntryPrimaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntryPrimaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketEntrySecondaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntrySecondaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketNumber": 2273,
              "lastFetchDate": "2022-03-11T08:23:15+00:00",
              "object": "DocketEntry",
              "referencedDocketNumberArray": [
                {
                  "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgle0bf14b74a96/docketEntries?pageNumber=1&docketNumber=2259",
                  "docketNumber": 2259,
                  "object": "ReferencedDocketNumber"
                }
              ],
              "sortOrder": 2465,
              "text": "(#2273) Certificate of Service Filed by Liquidator Drivetrain LLC (RE: related document(s)#2259 Scheduling Order). (Farrell, David) (Entered: 09/20/2021)",
              "textStructured": null
            },
            {
              "boundary": null,
              "docketBadge": "DOCKET",
              "docketEntryDate": "2021-09-17T00:00:00+00:00",
              "docketEntryPrimaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntryPrimaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketEntrySecondaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntrySecondaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketNumber": 2272,
              "lastFetchDate": "2022-03-11T08:23:14+00:00",
              "object": "DocketEntry",
              "referencedDocketNumberArray": [
                {
                  "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgle0bf14b74a96/docketEntries?pageNumber=1&docketNumber=2260",
                  "docketNumber": 2260,
                  "object": "ReferencedDocketNumber"
                },
                {
                  "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgle0bf14b74a96/docketEntries?pageNumber=1&docketNumber=2270",
                  "docketNumber": 2270,
                  "object": "ReferencedDocketNumber"
                }
              ],
              "sortOrder": 2464,
              "text": "(#2272) Certificate of Service Filed by Liquidator Drivetrain LLC (RE: related document(s)#2260 Generic Order, #2270 Generic Order). (Bossi, Mark) (Entered: 09/17/2021)",
              "textStructured": null
            },
            {
              "boundary": null,
              "docketBadge": "DOCKET",
              "docketEntryDate": "2021-09-17T00:00:00+00:00",
              "docketEntryPrimaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntryPrimaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketEntrySecondaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntrySecondaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketNumber": 2270,
              "lastFetchDate": "2022-03-11T08:23:13+00:00",
              "object": "DocketEntry",
              "referencedDocketNumberArray": [
                {
                  "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgle0bf14b74a96/docketEntries?pageNumber=1&docketNumber=2261",
                  "docketNumber": 2261,
                  "object": "ReferencedDocketNumber"
                }
              ],
              "sortOrder": 2463,
              "text": "(#2270) Order Granting Motion #2261 Approving Stipulation Regarding Claims of GATX Corporation and GATX Rail Locomotive Group, LLC filed by Liquidator Drivetrain LLC (kru, l) (Entered: 09/17/2021)",
              "textStructured": null
            },
            {
              "boundary": null,
              "docketBadge": "DOCKET",
              "docketEntryDate": "2021-09-17T00:00:00+00:00",
              "docketEntryPrimaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntryPrimaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketEntrySecondaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntrySecondaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketNumber": 2269,
              "lastFetchDate": "2022-03-11T08:23:11+00:00",
              "object": "DocketEntry",
              "referencedDocketNumberArray": [
                {
                  "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgle0bf14b74a96/docketEntries?pageNumber=1&docketNumber=2266",
                  "docketNumber": 2266,
                  "object": "ReferencedDocketNumber"
                }
              ],
              "sortOrder": 2462,
              "text": "(#2269) Corrected PDF //Encore Energy Services, Inc's Reply Brief Supporting Administrative Claims Filed by Creditor Encore Energy Services Inc (RE: related document(s)#2266 Brief). (Riske, Thomas) (Entered: 09/17/2021)",
              "textStructured": null
            },
            {
              "boundary": null,
              "docketBadge": "DOCKET",
              "docketEntryDate": "2021-09-16T00:00:00+00:00",
              "docketEntryPrimaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntryPrimaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketEntrySecondaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntrySecondaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketNumber": 2271,
              "lastFetchDate": "2022-03-11T08:23:10+00:00",
              "object": "DocketEntry",
              "referencedDocketNumberArray": [],
              "sortOrder": 2461,
              "text": "(#2271) Discovery: (list of witnesses, exhibits, proposed findings, etc.) Filed by Liquidator Drivetrain LLC . (kru, l) (Entered: 09/17/2021)",
              "textStructured": null
            },
            {
              "boundary": null,
              "docketBadge": "DOCKET",
              "docketEntryDate": "2021-09-16T00:00:00+00:00",
              "docketEntryPrimaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntryPrimaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketEntrySecondaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntrySecondaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketNumber": 2268,
              "lastFetchDate": "2022-03-11T08:23:08+00:00",
              "object": "DocketEntry",
              "referencedDocketNumberArray": [
                {
                  "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgle0bf14b74a96/docketEntries?pageNumber=1&docketNumber=2243",
                  "docketNumber": 2243,
                  "object": "ReferencedDocketNumber"
                }
              ],
              "sortOrder": 2460,
              "text": "(#2268) Declaration re: Witnesses (Hearing on Contested Matters Scheduled for September 20, 2021) Filed by Liquidator Drivetrain LLC (RE: related document(s)#2243 Omnibus Objection to Claims). (Farrell, David) NOTE: THE COURT HAS RE-DOCKETED THIS PLEADING AS DISCOVERY, SEE DOCKET ENTRY #2271. Modified on 9/17/2021 (kru, l). (Entered: 09/16/2021)",
              "textStructured": null
            },
            {
              "boundary": null,
              "docketBadge": "DOCKET",
              "docketEntryDate": "2021-09-16T00:00:00+00:00",
              "docketEntryPrimaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntryPrimaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketEntrySecondaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntrySecondaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketNumber": 2267,
              "lastFetchDate": "2022-03-11T08:23:07+00:00",
              "object": "DocketEntry",
              "referencedDocketNumberArray": [
                {
                  "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgle0bf14b74a96/docketEntries?pageNumber=1&docketNumber=2243",
                  "docketNumber": 2243,
                  "object": "ReferencedDocketNumber"
                }
              ],
              "sortOrder": 2459,
              "text": "(#2267) Brief in Support Filed by Liquidator Drivetrain LLC (RE: related document(s)#2243 Omnibus Objection to Claims). (Farrell, David) Modified on 9/17/2021 (kru, l). (Entered: 09/16/2021)",
              "textStructured": null
            },
            {
              "boundary": null,
              "docketBadge": "DOCKET",
              "docketEntryDate": "2021-09-16T00:00:00+00:00",
              "docketEntryPrimaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntryPrimaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketEntrySecondaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntrySecondaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketNumber": 2266,
              "lastFetchDate": "2022-03-11T08:23:06+00:00",
              "object": "DocketEntry",
              "referencedDocketNumberArray": [
                {
                  "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgle0bf14b74a96/docketEntries?pageNumber=1&docketNumber=2234",
                  "docketNumber": 2234,
                  "object": "ReferencedDocketNumber"
                },
                {
                  "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgle0bf14b74a96/docketEntries?pageNumber=1&docketNumber=2269",
                  "docketNumber": 2269,
                  "object": "ReferencedDocketNumber"
                }
              ],
              "sortOrder": 2458,
              "text": "(#2266) Brief Supporting Administrative Claims Filed by Creditor Encore Energy Services Inc (RE: related document(s)#2234 Motion to Pay Claims, Alternatively, for Expedited Administrative Claims Discovery and Trial, and for Related Relief). (Riske, Thomas). NOTE: THE FILER HAS FILED A CORRECTED PLEADING, SEE DOCKET ENTRY #2269. Modified on 9/17/2021 (kru, l). (Entered: 09/16/2021)",
              "textStructured": null
            },
            {
              "boundary": null,
              "docketBadge": "DOCKET",
              "docketEntryDate": "2021-09-16T00:00:00+00:00",
              "docketEntryPrimaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntryPrimaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketEntrySecondaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntrySecondaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketNumber": 2265,
              "lastFetchDate": "2022-03-11T08:23:05+00:00",
              "object": "DocketEntry",
              "referencedDocketNumberArray": [],
              "sortOrder": 2457,
              "text": "(#2265) Motion to // Encore Energy Services, Inc's Motion for Leave to Exceed the Page Limitation on Its Reply Brief Supporting Administrative Claims Filed by Creditor Encore Energy Services Inc (Riske, Thomas) (Entered: 09/16/2021)",
              "textStructured": null
            },
            {
              "boundary": null,
              "docketBadge": "DOCKET",
              "docketEntryDate": "2021-09-16T00:00:00+00:00",
              "docketEntryPrimaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntryPrimaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketEntrySecondaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntrySecondaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketNumber": 2264,
              "lastFetchDate": "2022-03-11T08:23:04+00:00",
              "object": "DocketEntry",
              "referencedDocketNumberArray": [],
              "sortOrder": 2456,
              "text": "(#2264) Discovery: (list of witnesses, exhibits, proposed findings, etc.) Filed by Creditor Encore Energy Services Inc . (kru, l) (Entered: 09/16/2021)",
              "textStructured": null
            },
            {
              "boundary": null,
              "docketBadge": "DOCKET",
              "docketEntryDate": "2021-09-16T00:00:00+00:00",
              "docketEntryPrimaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntryPrimaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketEntrySecondaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntrySecondaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketNumber": 2263,
              "lastFetchDate": "2022-03-11T08:23:03+00:00",
              "object": "DocketEntry",
              "referencedDocketNumberArray": [
                {
                  "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgle0bf14b74a96/docketEntries?pageNumber=1&docketNumber=2223",
                  "docketNumber": 2223,
                  "object": "ReferencedDocketNumber"
                },
                {
                  "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgle0bf14b74a96/docketEntries?pageNumber=1&docketNumber=2195",
                  "docketNumber": 2195,
                  "object": "ReferencedDocketNumber"
                },
                {
                  "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgle0bf14b74a96/docketEntries?pageNumber=1&docketNumber=2204",
                  "docketNumber": 2204,
                  "object": "ReferencedDocketNumber"
                },
                {
                  "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgle0bf14b74a96/docketEntries?pageNumber=1&docketNumber=2214",
                  "docketNumber": 2214,
                  "object": "ReferencedDocketNumber"
                },
                {
                  "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgle0bf14b74a96/docketEntries?pageNumber=1&docketNumber=2198",
                  "docketNumber": 2198,
                  "object": "ReferencedDocketNumber"
                },
                {
                  "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgle0bf14b74a96/docketEntries?pageNumber=1&docketNumber=2203",
                  "docketNumber": 2203,
                  "object": "ReferencedDocketNumber"
                }
              ],
              "sortOrder": 2455,
              "text": "(#2263) Certificate of Service of Andrew Chan Regarding Claim Transfer Notices Filed by Other Professional Prime Clerk LLC (RE: related document(s)#2195 Transfer of Claim, #2198 Transfer of Claim, #2203 Transfer of Claim, #2204 Transfer of Claim, #2214 Transfer of Claim, #2223 Transfer of Claim). (Baer, Herbert) (Entered: 09/16/2021)",
              "textStructured": null
            },
            {
              "boundary": null,
              "docketBadge": "DOCKET",
              "docketEntryDate": "2021-09-16T00:00:00+00:00",
              "docketEntryPrimaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntryPrimaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketEntrySecondaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntrySecondaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketNumber": 2262,
              "lastFetchDate": "2022-03-11T08:23:02+00:00",
              "object": "DocketEntry",
              "referencedDocketNumberArray": [
                {
                  "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgle0bf14b74a96/docketEntries?pageNumber=1&docketNumber=2259",
                  "docketNumber": 2259,
                  "object": "ReferencedDocketNumber"
                }
              ],
              "sortOrder": 2454,
              "text": "(#2262) Support/Supplement Re: // Witness List Filed by Creditor Encore Energy Services Inc (RE: related document(s)#2259 Scheduling Order). (Eggmann, Robert) NOTE: THE COURT HAS RE-DOCKETED THIS PLEADING AS DISCOVERY, SEE DOCKET ENTRY #2264. Modified on 9/16/2021 (kru, l). (Entered: 09/16/2021)",
              "textStructured": null
            },
            {
              "boundary": null,
              "docketBadge": "DOCKET",
              "docketEntryDate": "2021-09-14T00:00:00+00:00",
              "docketEntryPrimaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntryPrimaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketEntrySecondaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntrySecondaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketNumber": 2261,
              "lastFetchDate": "2022-03-11T08:23:01+00:00",
              "object": "DocketEntry",
              "referencedDocketNumberArray": [],
              "sortOrder": 2453,
              "text": "(#2261) Motion to /For Approval of Stipulation Regarding Claims of GATX Corporation and GATX Rail Locomotive Group, LLC Filed by Liquidator Drivetrain LLC (Bossi, Mark) (Entered: 09/14/2021)",
              "textStructured": null
            },
            {
              "boundary": null,
              "docketBadge": "DOCKET",
              "docketEntryDate": "2021-09-14T00:00:00+00:00",
              "docketEntryPrimaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntryPrimaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketEntrySecondaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntrySecondaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketNumber": 2260,
              "lastFetchDate": "2022-03-11T08:22:58+00:00",
              "object": "DocketEntry",
              "referencedDocketNumberArray": [
                {
                  "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgle0bf14b74a96/docketEntries?pageNumber=1&docketNumber=2258",
                  "docketNumber": 2258,
                  "object": "ReferencedDocketNumber"
                }
              ],
              "sortOrder": 2452,
              "text": "(#2260) Order Granting Motion #2258 and Stipulation is Approved Regarding Claims of Wells Fargo Equipment Finance, Inc. filed by Liquidator Drivetrain LLC (kru, l) (Entered: 09/14/2021)",
              "textStructured": null
            },
            {
              "boundary": null,
              "docketBadge": "DOCKET",
              "docketEntryDate": "2021-09-14T00:00:00+00:00",
              "docketEntryPrimaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntryPrimaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketEntrySecondaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntrySecondaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketNumber": 2259,
              "lastFetchDate": "2022-03-11T08:22:57+00:00",
              "object": "DocketEntry",
              "referencedDocketNumberArray": [
                {
                  "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgle0bf14b74a96/docketEntries?pageNumber=1&docketNumber=2243",
                  "docketNumber": 2243,
                  "object": "ReferencedDocketNumber"
                },
                {
                  "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgle0bf14b74a96/docketEntries?pageNumber=1&docketNumber=2234",
                  "docketNumber": 2234,
                  "object": "ReferencedDocketNumber"
                }
              ],
              "sortOrder": 2451,
              "text": "(#2259) Amended Scheduling Order (RE: related document(s)#2234 Motion to Pay Claims filed by Creditor Encore Energy Services Inc, #2243 Omnibus Objection to Claims (Forty-Fourth Seeking to Reclassify Certain Claims) filed by Liquidator Drivetrain LLC). Final Evidentiary Hearing to be held on 9/20/2021 at 11:00 AM Bankruptcy Courtroom 7 North for #2243 and for #2234 (kru, l) (Entered: 09/14/2021)",
              "textStructured": null
            },
            {
              "boundary": null,
              "docketBadge": "DOCKET",
              "docketEntryDate": "2021-09-13T00:00:00+00:00",
              "docketEntryPrimaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntryPrimaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketEntrySecondaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntrySecondaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketNumber": null,
              "lastFetchDate": "2022-03-11T08:22:56+00:00",
              "object": "DocketEntry",
              "referencedDocketNumberArray": [
                {
                  "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgle0bf14b74a96/docketEntries?pageNumber=1&docketNumber=2234",
                  "docketNumber": 2234,
                  "object": "ReferencedDocketNumber"
                },
                {
                  "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgle0bf14b74a96/docketEntries?pageNumber=1&docketNumber=2243",
                  "docketNumber": 2243,
                  "object": "ReferencedDocketNumber"
                }
              ],
              "sortOrder": 2450,
              "text": "Hearing Continued (RE: related document(s) #2243 Omnibus Objection to Claims Filed by Liquidator Drivetrain LLC, #2234 Generic Motion Filed by Creditor Encore Energy Services Inc) Evidentiary hearing scheduled for 09/20/2021 at 11:00 AM at Bankruptcy Courtroom 7 North. (how, j) (Entered: 09/13/2021)",
              "textStructured": null
            },
            {
              "boundary": null,
              "docketBadge": "DOCKET",
              "docketEntryDate": "2021-09-13T00:00:00+00:00",
              "docketEntryPrimaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntryPrimaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketEntrySecondaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntrySecondaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketNumber": 2258,
              "lastFetchDate": "2022-03-11T08:22:56+00:00",
              "object": "DocketEntry",
              "referencedDocketNumberArray": [],
              "sortOrder": 2449,
              "text": "(#2258) Motion to Approval of Stipulation Regarding Claims of Wells Fargo Equipment Finance, Inc. Filed by Liquidator Drivetrain LLC (Bossi, Mark) (Entered: 09/13/2021)",
              "textStructured": null
            },
            {
              "boundary": null,
              "docketBadge": "DOCKET",
              "docketEntryDate": "2021-08-31T00:00:00+00:00",
              "docketEntryPrimaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntryPrimaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketEntrySecondaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntrySecondaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketNumber": 2257,
              "lastFetchDate": "2022-03-11T08:22:55+00:00",
              "object": "DocketEntry",
              "referencedDocketNumberArray": [
                {
                  "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgle0bf14b74a96/docketEntries?pageNumber=1&docketNumber=2256",
                  "docketNumber": 2256,
                  "object": "ReferencedDocketNumber"
                }
              ],
              "sortOrder": 2448,
              "text": "(#2257) Notice of Transcript Deadlines Related to Restriction and Redaction. Transcript is restricted until 11/29/2021. For additional information, contact the Director of Courtroom Services at (314) 244-4801. (RE: related document(s)#2256 Transcript filed by Reporter) (rei, k) (Entered: 08/31/2021)",
              "textStructured": null
            },
            {
              "boundary": null,
              "docketBadge": "DOCKET",
              "docketEntryDate": "2021-08-31T00:00:00+00:00",
              "docketEntryPrimaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntryPrimaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketEntrySecondaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntrySecondaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketNumber": 2256,
              "lastFetchDate": "2022-03-11T08:22:54+00:00",
              "object": "DocketEntry",
              "referencedDocketNumberArray": [
                {
                  "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgle0bf14b74a96/docketEntries?pageNumber=1&docketNumber=188",
                  "docketNumber": 188,
                  "object": "ReferencedDocketNumber"
                }
              ],
              "sortOrder": 2447,
              "text": "(#2256) Transcript. Remote electronic access to the transcript is restricted. For additional information, contact the Director of Courtroom Services at (314) 244-4801. (RE: related document(s) #188 Motion to Reject Lease or Executory Contract with Encore Energy Services, Inc. Filed by Debtor Abengoa Bioenergy US Holding LLC Hearing scheduled 4/25/2016 at 10:00 AM at Bankruptcy Courtroom 7 North.). (Bowen, James) (Entered: 08/31/2021)",
              "textStructured": null
            },
            {
              "boundary": null,
              "docketBadge": "DOCKET",
              "docketEntryDate": "2021-08-30T00:00:00+00:00",
              "docketEntryPrimaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntryPrimaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketEntrySecondaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntrySecondaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketNumber": 2255,
              "lastFetchDate": "2022-03-11T08:22:52+00:00",
              "object": "DocketEntry",
              "referencedDocketNumberArray": [
                {
                  "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgle0bf14b74a96/docketEntries?pageNumber=1&docketNumber=2243",
                  "docketNumber": 2243,
                  "object": "ReferencedDocketNumber"
                }
              ],
              "sortOrder": 2446,
              "text": "(#2255) Brief (Opening) Filed by Liquidator Drivetrain LLC (RE: related document(s)#2243 Omnibus Objection to Claims). (Attachments: #1 Exhibit A (Highlighted and Annotated Version of Claim No. 47) #2 Exhibit B (Highlighted and Annotated Version of Claim No. 29)) (Farrell, David) (Entered: 08/30/2021)",
              "textStructured": null
            },
            {
              "boundary": null,
              "docketBadge": "DOCKET",
              "docketEntryDate": "2021-08-30T00:00:00+00:00",
              "docketEntryPrimaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntryPrimaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketEntrySecondaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntrySecondaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketNumber": 2254,
              "lastFetchDate": "2022-03-11T08:22:51+00:00",
              "object": "DocketEntry",
              "referencedDocketNumberArray": [
                {
                  "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgle0bf14b74a96/docketEntries?pageNumber=1&docketNumber=2234",
                  "docketNumber": 2234,
                  "object": "ReferencedDocketNumber"
                }
              ],
              "sortOrder": 2445,
              "text": "(#2254) Brief Supporting Administrative Claims Filed by Creditor Encore Energy Services Inc Inc (RE: related document(s)#2234 Motion to Pay Claims, Alternatively, for Expedited Administrative Claims Discovery and Trial, and for Related Relief). (Ashby, Thomas). Modified on 8/31/2021 (kru, l). (Entered: 08/30/2021)",
              "textStructured": null
            },
            {
              "boundary": null,
              "docketBadge": "DOCKET",
              "docketEntryDate": "2021-08-23T00:00:00+00:00",
              "docketEntryPrimaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntryPrimaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketEntrySecondaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntrySecondaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketNumber": 2253,
              "lastFetchDate": "2022-03-11T08:22:50+00:00",
              "object": "DocketEntry",
              "referencedDocketNumberArray": [
                {
                  "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgle0bf14b74a96/docketEntries?pageNumber=1&docketNumber=2243",
                  "docketNumber": 2243,
                  "object": "ReferencedDocketNumber"
                }
              ],
              "sortOrder": 2444,
              "text": "(#2253) Response OPPOSING DRIVETRAINS FORTY-FOURTH OMNIBUS CLAIM OBJECTION Filed by Creditor Encore Energy Services Inc (RE: related document(s) #2243 Omnibus Objection to Claims (Forty-Fourth Seeking to Reclassify Certain Claims). Certificate of Service: Filed. Hearing scheduled 9/13/2021 at 11:00 AM at Bankruptcy Courtroom 7 North. Filed by Liquidator Drivetrain LLC). (Attachments: #1 Exhibit A - Declaration of Bryant Oberg #2 Exhibit B - Declaration of Linda Maher) (Ashby, Thomas) (Entered: 08/23/2021)",
              "textStructured": null
            },
            {
              "boundary": null,
              "docketBadge": "DOCKET",
              "docketEntryDate": "2021-08-23T00:00:00+00:00",
              "docketEntryPrimaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntryPrimaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketEntrySecondaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntrySecondaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketNumber": 2252,
              "lastFetchDate": "2022-03-11T08:22:49+00:00",
              "object": "DocketEntry",
              "referencedDocketNumberArray": [
                {
                  "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgle0bf14b74a96/docketEntries?pageNumber=1&docketNumber=2243",
                  "docketNumber": 2243,
                  "object": "ReferencedDocketNumber"
                }
              ],
              "sortOrder": 2443,
              "text": "(#2252) Response Opposing Drivetrain's Forty-Fourth Omnibus Claim Objection Filed by Creditor Encore Energy Services Inc (RE: related document(s) #2243 Omnibus Objection to Claims (Forty-Fourth Seeking to Reclassify Certain Claims). Certificate of Service: Filed. Hearing scheduled 9/13/2021 at 11:00 AM at Bankruptcy Courtroom 7 North. Filed by Liquidator Drivetrain LLC). (Attachments: #1 Exhibit A - Declaration of Linda Maher) (Ashby, Thomas) (Entered: 08/23/2021)",
              "textStructured": null
            },
            {
              "boundary": null,
              "docketBadge": "DOCKET",
              "docketEntryDate": "2021-08-18T00:00:00+00:00",
              "docketEntryPrimaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntryPrimaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketEntrySecondaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntrySecondaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketNumber": 2251,
              "lastFetchDate": "2022-03-11T08:22:48+00:00",
              "object": "DocketEntry",
              "referencedDocketNumberArray": [
                {
                  "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgle0bf14b74a96/docketEntries?pageNumber=1&docketNumber=2248",
                  "docketNumber": 2248,
                  "object": "ReferencedDocketNumber"
                }
              ],
              "sortOrder": 2442,
              "text": "(#2251) Certificate of Service Filed by Creditor Encore Energy Services Inc (RE: related document(s)#2248 Scheduling Order). (Eggmann, Robert) (Entered: 08/18/2021)",
              "textStructured": null
            },
            {
              "boundary": null,
              "docketBadge": "DOCKET",
              "docketEntryDate": "2021-08-18T00:00:00+00:00",
              "docketEntryPrimaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntryPrimaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketEntrySecondaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntrySecondaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketNumber": 2250,
              "lastFetchDate": "2022-03-11T08:22:47+00:00",
              "object": "DocketEntry",
              "referencedDocketNumberArray": [
                {
                  "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgle0bf14b74a96/docketEntries?pageNumber=1&docketNumber=2249",
                  "docketNumber": 2249,
                  "object": "ReferencedDocketNumber"
                },
                {
                  "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgle0bf14b74a96/docketEntries?pageNumber=1&docketNumber=188",
                  "docketNumber": 188,
                  "object": "ReferencedDocketNumber"
                }
              ],
              "sortOrder": 2441,
              "text": "(#2250) Vendor Acknowledgement of Receipt for Transcript Order. (RE: related document(s) #2249 Request for Transcript. Filed by Liquidator Drivetrain LLC (RE: related document(s)#188 Motion to Reject Lease or Executory Contract with Encore Energy Services, Inc.).). Transcript to be filed with the Court by: 09/17/2021. (Bowen, James) (Entered: 08/18/2021)",
              "textStructured": null
            },
            {
              "boundary": null,
              "docketBadge": "DOCKET",
              "docketEntryDate": "2021-08-18T00:00:00+00:00",
              "docketEntryPrimaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntryPrimaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketEntrySecondaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntrySecondaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketNumber": 2249,
              "lastFetchDate": "2022-03-11T08:22:47+00:00",
              "object": "DocketEntry",
              "referencedDocketNumberArray": [
                {
                  "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgle0bf14b74a96/docketEntries?pageNumber=1&docketNumber=188",
                  "docketNumber": 188,
                  "object": "ReferencedDocketNumber"
                }
              ],
              "sortOrder": 2440,
              "text": "(#2249) Request for Transcript. Filed by Liquidator Drivetrain LLC (RE: related document(s)#188 Motion to Reject Lease or Executory Contract with Encore Energy Services, Inc.). (Farrell, David) (Entered: 08/18/2021)",
              "textStructured": null
            },
            {
              "boundary": null,
              "docketBadge": "DOCKET",
              "docketEntryDate": "2021-08-09T00:00:00+00:00",
              "docketEntryPrimaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntryPrimaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketEntrySecondaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntrySecondaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketNumber": 2248,
              "lastFetchDate": "2022-03-11T08:22:46+00:00",
              "object": "DocketEntry",
              "referencedDocketNumberArray": [
                {
                  "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgle0bf14b74a96/docketEntries?pageNumber=1&docketNumber=2234",
                  "docketNumber": 2234,
                  "object": "ReferencedDocketNumber"
                }
              ],
              "sortOrder": 2439,
              "text": "(#2248) Order Granting in Part and Continuing in Part Motion to Pay Claims, Alternatively, For Expedited Administrative Claims Discovery and Trial, and For Related Relief (RE: related document #2234 Motion to Pay Claims, Alternatively, for Expedited Administrative Claims Discovery and Trial, and for Related Relief Filed by Creditor Encore Energy Services Inc). Final Evidentiary Hearing to be held on 9/13/2021 at 11:00 AM Bankruptcy Courtroom 7 North. (Egg, M) (Entered: 08/09/2021)",
              "textStructured": null
            },
            {
              "boundary": null,
              "docketBadge": "DOCKET",
              "docketEntryDate": "2021-08-09T00:00:00+00:00",
              "docketEntryPrimaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntryPrimaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketEntrySecondaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntrySecondaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketNumber": 2247,
              "lastFetchDate": "2022-03-11T08:22:45+00:00",
              "object": "DocketEntry",
              "referencedDocketNumberArray": [
                {
                  "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgle0bf14b74a96/docketEntries?pageNumber=1&docketNumber=2236",
                  "docketNumber": 2236,
                  "object": "ReferencedDocketNumber"
                }
              ],
              "sortOrder": 2438,
              "text": "(#2247) Order Granting Motion Expedite Hearing (Related Doc #2236) (nel, k) (Entered: 08/09/2021)",
              "textStructured": null
            },
            {
              "boundary": null,
              "docketBadge": "DOCKET",
              "docketEntryDate": "2021-08-04T00:00:00+00:00",
              "docketEntryPrimaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntryPrimaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketEntrySecondaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntrySecondaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketNumber": 2246,
              "lastFetchDate": "2022-03-11T08:22:44+00:00",
              "object": "DocketEntry",
              "referencedDocketNumberArray": [
                {
                  "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgle0bf14b74a96/docketEntries?pageNumber=1&docketNumber=2245",
                  "docketNumber": 2245,
                  "object": "ReferencedDocketNumber"
                }
              ],
              "sortOrder": 2437,
              "text": "(#2246) Certificate of Service Filed by Liquidator Drivetrain LLC (RE: related document(s)#2245 Generic Order). (Farrell, David) (Entered: 08/04/2021)",
              "textStructured": null
            },
            {
              "boundary": null,
              "docketBadge": "DOCKET",
              "docketEntryDate": "2021-08-04T00:00:00+00:00",
              "docketEntryPrimaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntryPrimaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketEntrySecondaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntrySecondaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketNumber": 2245,
              "lastFetchDate": "2022-03-11T08:22:43+00:00",
              "object": "DocketEntry",
              "referencedDocketNumberArray": [
                {
                  "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgle0bf14b74a96/docketEntries?pageNumber=1&docketNumber=2239",
                  "docketNumber": 2239,
                  "object": "ReferencedDocketNumber"
                }
              ],
              "sortOrder": 2436,
              "text": "(#2245) Order Granting Consent Motion #2239 Approving Stipulation Regarding the Claims of the Varilease Parties filed by Liquidator Drivetrain LLC (kru, l) (Entered: 08/04/2021)",
              "textStructured": null
            },
            {
              "boundary": null,
              "docketBadge": "DOCKET",
              "docketEntryDate": "2021-08-03T00:00:00+00:00",
              "docketEntryPrimaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntryPrimaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketEntrySecondaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntrySecondaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketNumber": 2244,
              "lastFetchDate": "2022-03-11T08:22:42+00:00",
              "object": "DocketEntry",
              "referencedDocketNumberArray": [],
              "sortOrder": 2435,
              "text": "(#2244) PDF with attached Audio File. Court Date & Time [ 8/3/2021 10:02:38 AM ]. File Size [ 4699 KB ]. Run Time [ 00:09:47 ]. (admin). (Entered: 08/03/2021)",
              "textStructured": null
            },
            {
              "boundary": null,
              "docketBadge": "DOCKET",
              "docketEntryDate": "2021-08-03T00:00:00+00:00",
              "docketEntryPrimaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntryPrimaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketEntrySecondaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntrySecondaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketNumber": null,
              "lastFetchDate": "2022-03-11T08:22:40+00:00",
              "object": "DocketEntry",
              "referencedDocketNumberArray": [
                {
                  "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgle0bf14b74a96/docketEntries?pageNumber=1&docketNumber=2236",
                  "docketNumber": 2236,
                  "object": "ReferencedDocketNumber"
                }
              ],
              "sortOrder": 2434,
              "text": "Hearing Held (RE: related document(s)#2236 Motion to Expedite Hearing filed by Creditor Encore Energy Services Inc) - Granted - submit order. (how, j) (Entered: 08/03/2021)",
              "textStructured": null
            },
            {
              "boundary": null,
              "docketBadge": "DOCKET",
              "docketEntryDate": "2021-08-03T00:00:00+00:00",
              "docketEntryPrimaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntryPrimaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketEntrySecondaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntrySecondaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketNumber": null,
              "lastFetchDate": "2022-03-11T08:22:40+00:00",
              "object": "DocketEntry",
              "referencedDocketNumberArray": [
                {
                  "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgle0bf14b74a96/docketEntries?pageNumber=1&docketNumber=2234",
                  "docketNumber": 2234,
                  "object": "ReferencedDocketNumber"
                }
              ],
              "sortOrder": 2433,
              "text": "Hearing Settled in part, Continued in part - (RE: related document(s) #2234 Generic Motion Filed by Creditor Encore Energy Services Inc) Hearing scheduled 09/13/2021 at 11:00 AM at Bankruptcy Courtroom 7 North. (how, j) (Entered: 08/03/2021)",
              "textStructured": null
            },
            {
              "boundary": null,
              "docketBadge": "DOCKET",
              "docketEntryDate": "2021-08-02T00:00:00+00:00",
              "docketEntryPrimaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntryPrimaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketEntrySecondaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntrySecondaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketNumber": 2243,
              "lastFetchDate": "2022-03-11T08:22:40+00:00",
              "object": "DocketEntry",
              "referencedDocketNumberArray": [],
              "sortOrder": 2432,
              "text": "(#2243) Omnibus Objection to Claims (Forty-Fourth Seeking to Reclassify Certain Claims). Certificate of Service: Filed. Hearing scheduled 9/13/2021 at 11:00 AM at Bankruptcy Courtroom 7 North. Filed by Liquidator Drivetrain LLC (Farrell, David) (Entered: 08/02/2021)",
              "textStructured": null
            },
            {
              "boundary": null,
              "docketBadge": "DOCKET",
              "docketEntryDate": "2021-08-02T00:00:00+00:00",
              "docketEntryPrimaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntryPrimaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketEntrySecondaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntrySecondaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketNumber": 2242,
              "lastFetchDate": "2022-03-11T08:22:38+00:00",
              "object": "DocketEntry",
              "referencedDocketNumberArray": [
                {
                  "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgle0bf14b74a96/docketEntries?pageNumber=1&docketNumber=2234",
                  "docketNumber": 2234,
                  "object": "ReferencedDocketNumber"
                }
              ],
              "sortOrder": 2431,
              "text": "(#2242) Declaration re: of Jerome McKenna in Support of Encore Energy Services, Inc., Motion to Pay Claims, Alternatively, for Expedited Administrative Claims Discovery and Trial, and for Related Relief Filed by Creditor Encore Energy Services Inc (RE: related document(s)#2234 Motion to Pay Claims, Alternatively, for Expedited Administrative Claims Discovery and Trial, and for Related Relief). (Riske, Thomas) (Entered: 08/02/2021)",
              "textStructured": null
            },
            {
              "boundary": null,
              "docketBadge": "DOCKET",
              "docketEntryDate": "2021-08-02T00:00:00+00:00",
              "docketEntryPrimaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntryPrimaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketEntrySecondaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntrySecondaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketNumber": 2241,
              "lastFetchDate": "2022-03-11T08:22:37+00:00",
              "object": "DocketEntry",
              "referencedDocketNumberArray": [
                {
                  "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgle0bf14b74a96/docketEntries?pageNumber=1&docketNumber=2234",
                  "docketNumber": 2234,
                  "object": "ReferencedDocketNumber"
                }
              ],
              "sortOrder": 2430,
              "text": "(#2241) Exhibit to Motion to Pay Claims Filed by Creditor Encore Energy Services Inc (RE: related document(s)#2234 Motion to Pay Claims, Alternatively, for Expedited Administrative Claims Discovery and Trial, and for Related Relief). (Riske, Thomas) (Entered: 08/02/2021)",
              "textStructured": null
            },
            {
              "boundary": null,
              "docketBadge": "DOCKET",
              "docketEntryDate": "2021-08-02T00:00:00+00:00",
              "docketEntryPrimaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntryPrimaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketEntrySecondaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntrySecondaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketNumber": 2240,
              "lastFetchDate": "2022-03-11T08:22:36+00:00",
              "object": "DocketEntry",
              "referencedDocketNumberArray": [
                {
                  "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgle0bf14b74a96/docketEntries?pageNumber=1&docketNumber=2234",
                  "docketNumber": 2234,
                  "object": "ReferencedDocketNumber"
                }
              ],
              "sortOrder": 2429,
              "text": "(#2240) Declaration re: of Kenneth Graeber in Support of Encore Energy Services, Inc., Motion to Pay Claims, Alternatively, for Expedited Administrative Claims Discovery and Trial, and for Related Relief Filed by Creditor Encore Energy Services Inc (RE: related document(s)#2234 Motion to Pay Claims, Alternatively, for Expedited Administrative Claims Discovery and Trial, and for Related Relief). (Riske, Thomas). Modified on 8/2/2021 (kru, l). (Entered: 08/02/2021)",
              "textStructured": null
            },
            {
              "boundary": null,
              "docketBadge": "DOCKET",
              "docketEntryDate": "2021-07-30T00:00:00+00:00",
              "docketEntryPrimaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntryPrimaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketEntrySecondaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntrySecondaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketNumber": 2239,
              "lastFetchDate": "2022-03-11T08:22:35+00:00",
              "object": "DocketEntry",
              "referencedDocketNumberArray": [],
              "sortOrder": 2428,
              "text": "(#2239) Agreed Motion to Obtain Entry of Order Approving Stipulation Regarding the Claims of the Varilease Parties Filed by Liquidator Drivetrain LLC (Attachments: #1 Exhibit A (Claims Resolution Stipulation) #2 Exhibit B (Proposed Order) #3 Exhibit C (Service List)) (Farrell, David) (Entered: 07/30/2021)",
              "textStructured": null
            },
            {
              "boundary": null,
              "docketBadge": "DOCKET",
              "docketEntryDate": "2021-07-30T00:00:00+00:00",
              "docketEntryPrimaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntryPrimaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketEntrySecondaryDocuments": {
                "caseDocumentArray": [],
                "nextPageAPI": null,
                "object": "DocketEntrySecondaryDocuments",
                "pageNumber": 0,
                "totalCount": 0,
                "totalPages": 0
              },
              "docketNumber": 2238,
              "lastFetchDate": "2022-03-11T08:22:34+00:00",
              "object": "DocketEntry",
              "referencedDocketNumberArray": [
                {
                  "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgle0bf14b74a96/docketEntries?pageNumber=1&docketNumber=2236",
                  "docketNumber": 2236,
                  "object": "ReferencedDocketNumber"
                },
                {
                  "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgle0bf14b74a96/docketEntries?pageNumber=1&docketNumber=2237",
                  "docketNumber": 2237,
                  "object": "ReferencedDocketNumber"
                },
                {
                  "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgle0bf14b74a96/docketEntries?pageNumber=1&docketNumber=2234",
                  "docketNumber": 2234,
                  "object": "ReferencedDocketNumber"
                }
              ],
              "sortOrder": 2427,
              "text": "(#2238) Certificate of Service Filed by Creditor Encore Energy Services Inc (RE: related document(s)#2236 Motion to Expedite Hearing (related documents #2234 Generic Motion) , #2237 Notice of Hearing). (Attachments: #1 Exhibit A) (Riske, Thomas) (Entered: 07/30/2021)",
              "textStructured": null
            }
          ],
          "nextPageAPI": "https://enterpriseapi.unicourt.com/case/CASEgle0bf14b74a96/docketEntries?pageNumber=2&sortBy=latest+to+oldest",
          "object": "DocketEntries",
          "pageNumber": 1,
          "totalCount": 2526,
          "totalPages": 26
        }
      },
      "CaseApiDocketEntrySeconaryDocumentsResponse": {
        "value": {
          "caseDocumentArray": [
            {
              "addedToLibraryDate": null,
              "caseDocumentId": "CDOCdg09be778a0e90",
              "childDocumentIdArray": [],
              "description": "Text of Proposed Order Order",
              "documentFiledDate": "2022-05-20T00:00:00+00:00",
              "downloadAPI": null,
              "estimatedOrderDuration": "withinMinutes",
              "firstFetchDate": "2022-05-31T14:58:10+00:00",
              "inLibrary": false,
              "isPreviewAvailable": false,
              "name": "8745 #3",
              "object": "CaseDocument",
              "pages": 1,
              "parentDocumentId": "CDOCdgac797feb45b1",
              "previewDocument": null,
              "price": 0.1,
              "sortOrder": null,
              "sourceDataStatus": null
            },
            {
              "addedToLibraryDate": null,
              "caseDocumentId": "CDOCdg4411a0f6eb57",
              "childDocumentIdArray": [],
              "description": "Exhibit Verification",
              "documentFiledDate": "2022-05-20T00:00:00+00:00",
              "downloadAPI": null,
              "estimatedOrderDuration": "withinMinutes",
              "firstFetchDate": "2022-05-31T14:58:10+00:00",
              "inLibrary": false,
              "isPreviewAvailable": false,
              "name": "8745 #2",
              "object": "CaseDocument",
              "pages": 2,
              "parentDocumentId": "CDOCdgac797feb45b1",
              "previewDocument": null,
              "price": 0.2,
              "sortOrder": null,
              "sourceDataStatus": null
            },
            {
              "addedToLibraryDate": null,
              "caseDocumentId": "CDOCdg8b0ab22bf455",
              "childDocumentIdArray": [],
              "description": "Exhibit Verification",
              "documentFiledDate": "2022-05-20T00:00:00+00:00",
              "downloadAPI": null,
              "estimatedOrderDuration": "withinMinutes",
              "firstFetchDate": "2022-05-31T14:58:10+00:00",
              "inLibrary": false,
              "isPreviewAvailable": false,
              "name": "8745 #1",
              "object": "CaseDocument",
              "pages": 2,
              "parentDocumentId": "CDOCdgac797feb45b1",
              "previewDocument": null,
              "price": 0.2,
              "sortOrder": null,
              "sourceDataStatus": null
            }
          ],
          "nextPageAPI": null,
          "object": "DocketEntrySecondaryDocuments",
          "pageNumber": 1,
          "totalCount": 3,
          "totalPages": 1
        }
      },
      "CaseApiFederalCaseResponse": {
        "value": {
          "attorneys": {
            "attorneyArray": [
              {
                "attorneyId": "ATTYgr27b3a8635f8b",
                "attorneyLawFirmArray": [
                  {
                    "attorneyLawFirmId": "ALFIgr792c15e4137c",
                    "firstFetchDate": "2019-05-16T06:55:57+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2019-05-16T06:55:57+00:00",
                    "name": "Niblock Law Firm",
                    "object": "AttorneyLawFirm"
                  }
                ],
                "attorneyType": {
                  "attorneyTypeId": "ATYPWXtARwvzu5HLcf",
                  "createdDate": "2022-03-28T04:59:12+00:00",
                  "name": "Lead Attorney",
                  "object": "AttorneyType"
                },
                "barNumber": null,
                "contact": {
                  "addressArray": [
                    {
                      "city": "Fayetteville",
                      "countryCode": "USA",
                      "countryName": "United States of America",
                      "firstFetchDate": "2019-05-16T06:55:54+00:00",
                      "isVisible": true,
                      "lastFetchDate": "2019-05-16T06:55:54+00:00",
                      "latitude": null,
                      "longitude": null,
                      "object": "Address",
                      "stateCode": "AR",
                      "stateName": "ARKANSAS",
                      "streetAddress1": "324 North College Avenue, Post Office Drawer 818, Drawer 818",
                      "streetAddress2": null,
                      "zip": "72702",
                      "zip4": null
                    },
                    {
                      "city": "Fayetteville",
                      "countryCode": "USA",
                      "countryName": "United States of America",
                      "firstFetchDate": "2019-05-16T06:55:57+00:00",
                      "isVisible": true,
                      "lastFetchDate": "2019-05-16T06:55:57+00:00",
                      "latitude": null,
                      "longitude": null,
                      "object": "Address",
                      "stateCode": "AR",
                      "stateName": "ARKANSAS",
                      "streetAddress1": "324 North College Avenue, Post Office Drawer 818",
                      "streetAddress2": null,
                      "zip": "72702",
                      "zip4": null
                    }
                  ],
                  "emailArray": [],
                  "object": "Contact",
                  "phoneNumberArray": [
                    {
                      "firstFetchDate": "2019-05-16T06:55:57+00:00",
                      "isVisible": true,
                      "lastFetchDate": "2019-05-16T06:55:57+00:00",
                      "object": "Phone",
                      "phoneNumber": "4795215510",
                      "phoneType": "DEFAULT"
                    }
                  ]
                },
                "firstFetchDate": "2019-05-16T06:55:54+00:00",
                "firstName": "Jason",
                "isVisible": true,
                "lastFetchDate": "2019-05-16T06:55:54+00:00",
                "lastName": "Hatfield",
                "middleName": "M",
                "name": "Jason M. Hatfield",
                "namePrefix": null,
                "nameSuffix": null,
                "object": "Attorney",
                "partyAttorneyAssociations": {
                  "nextPageAPI": null,
                  "object": "PartyAttorneyAssociations",
                  "pageNumber": 1,
                  "partyAttorneyAssociationArray": [
                    {
                      "attorneyId": "ATTYgr27b3a8635f8b",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgr5f74f5ad4b6c",
                      "partyId": "PRTYgrf2567dcf8eca"
                    }
                  ],
                  "totalCount": 1,
                  "totalPages": 1
                },
                "partyRoleGroupIdArray": [
                  "PTYGBnjxbx6tKNfVEP"
                ],
                "partyRoleIdArray": [
                  "PTYR9F4zbteyj7ehmi"
                ],
                "possibleNormAttorneyArray": [
                  {
                    "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormJudges?pageNumber=1",
                    "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormLawFirms?pageNumber=1",
                    "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormParties?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByNormAttorney?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByOpposingNormAttorney?pageNumber=1",
                    "confidenceScore": 0.5,
                    "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111",
                    "normAttorneyId": "NATY11111111111111",
                    "normAttorneyName": "ACOSTA S FERNANDO",
                    "object": "PossibleNormAttorney",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "barId": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "lawFirm": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.6,
                      "otherPotentialNormAttorneys": 0,
                      "phone": "Not_Provided_By_Data_Source"
                    }
                  }
                ],
                "possibleNormLawFirmArray": [
                  {
                    "associatedNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormAttorney?pageNumber=1",
                    "associatedNormJudgeAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormJudges?pageNumber=1",
                    "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormParties?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByNormLawFirm?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByOpposingNormLawFirm?pageNumber=1",
                    "confidenceScore": 0.66,
                    "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111",
                    "normLawFirmId": "NLAF11111111111111",
                    "normLawFirmName": "MidLand Funding LLC",
                    "object": "PossibleNormLawFirm",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.8,
                      "otherPotentialNormLawFirms": 0,
                      "phone": "Not_Provided_By_Data_Source",
                      "secretaryOfStateId": "Not_Provided_By_Data_Source"
                    },
                    "sourceDetails": {
                      "linkedNormAttorneyIdArray": [
                        "NATY11111111111111"
                      ],
                      "source": "Case_Attorney_Linked_In_Other_Cases"
                    }
                  }
                ],
                "sourceAttorneyType": "LEAD ATTORNEY"
              },
              {
                "attorneyId": "ATTYgrd53a2882f994",
                "attorneyLawFirmArray": [
                  {
                    "attorneyLawFirmId": "ALFIgr84c61920a410",
                    "firstFetchDate": "2019-05-16T06:55:56+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2019-05-16T06:55:56+00:00",
                    "name": "Rainey C. Booth Esq.",
                    "object": "AttorneyLawFirm"
                  }
                ],
                "attorneyType": {
                  "attorneyTypeId": "ATYPWXtARwvzu5HLcf",
                  "createdDate": "2022-03-28T04:59:12+00:00",
                  "name": "Lead Attorney",
                  "object": "AttorneyType"
                },
                "barNumber": null,
                "contact": {
                  "addressArray": [
                    {
                      "city": "Pensacola",
                      "countryCode": "USA",
                      "countryName": "United States of America",
                      "firstFetchDate": "2019-05-16T06:55:54+00:00",
                      "isVisible": true,
                      "lastFetchDate": "2019-05-16T06:55:54+00:00",
                      "latitude": null,
                      "longitude": null,
                      "object": "Address",
                      "stateCode": "FL",
                      "stateName": "FLORIDA",
                      "streetAddress1": "331 E. Romana St.",
                      "streetAddress2": null,
                      "zip": "32502",
                      "zip4": null
                    }
                  ],
                  "emailArray": [],
                  "object": "Contact",
                  "phoneNumberArray": [
                    {
                      "firstFetchDate": "2019-05-16T06:55:54+00:00",
                      "isVisible": true,
                      "lastFetchDate": "2019-05-16T06:55:54+00:00",
                      "object": "Phone",
                      "phoneNumber": "8504321500",
                      "phoneType": "DEFAULT"
                    },
                    {
                      "firstFetchDate": "2019-05-16T06:55:54+00:00",
                      "isVisible": true,
                      "lastFetchDate": "2019-05-16T06:55:54+00:00",
                      "object": "Phone",
                      "phoneNumber": "8504321505",
                      "phoneType": "FAX"
                    }
                  ]
                },
                "firstFetchDate": "2019-05-16T06:55:54+00:00",
                "firstName": "Rainey",
                "isVisible": true,
                "lastFetchDate": "2019-05-16T06:55:54+00:00",
                "lastName": "Booth",
                "middleName": "Cawthon",
                "name": "Rainey Cawthon Booth",
                "namePrefix": null,
                "nameSuffix": null,
                "object": "Attorney",
                "partyAttorneyAssociations": {
                  "nextPageAPI": null,
                  "object": "PartyAttorneyAssociations",
                  "pageNumber": 1,
                  "partyAttorneyAssociationArray": [
                    {
                      "attorneyId": "ATTYgrd53a2882f994",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgrb5289ca9836a",
                      "partyId": "PRTYgr8636d5dd1c2b"
                    },
                    {
                      "attorneyId": "ATTYgrd53a2882f994",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgrca2f04549b6e",
                      "partyId": "PRTYgr6823ced5faa7"
                    },
                    {
                      "attorneyId": "ATTYgrd53a2882f994",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgrdcb3bcad6797",
                      "partyId": "PRTYgrf764673810d6"
                    }
                  ],
                  "totalCount": 3,
                  "totalPages": 1
                },
                "partyRoleGroupIdArray": [
                  "PTYGBnjxbx6tKNfVEP"
                ],
                "partyRoleIdArray": [
                  "PTYR9F4zbteyj7ehmi"
                ],
                "possibleNormAttorneyArray": [
                  {
                    "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormJudges?pageNumber=1",
                    "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormLawFirms?pageNumber=1",
                    "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormParties?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByNormAttorney?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByOpposingNormAttorney?pageNumber=1",
                    "confidenceScore": 0.5,
                    "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111",
                    "normAttorneyId": "NATY11111111111111",
                    "normAttorneyName": "ACOSTA S FERNANDO",
                    "object": "PossibleNormAttorney",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "barId": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "lawFirm": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.6,
                      "otherPotentialNormAttorneys": 0,
                      "phone": "Not_Provided_By_Data_Source"
                    }
                  }
                ],
                "possibleNormLawFirmArray": [
                  {
                    "associatedNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormAttorney?pageNumber=1",
                    "associatedNormJudgeAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormJudges?pageNumber=1",
                    "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormParties?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByNormLawFirm?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByOpposingNormLawFirm?pageNumber=1",
                    "confidenceScore": 0.66,
                    "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111",
                    "normLawFirmId": "NLAF11111111111111",
                    "normLawFirmName": "MidLand Funding LLC",
                    "object": "PossibleNormLawFirm",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.8,
                      "otherPotentialNormLawFirms": 0,
                      "phone": "Not_Provided_By_Data_Source",
                      "secretaryOfStateId": "Not_Provided_By_Data_Source"
                    },
                    "sourceDetails": {
                      "linkedNormAttorneyIdArray": [
                        "NATY11111111111111"
                      ],
                      "source": "Case_Attorney_Linked_In_Other_Cases"
                    }
                  }
                ],
                "sourceAttorneyType": "LEAD ATTORNEY"
              },
              {
                "attorneyId": "ATTYgrc96b6fd5d1e9",
                "attorneyLawFirmArray": [
                  {
                    "attorneyLawFirmId": "ALFIgr3b33307dc4a8",
                    "firstFetchDate": "2019-05-16T06:55:57+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2019-05-16T06:55:57+00:00",
                    "name": "Gore, Kilpatrick, Purdie, Metz & Adcock, P.C.",
                    "object": "AttorneyLawFirm"
                  }
                ],
                "attorneyType": {
                  "attorneyTypeId": "ATYPWXtARwvzu5HLcf",
                  "createdDate": "2022-03-28T04:59:12+00:00",
                  "name": "Lead Attorney",
                  "object": "AttorneyType"
                },
                "barNumber": null,
                "contact": {
                  "addressArray": [
                    {
                      "city": "Ridgeland",
                      "countryCode": "USA",
                      "countryName": "United States of America",
                      "firstFetchDate": "2019-05-16T06:55:54+00:00",
                      "isVisible": true,
                      "lastFetchDate": "2019-05-16T06:55:54+00:00",
                      "latitude": null,
                      "longitude": null,
                      "object": "Address",
                      "stateCode": "MS",
                      "stateName": "MISSISSIPPI",
                      "streetAddress1": "P.O. Drawer 2900",
                      "streetAddress2": null,
                      "zip": "39158",
                      "zip4": null
                    }
                  ],
                  "emailArray": [],
                  "object": "Contact",
                  "phoneNumberArray": [
                    {
                      "firstFetchDate": "2019-05-16T06:55:54+00:00",
                      "isVisible": true,
                      "lastFetchDate": "2019-05-16T06:55:54+00:00",
                      "object": "Phone",
                      "phoneNumber": "6019571595",
                      "phoneType": "DEFAULT"
                    }
                  ]
                },
                "firstFetchDate": "2019-05-16T06:55:54+00:00",
                "firstName": "Ken",
                "isVisible": true,
                "lastFetchDate": "2019-05-16T06:55:54+00:00",
                "lastName": "Adcock",
                "middleName": "R",
                "name": "Ken R. Adcock",
                "namePrefix": null,
                "nameSuffix": null,
                "object": "Attorney",
                "partyAttorneyAssociations": {
                  "nextPageAPI": null,
                  "object": "PartyAttorneyAssociations",
                  "pageNumber": 1,
                  "partyAttorneyAssociationArray": [
                    {
                      "attorneyId": "ATTYgrc96b6fd5d1e9",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgrd928eed88989",
                      "partyId": "PRTYgra4f4aa0f8f45"
                    },
                    {
                      "attorneyId": "ATTYgrc96b6fd5d1e9",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgr9e14fd1f1fe8",
                      "partyId": "PRTYgrd808f07312bd"
                    },
                    {
                      "attorneyId": "ATTYgrc96b6fd5d1e9",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgrfe73665e7588",
                      "partyId": "PRTYgre691dcd808eb"
                    },
                    {
                      "attorneyId": "ATTYgrc96b6fd5d1e9",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgr525472914e3b",
                      "partyId": "PRTYgr5454f8672373"
                    },
                    {
                      "attorneyId": "ATTYgrc96b6fd5d1e9",
                      "isVisible": false,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgradf7690fe02f",
                      "partyId": "PRTYgr906d678f835c"
                    },
                    {
                      "attorneyId": "ATTYgrc96b6fd5d1e9",
                      "isVisible": false,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgr967618a8ce0f",
                      "partyId": "PRTYgre218678b5977"
                    },
                    {
                      "attorneyId": "ATTYgrc96b6fd5d1e9",
                      "isVisible": false,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgre4799009af9e",
                      "partyId": "PRTYgr7f2c73d42db2"
                    },
                    {
                      "attorneyId": "ATTYgrc96b6fd5d1e9",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgr7a867ca33ae4",
                      "partyId": "PRTYgr6a9e26bf1871"
                    },
                    {
                      "attorneyId": "ATTYgrc96b6fd5d1e9",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgr8fc2d4622a16",
                      "partyId": "PRTYgr534ab61e6ebd"
                    },
                    {
                      "attorneyId": "ATTYgrc96b6fd5d1e9",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgr79559ee51387",
                      "partyId": "PRTYgr94af12fa0ef7"
                    },
                    {
                      "attorneyId": "ATTYgrc96b6fd5d1e9",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgr76a40805f475",
                      "partyId": "PRTYgrd8b331325d02"
                    },
                    {
                      "attorneyId": "ATTYgrc96b6fd5d1e9",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgrc39f4171d79f",
                      "partyId": "PRTYgr38faf16b58c1"
                    },
                    {
                      "attorneyId": "ATTYgrc96b6fd5d1e9",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgrf83be17a4be2",
                      "partyId": "PRTYgr234cb1dcb152"
                    },
                    {
                      "attorneyId": "ATTYgrc96b6fd5d1e9",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgr72441ef2e3a7",
                      "partyId": "PRTYgrbd7486521749"
                    },
                    {
                      "attorneyId": "ATTYgrc96b6fd5d1e9",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgrf1992e3ed5e7",
                      "partyId": "PRTYgrec16470b0fba"
                    },
                    {
                      "attorneyId": "ATTYgrc96b6fd5d1e9",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgrce2d5198a1e2",
                      "partyId": "PRTYgrdc14b2106e26"
                    },
                    {
                      "attorneyId": "ATTYgrc96b6fd5d1e9",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgr940e7cbf934e",
                      "partyId": "PRTYgr43c5e35a1116"
                    }
                  ],
                  "totalCount": 17,
                  "totalPages": 1
                },
                "partyRoleGroupIdArray": [
                  "PTYGBnjxbx6tKNfVEP"
                ],
                "partyRoleIdArray": [
                  "PTYR9F4zbteyj7ehmi"
                ],
                "possibleNormAttorneyArray": [
                  {
                    "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormJudges?pageNumber=1",
                    "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormLawFirms?pageNumber=1",
                    "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormParties?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByNormAttorney?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByOpposingNormAttorney?pageNumber=1",
                    "confidenceScore": 0.5,
                    "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111",
                    "normAttorneyId": "NATY11111111111111",
                    "normAttorneyName": "ACOSTA S FERNANDO",
                    "object": "PossibleNormAttorney",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "barId": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "lawFirm": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.6,
                      "otherPotentialNormAttorneys": 0,
                      "phone": "Not_Provided_By_Data_Source"
                    }
                  }
                ],
                "possibleNormLawFirmArray": [
                  {
                    "associatedNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormAttorney?pageNumber=1",
                    "associatedNormJudgeAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormJudges?pageNumber=1",
                    "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormParties?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByNormLawFirm?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByOpposingNormLawFirm?pageNumber=1",
                    "confidenceScore": 0.66,
                    "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111",
                    "normLawFirmId": "NLAF11111111111111",
                    "normLawFirmName": "MidLand Funding LLC",
                    "object": "PossibleNormLawFirm",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.8,
                      "otherPotentialNormLawFirms": 0,
                      "phone": "Not_Provided_By_Data_Source",
                      "secretaryOfStateId": "Not_Provided_By_Data_Source"
                    },
                    "sourceDetails": {
                      "linkedNormAttorneyIdArray": [
                        "NATY11111111111111"
                      ],
                      "source": "Case_Attorney_Linked_In_Other_Cases"
                    }
                  }
                ],
                "sourceAttorneyType": "LEAD ATTORNEY"
              },
              {
                "attorneyId": "ATTYgr34c176accc22",
                "attorneyLawFirmArray": [
                  {
                    "attorneyLawFirmId": "ALFIgra61aa3e3e23f",
                    "firstFetchDate": "2019-05-16T06:55:54+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2019-05-16T06:55:54+00:00",
                    "name": "Arnold & Porter Kaye Scholer LLP (NYC)",
                    "object": "AttorneyLawFirm"
                  }
                ],
                "attorneyType": {
                  "attorneyTypeId": "ATYPWXtARwvzu5HLcf",
                  "createdDate": "2022-03-28T04:59:12+00:00",
                  "name": "Lead Attorney",
                  "object": "AttorneyType"
                },
                "barNumber": null,
                "contact": {
                  "addressArray": [
                    {
                      "city": "New York",
                      "countryCode": "USA",
                      "countryName": "United States of America",
                      "firstFetchDate": "2019-05-16T06:55:54+00:00",
                      "isVisible": true,
                      "lastFetchDate": "2019-05-16T06:55:54+00:00",
                      "latitude": null,
                      "longitude": null,
                      "object": "Address",
                      "stateCode": "NY",
                      "stateName": "NEW YORK",
                      "streetAddress1": "250 West 55th Street",
                      "streetAddress2": null,
                      "zip": "10019",
                      "zip4": null
                    }
                  ],
                  "emailArray": [
                    {
                      "emailId": "Bert.Slonim@kayescholer.com",
                      "firstFetchDate": "2019-05-16T06:55:54+00:00",
                      "isVisible": true,
                      "lastFetchDate": "2019-05-16T06:55:54+00:00",
                      "object": "Email"
                    }
                  ],
                  "object": "Contact",
                  "phoneNumberArray": [
                    {
                      "firstFetchDate": "2019-05-16T06:55:54+00:00",
                      "isVisible": true,
                      "lastFetchDate": "2019-05-16T06:55:54+00:00",
                      "object": "Phone",
                      "phoneNumber": "2128368000",
                      "phoneType": "DEFAULT"
                    },
                    {
                      "firstFetchDate": "2019-05-16T06:55:54+00:00",
                      "isVisible": true,
                      "lastFetchDate": "2019-05-16T06:55:54+00:00",
                      "object": "Phone",
                      "phoneNumber": "2128366497",
                      "phoneType": "FAX"
                    }
                  ]
                },
                "firstFetchDate": "2019-05-16T06:55:54+00:00",
                "firstName": "Bert",
                "isVisible": true,
                "lastFetchDate": "2019-05-16T06:55:54+00:00",
                "lastName": "Slonim",
                "middleName": "L",
                "name": "Bert L. Slonim",
                "namePrefix": null,
                "nameSuffix": null,
                "object": "Attorney",
                "partyAttorneyAssociations": {
                  "nextPageAPI": null,
                  "object": "PartyAttorneyAssociations",
                  "pageNumber": 1,
                  "partyAttorneyAssociationArray": [
                    {
                      "attorneyId": "ATTYgr34c176accc22",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgr2cb899f50bdd",
                      "partyId": "PRTYgrf4dccfb024f4"
                    },
                    {
                      "attorneyId": "ATTYgr34c176accc22",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgr429a66630b63",
                      "partyId": "PRTYgrfbcaa9f9a841"
                    },
                    {
                      "attorneyId": "ATTYgr34c176accc22",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgr4906c4f08e70",
                      "partyId": "PRTYgr6ffa683e764b"
                    }
                  ],
                  "totalCount": 3,
                  "totalPages": 1
                },
                "partyRoleGroupIdArray": [
                  "PTYGBnjxbx6tKNfVEP"
                ],
                "partyRoleIdArray": [
                  "PTYR9F4zbteyj7ehmi"
                ],
                "possibleNormAttorneyArray": [
                  {
                    "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormJudges?pageNumber=1",
                    "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormLawFirms?pageNumber=1",
                    "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormParties?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByNormAttorney?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByOpposingNormAttorney?pageNumber=1",
                    "confidenceScore": 0.5,
                    "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111",
                    "normAttorneyId": "NATY11111111111111",
                    "normAttorneyName": "ACOSTA S FERNANDO",
                    "object": "PossibleNormAttorney",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "barId": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "lawFirm": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.6,
                      "otherPotentialNormAttorneys": 0,
                      "phone": "Not_Provided_By_Data_Source"
                    }
                  }
                ],
                "possibleNormLawFirmArray": [
                  {
                    "associatedNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormAttorney?pageNumber=1",
                    "associatedNormJudgeAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormJudges?pageNumber=1",
                    "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormParties?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByNormLawFirm?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByOpposingNormLawFirm?pageNumber=1",
                    "confidenceScore": 0.66,
                    "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111",
                    "normLawFirmId": "NLAF11111111111111",
                    "normLawFirmName": "MidLand Funding LLC",
                    "object": "PossibleNormLawFirm",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.8,
                      "otherPotentialNormLawFirms": 0,
                      "phone": "Not_Provided_By_Data_Source",
                      "secretaryOfStateId": "Not_Provided_By_Data_Source"
                    },
                    "sourceDetails": {
                      "linkedNormAttorneyIdArray": [
                        "NATY11111111111111"
                      ],
                      "source": "Case_Attorney_Linked_In_Other_Cases"
                    }
                  }
                ],
                "sourceAttorneyType": "LEAD ATTORNEY"
              },
              {
                "attorneyId": "ATTYgr02071b50d88f",
                "attorneyLawFirmArray": [],
                "attorneyType": {
                  "attorneyTypeId": "ATYPRPk3LNobYmtqwF",
                  "createdDate": "2022-03-28T04:59:12+00:00",
                  "name": "Attorney",
                  "object": "AttorneyType"
                },
                "barNumber": null,
                "contact": {
                  "addressArray": [
                    {
                      "city": "Dallas",
                      "countryCode": "USA",
                      "countryName": "United States of America",
                      "firstFetchDate": "2019-05-16T06:55:56+00:00",
                      "isVisible": true,
                      "lastFetchDate": "2019-05-16T06:55:56+00:00",
                      "latitude": null,
                      "longitude": null,
                      "object": "Address",
                      "stateCode": "TX",
                      "stateName": "TEXAS",
                      "streetAddress1": "1445 Ross Avenue, Suite 4800",
                      "streetAddress2": null,
                      "zip": "75202",
                      "zip4": null
                    }
                  ],
                  "emailArray": [],
                  "object": "Contact",
                  "phoneNumberArray": [
                    {
                      "firstFetchDate": "2019-05-16T06:55:56+00:00",
                      "isVisible": true,
                      "lastFetchDate": "2019-05-16T06:55:56+00:00",
                      "object": "Phone",
                      "phoneNumber": "2149542246",
                      "phoneType": "DEFAULT"
                    },
                    {
                      "firstFetchDate": "2019-05-16T06:55:56+00:00",
                      "isVisible": true,
                      "lastFetchDate": "2019-05-16T06:55:56+00:00",
                      "object": "Phone",
                      "phoneNumber": "2147540999",
                      "phoneType": "FAX"
                    }
                  ]
                },
                "firstFetchDate": "2019-05-16T06:55:54+00:00",
                "firstName": "Thomas",
                "isVisible": true,
                "lastFetchDate": "2019-05-16T06:55:54+00:00",
                "lastName": "Sullivan",
                "middleName": "Patrick",
                "name": "Thomas Patrick Sullivan",
                "namePrefix": null,
                "nameSuffix": null,
                "object": "Attorney",
                "partyAttorneyAssociations": {
                  "nextPageAPI": null,
                  "object": "PartyAttorneyAssociations",
                  "pageNumber": 1,
                  "partyAttorneyAssociationArray": [
                    {
                      "attorneyId": "ATTYgr02071b50d88f",
                      "isVisible": false,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgrceb10fb79af4",
                      "partyId": "PRTYgr525399e9b625"
                    },
                    {
                      "attorneyId": "ATTYgr02071b50d88f",
                      "isVisible": false,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgr13dc10c13570",
                      "partyId": "PRTYgra8dab1c7e25c"
                    },
                    {
                      "attorneyId": "ATTYgr02071b50d88f",
                      "isVisible": false,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgr2be646408acd",
                      "partyId": "PRTYgr51f53acac6aa"
                    },
                    {
                      "attorneyId": "ATTYgr02071b50d88f",
                      "isVisible": false,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgr19de7588528f",
                      "partyId": "PRTYgr6b9a0ad58e49"
                    }
                  ],
                  "totalCount": 4,
                  "totalPages": 1
                },
                "partyRoleGroupIdArray": [
                  "PTYGBnjxbx6tKNfVEP"
                ],
                "partyRoleIdArray": [
                  "PTYR9F4zbteyj7ehmi"
                ],
                "possibleNormAttorneyArray": [
                  {
                    "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormJudges?pageNumber=1",
                    "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormLawFirms?pageNumber=1",
                    "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormParties?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByNormAttorney?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByOpposingNormAttorney?pageNumber=1",
                    "confidenceScore": 0.5,
                    "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111",
                    "normAttorneyId": "NATY11111111111111",
                    "normAttorneyName": "ACOSTA S FERNANDO",
                    "object": "PossibleNormAttorney",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "barId": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "lawFirm": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.6,
                      "otherPotentialNormAttorneys": 0,
                      "phone": "Not_Provided_By_Data_Source"
                    }
                  }
                ],
                "possibleNormLawFirmArray": [
                  {
                    "associatedNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormAttorney?pageNumber=1",
                    "associatedNormJudgeAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormJudges?pageNumber=1",
                    "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormParties?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByNormLawFirm?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByOpposingNormLawFirm?pageNumber=1",
                    "confidenceScore": 0.66,
                    "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111",
                    "normLawFirmId": "NLAF11111111111111",
                    "normLawFirmName": "MidLand Funding LLC",
                    "object": "PossibleNormLawFirm",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.8,
                      "otherPotentialNormLawFirms": 0,
                      "phone": "Not_Provided_By_Data_Source",
                      "secretaryOfStateId": "Not_Provided_By_Data_Source"
                    },
                    "sourceDetails": {
                      "linkedNormAttorneyIdArray": [
                        "NATY11111111111111"
                      ],
                      "source": "Case_Attorney_Linked_In_Other_Cases"
                    }
                  }
                ],
                "sourceAttorneyType": "ATTORNEY"
              },
              {
                "attorneyId": "ATTYgrbe321fca4744",
                "attorneyLawFirmArray": [
                  {
                    "attorneyLawFirmId": "ALFIgr1c9e35e0d5be",
                    "firstFetchDate": "2019-05-16T06:55:54+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2019-05-16T06:55:54+00:00",
                    "name": "Heidelberg Law Firm, PLLC",
                    "object": "AttorneyLawFirm"
                  }
                ],
                "attorneyType": {
                  "attorneyTypeId": "ATYPWXtARwvzu5HLcf",
                  "createdDate": "2022-03-28T04:59:12+00:00",
                  "name": "Lead Attorney",
                  "object": "AttorneyType"
                },
                "barNumber": null,
                "contact": {
                  "addressArray": [
                    {
                      "city": "Hattiesburg",
                      "countryCode": "USA",
                      "countryName": "United States of America",
                      "firstFetchDate": "2019-05-16T06:55:54+00:00",
                      "isVisible": true,
                      "lastFetchDate": "2019-05-16T06:55:54+00:00",
                      "latitude": null,
                      "longitude": null,
                      "object": "Address",
                      "stateCode": "MS",
                      "stateName": "MISSISSIPPI",
                      "streetAddress1": "P.O. Box 1070",
                      "streetAddress2": null,
                      "zip": "39403",
                      "zip4": null
                    }
                  ],
                  "emailArray": [],
                  "object": "Contact",
                  "phoneNumberArray": [
                    {
                      "firstFetchDate": "2019-05-16T06:55:54+00:00",
                      "isVisible": true,
                      "lastFetchDate": "2019-05-16T06:55:54+00:00",
                      "object": "Phone",
                      "phoneNumber": "6015458180",
                      "phoneType": "DEFAULT"
                    }
                  ]
                },
                "firstFetchDate": "2019-05-16T06:55:54+00:00",
                "firstName": "Derek",
                "isVisible": true,
                "lastFetchDate": "2019-05-16T06:55:54+00:00",
                "lastName": "Arrington",
                "middleName": "R",
                "name": "Derek R. Arrington",
                "namePrefix": null,
                "nameSuffix": null,
                "object": "Attorney",
                "partyAttorneyAssociations": {
                  "nextPageAPI": null,
                  "object": "PartyAttorneyAssociations",
                  "pageNumber": 1,
                  "partyAttorneyAssociationArray": [
                    {
                      "attorneyId": "ATTYgrbe321fca4744",
                      "isVisible": false,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgr897ce9d78514",
                      "partyId": "PRTYgr95112f9cdc25"
                    }
                  ],
                  "totalCount": 1,
                  "totalPages": 1
                },
                "partyRoleGroupIdArray": [
                  "PTYGBnjxbx6tKNfVEP"
                ],
                "partyRoleIdArray": [
                  "PTYR9F4zbteyj7ehmi"
                ],
                "possibleNormAttorneyArray": [
                  {
                    "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormJudges?pageNumber=1",
                    "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormLawFirms?pageNumber=1",
                    "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormParties?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByNormAttorney?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByOpposingNormAttorney?pageNumber=1",
                    "confidenceScore": 0.5,
                    "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111",
                    "normAttorneyId": "NATY11111111111111",
                    "normAttorneyName": "ACOSTA S FERNANDO",
                    "object": "PossibleNormAttorney",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "barId": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "lawFirm": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.6,
                      "otherPotentialNormAttorneys": 0,
                      "phone": "Not_Provided_By_Data_Source"
                    }
                  }
                ],
                "possibleNormLawFirmArray": [
                  {
                    "associatedNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormAttorney?pageNumber=1",
                    "associatedNormJudgeAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormJudges?pageNumber=1",
                    "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormParties?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByNormLawFirm?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByOpposingNormLawFirm?pageNumber=1",
                    "confidenceScore": 0.66,
                    "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111",
                    "normLawFirmId": "NLAF11111111111111",
                    "normLawFirmName": "MidLand Funding LLC",
                    "object": "PossibleNormLawFirm",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.8,
                      "otherPotentialNormLawFirms": 0,
                      "phone": "Not_Provided_By_Data_Source",
                      "secretaryOfStateId": "Not_Provided_By_Data_Source"
                    },
                    "sourceDetails": {
                      "linkedNormAttorneyIdArray": [
                        "NATY11111111111111"
                      ],
                      "source": "Case_Attorney_Linked_In_Other_Cases"
                    }
                  }
                ],
                "sourceAttorneyType": "LEAD ATTORNEY"
              },
              {
                "attorneyId": "ATTYgr3acd852123c6",
                "attorneyLawFirmArray": [
                  {
                    "attorneyLawFirmId": "ALFIgr373a027c9356",
                    "firstFetchDate": "2019-05-16T06:55:55+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2019-05-16T06:55:55+00:00",
                    "name": "David Nutt & Associates, P.C.",
                    "object": "AttorneyLawFirm"
                  }
                ],
                "attorneyType": {
                  "attorneyTypeId": "ATYPWXtARwvzu5HLcf",
                  "createdDate": "2022-03-28T04:59:12+00:00",
                  "name": "Lead Attorney",
                  "object": "AttorneyType"
                },
                "barNumber": null,
                "contact": {
                  "addressArray": [
                    {
                      "city": "Jackson",
                      "countryCode": "USA",
                      "countryName": "United States of America",
                      "firstFetchDate": "2019-05-16T06:55:55+00:00",
                      "isVisible": true,
                      "lastFetchDate": "2019-05-16T06:55:55+00:00",
                      "latitude": null,
                      "longitude": null,
                      "object": "Address",
                      "stateCode": "MS",
                      "stateName": "MISSISSIPPI",
                      "streetAddress1": "P.O. Box 1039",
                      "streetAddress2": null,
                      "zip": "39215",
                      "zip4": "1039"
                    },
                    {
                      "city": "Ridgeland",
                      "countryCode": "USA",
                      "countryName": "United States of America",
                      "firstFetchDate": "2019-05-16T06:55:54+00:00",
                      "isVisible": true,
                      "lastFetchDate": "2019-05-16T06:55:54+00:00",
                      "latitude": null,
                      "longitude": null,
                      "object": "Address",
                      "stateCode": "MS",
                      "stateName": "MISSISSIPPI",
                      "streetAddress1": "605 Crescent Boulevard",
                      "streetAddress2": null,
                      "zip": "39157",
                      "zip4": null
                    }
                  ],
                  "emailArray": [],
                  "object": "Contact",
                  "phoneNumberArray": [
                    {
                      "firstFetchDate": "2019-05-16T06:55:55+00:00",
                      "isVisible": true,
                      "lastFetchDate": "2019-05-16T06:55:55+00:00",
                      "object": "Phone",
                      "phoneNumber": "6013553054",
                      "phoneType": "DEFAULT"
                    },
                    {
                      "firstFetchDate": "2019-05-16T06:55:54+00:00",
                      "isVisible": true,
                      "lastFetchDate": "2019-05-16T06:55:54+00:00",
                      "object": "Phone",
                      "phoneNumber": "6018987302",
                      "phoneType": "DEFAULT"
                    }
                  ]
                },
                "firstFetchDate": "2019-05-16T06:55:54+00:00",
                "firstName": "Mary",
                "isVisible": true,
                "lastFetchDate": "2019-05-16T06:55:54+00:00",
                "lastName": "McAlister",
                "middleName": "E",
                "name": "Mary E. McAlister",
                "namePrefix": null,
                "nameSuffix": null,
                "object": "Attorney",
                "partyAttorneyAssociations": {
                  "nextPageAPI": null,
                  "object": "PartyAttorneyAssociations",
                  "pageNumber": 1,
                  "partyAttorneyAssociationArray": [
                    {
                      "attorneyId": "ATTYgr3acd852123c6",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgr9e73f47a8feb",
                      "partyId": "PRTYgr4a5fd1197ac5"
                    },
                    {
                      "attorneyId": "ATTYgr3acd852123c6",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgra263ef91094f",
                      "partyId": "PRTYgr927ab8dda532"
                    },
                    {
                      "attorneyId": "ATTYgr3acd852123c6",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgr5f3db5b59888",
                      "partyId": "PRTYgrb625cdbe3391"
                    },
                    {
                      "attorneyId": "ATTYgr3acd852123c6",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgr821fe528204e",
                      "partyId": "PRTYgra6dc47b815b9"
                    },
                    {
                      "attorneyId": "ATTYgr3acd852123c6",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgr4bfada1415d8",
                      "partyId": "PRTYgr415d77f2f4c9"
                    },
                    {
                      "attorneyId": "ATTYgr3acd852123c6",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgr936be316bae3",
                      "partyId": "PRTYgr936b56449028"
                    },
                    {
                      "attorneyId": "ATTYgr3acd852123c6",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgrb7f75ad33789",
                      "partyId": "PRTYgr60f80409af5d"
                    }
                  ],
                  "totalCount": 7,
                  "totalPages": 1
                },
                "partyRoleGroupIdArray": [
                  "PTYGBnjxbx6tKNfVEP"
                ],
                "partyRoleIdArray": [
                  "PTYR9F4zbteyj7ehmi"
                ],
                "possibleNormAttorneyArray": [
                  {
                    "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormJudges?pageNumber=1",
                    "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormLawFirms?pageNumber=1",
                    "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormParties?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByNormAttorney?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByOpposingNormAttorney?pageNumber=1",
                    "confidenceScore": 0.5,
                    "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111",
                    "normAttorneyId": "NATY11111111111111",
                    "normAttorneyName": "ACOSTA S FERNANDO",
                    "object": "PossibleNormAttorney",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "barId": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "lawFirm": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.6,
                      "otherPotentialNormAttorneys": 0,
                      "phone": "Not_Provided_By_Data_Source"
                    }
                  }
                ],
                "possibleNormLawFirmArray": [
                  {
                    "associatedNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormAttorney?pageNumber=1",
                    "associatedNormJudgeAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormJudges?pageNumber=1",
                    "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormParties?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByNormLawFirm?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByOpposingNormLawFirm?pageNumber=1",
                    "confidenceScore": 0.66,
                    "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111",
                    "normLawFirmId": "NLAF11111111111111",
                    "normLawFirmName": "MidLand Funding LLC",
                    "object": "PossibleNormLawFirm",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.8,
                      "otherPotentialNormLawFirms": 0,
                      "phone": "Not_Provided_By_Data_Source",
                      "secretaryOfStateId": "Not_Provided_By_Data_Source"
                    },
                    "sourceDetails": {
                      "linkedNormAttorneyIdArray": [
                        "NATY11111111111111"
                      ],
                      "source": "Case_Attorney_Linked_In_Other_Cases"
                    }
                  }
                ],
                "sourceAttorneyType": "LEAD ATTORNEY"
              },
              {
                "attorneyId": "ATTYgr17d43477138e",
                "attorneyLawFirmArray": [],
                "attorneyType": {
                  "attorneyTypeId": "ATYPWXtARwvzu5HLcf",
                  "createdDate": "2022-03-28T04:59:12+00:00",
                  "name": "Lead Attorney",
                  "object": "AttorneyType"
                },
                "barNumber": null,
                "contact": {
                  "addressArray": [
                    {
                      "city": "Beaumont",
                      "countryCode": "USA",
                      "countryName": "United States of America",
                      "firstFetchDate": "2019-05-16T06:55:54+00:00",
                      "isVisible": true,
                      "lastFetchDate": "2019-05-16T06:55:54+00:00",
                      "latitude": null,
                      "longitude": null,
                      "object": "Address",
                      "stateCode": "TX",
                      "stateName": "TEXAS",
                      "streetAddress1": "1240 Orleans Street",
                      "streetAddress2": null,
                      "zip": "77701",
                      "zip4": null
                    }
                  ],
                  "emailArray": [],
                  "object": "Contact",
                  "phoneNumberArray": [
                    {
                      "firstFetchDate": "2019-05-16T06:55:54+00:00",
                      "isVisible": true,
                      "lastFetchDate": "2019-05-16T06:55:54+00:00",
                      "object": "Phone",
                      "phoneNumber": "4098353521",
                      "phoneType": "DEFAULT"
                    }
                  ]
                },
                "firstFetchDate": "2019-05-16T06:55:54+00:00",
                "firstName": "Kenneth",
                "isVisible": true,
                "lastFetchDate": "2019-05-16T06:55:54+00:00",
                "lastName": "Lewis",
                "middleName": "W",
                "name": "Kenneth W. Lewis",
                "namePrefix": null,
                "nameSuffix": null,
                "object": "Attorney",
                "partyAttorneyAssociations": {
                  "nextPageAPI": null,
                  "object": "PartyAttorneyAssociations",
                  "pageNumber": 1,
                  "partyAttorneyAssociationArray": [
                    {
                      "attorneyId": "ATTYgr17d43477138e",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgr23a0afd39eb2",
                      "partyId": "PRTYgr5afe8e99c50c"
                    },
                    {
                      "attorneyId": "ATTYgr17d43477138e",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgr5e670c38e6bc",
                      "partyId": "PRTYgrd95253d0c2f6"
                    }
                  ],
                  "totalCount": 2,
                  "totalPages": 1
                },
                "partyRoleGroupIdArray": [
                  "PTYGBnjxbx6tKNfVEP"
                ],
                "partyRoleIdArray": [
                  "PTYR9F4zbteyj7ehmi"
                ],
                "possibleNormAttorneyArray": [
                  {
                    "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormJudges?pageNumber=1",
                    "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormLawFirms?pageNumber=1",
                    "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormParties?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByNormAttorney?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByOpposingNormAttorney?pageNumber=1",
                    "confidenceScore": 0.5,
                    "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111",
                    "normAttorneyId": "NATY11111111111111",
                    "normAttorneyName": "ACOSTA S FERNANDO",
                    "object": "PossibleNormAttorney",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "barId": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "lawFirm": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.6,
                      "otherPotentialNormAttorneys": 0,
                      "phone": "Not_Provided_By_Data_Source"
                    }
                  }
                ],
                "possibleNormLawFirmArray": [
                  {
                    "associatedNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormAttorney?pageNumber=1",
                    "associatedNormJudgeAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormJudges?pageNumber=1",
                    "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormParties?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByNormLawFirm?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByOpposingNormLawFirm?pageNumber=1",
                    "confidenceScore": 0.66,
                    "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111",
                    "normLawFirmId": "NLAF11111111111111",
                    "normLawFirmName": "MidLand Funding LLC",
                    "object": "PossibleNormLawFirm",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.8,
                      "otherPotentialNormLawFirms": 0,
                      "phone": "Not_Provided_By_Data_Source",
                      "secretaryOfStateId": "Not_Provided_By_Data_Source"
                    },
                    "sourceDetails": {
                      "linkedNormAttorneyIdArray": [
                        "NATY11111111111111"
                      ],
                      "source": "Case_Attorney_Linked_In_Other_Cases"
                    }
                  }
                ],
                "sourceAttorneyType": "LEAD ATTORNEY"
              },
              {
                "attorneyId": "ATTYgr3ae043d84ebc",
                "attorneyLawFirmArray": [
                  {
                    "attorneyLawFirmId": "ALFIgr1b07ea7b1f29",
                    "firstFetchDate": "2019-05-16T06:55:56+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2019-05-16T06:55:56+00:00",
                    "name": "Markow Walker, P.A.",
                    "object": "AttorneyLawFirm"
                  }
                ],
                "attorneyType": {
                  "attorneyTypeId": "ATYPWXtARwvzu5HLcf",
                  "createdDate": "2022-03-28T04:59:12+00:00",
                  "name": "Lead Attorney",
                  "object": "AttorneyType"
                },
                "barNumber": null,
                "contact": {
                  "addressArray": [
                    {
                      "city": "Jackson",
                      "countryCode": "USA",
                      "countryName": "United States of America",
                      "firstFetchDate": "2019-05-16T06:55:54+00:00",
                      "isVisible": true,
                      "lastFetchDate": "2019-05-16T06:55:54+00:00",
                      "latitude": null,
                      "longitude": null,
                      "object": "Address",
                      "stateCode": "MS",
                      "stateName": "MISSISSIPPI",
                      "streetAddress1": "P.O. Box 13669",
                      "streetAddress2": null,
                      "zip": "39236",
                      "zip4": "3669"
                    }
                  ],
                  "emailArray": [],
                  "object": "Contact",
                  "phoneNumberArray": [
                    {
                      "firstFetchDate": "2019-05-16T06:55:54+00:00",
                      "isVisible": true,
                      "lastFetchDate": "2019-05-16T06:55:54+00:00",
                      "object": "Phone",
                      "phoneNumber": "6018531911",
                      "phoneType": "DEFAULT"
                    }
                  ]
                },
                "firstFetchDate": "2019-05-16T06:55:54+00:00",
                "firstName": "Peter",
                "isVisible": true,
                "lastFetchDate": "2019-05-16T06:55:54+00:00",
                "lastName": "Markow",
                "middleName": "J",
                "name": "Peter J. Markow, Jr.",
                "namePrefix": null,
                "nameSuffix": "Jr",
                "object": "Attorney",
                "partyAttorneyAssociations": {
                  "nextPageAPI": null,
                  "object": "PartyAttorneyAssociations",
                  "pageNumber": 1,
                  "partyAttorneyAssociationArray": [
                    {
                      "attorneyId": "ATTYgr3ae043d84ebc",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgraf45f1878bad",
                      "partyId": "PRTYgr7742be69a4ca"
                    },
                    {
                      "attorneyId": "ATTYgr3ae043d84ebc",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgrddd23ce0c695",
                      "partyId": "PRTYgr5e0bbe260bd3"
                    }
                  ],
                  "totalCount": 2,
                  "totalPages": 1
                },
                "partyRoleGroupIdArray": [
                  "PTYGBnjxbx6tKNfVEP"
                ],
                "partyRoleIdArray": [
                  "PTYR9F4zbteyj7ehmi"
                ],
                "possibleNormAttorneyArray": [
                  {
                    "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormJudges?pageNumber=1",
                    "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormLawFirms?pageNumber=1",
                    "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormParties?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByNormAttorney?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByOpposingNormAttorney?pageNumber=1",
                    "confidenceScore": 0.5,
                    "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111",
                    "normAttorneyId": "NATY11111111111111",
                    "normAttorneyName": "ACOSTA S FERNANDO",
                    "object": "PossibleNormAttorney",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "barId": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "lawFirm": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.6,
                      "otherPotentialNormAttorneys": 0,
                      "phone": "Not_Provided_By_Data_Source"
                    }
                  }
                ],
                "possibleNormLawFirmArray": [
                  {
                    "associatedNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormAttorney?pageNumber=1",
                    "associatedNormJudgeAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormJudges?pageNumber=1",
                    "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormParties?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByNormLawFirm?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByOpposingNormLawFirm?pageNumber=1",
                    "confidenceScore": 0.66,
                    "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111",
                    "normLawFirmId": "NLAF11111111111111",
                    "normLawFirmName": "MidLand Funding LLC",
                    "object": "PossibleNormLawFirm",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.8,
                      "otherPotentialNormLawFirms": 0,
                      "phone": "Not_Provided_By_Data_Source",
                      "secretaryOfStateId": "Not_Provided_By_Data_Source"
                    },
                    "sourceDetails": {
                      "linkedNormAttorneyIdArray": [
                        "NATY11111111111111"
                      ],
                      "source": "Case_Attorney_Linked_In_Other_Cases"
                    }
                  }
                ],
                "sourceAttorneyType": "LEAD ATTORNEY"
              },
              {
                "attorneyId": "ATTYgrd5774d368a6e",
                "attorneyLawFirmArray": [],
                "attorneyType": {
                  "attorneyTypeId": "ATYPRPk3LNobYmtqwF",
                  "createdDate": "2022-03-28T04:59:12+00:00",
                  "name": "Attorney",
                  "object": "AttorneyType"
                },
                "barNumber": null,
                "contact": {
                  "addressArray": [
                    {
                      "city": "Mt. Pleasant",
                      "countryCode": "USA",
                      "countryName": "United States of America",
                      "firstFetchDate": "2019-05-16T06:55:57+00:00",
                      "isVisible": true,
                      "lastFetchDate": "2019-05-16T06:55:57+00:00",
                      "latitude": null,
                      "longitude": null,
                      "object": "Address",
                      "stateCode": "SC",
                      "stateName": "SOUTH CAROLINA",
                      "streetAddress1": "28 Bridgeside Boulevard",
                      "streetAddress2": null,
                      "zip": "29465",
                      "zip4": null
                    }
                  ],
                  "emailArray": [],
                  "object": "Contact",
                  "phoneNumberArray": []
                },
                "firstFetchDate": "2019-05-16T06:55:54+00:00",
                "firstName": "Cindi",
                "isVisible": true,
                "lastFetchDate": "2019-05-16T06:55:54+00:00",
                "lastName": "Solomon",
                "middleName": null,
                "name": "Cindi Solomon",
                "namePrefix": null,
                "nameSuffix": null,
                "object": "Attorney",
                "partyAttorneyAssociations": {
                  "nextPageAPI": null,
                  "object": "PartyAttorneyAssociations",
                  "pageNumber": 1,
                  "partyAttorneyAssociationArray": [
                    {
                      "attorneyId": "ATTYgrd5774d368a6e",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgrb08393db6fed",
                      "partyId": "PRTYgr86dd3df5c3e6"
                    }
                  ],
                  "totalCount": 1,
                  "totalPages": 1
                },
                "partyRoleGroupIdArray": [
                  "PTYGBnjxbx6tKNfVEP"
                ],
                "partyRoleIdArray": [
                  "PTYR9F4zbteyj7ehmi"
                ],
                "possibleNormAttorneyArray": [
                  {
                    "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormJudges?pageNumber=1",
                    "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormLawFirms?pageNumber=1",
                    "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormParties?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByNormAttorney?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByOpposingNormAttorney?pageNumber=1",
                    "confidenceScore": 0.5,
                    "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111",
                    "normAttorneyId": "NATY11111111111111",
                    "normAttorneyName": "ACOSTA S FERNANDO",
                    "object": "PossibleNormAttorney",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "barId": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "lawFirm": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.6,
                      "otherPotentialNormAttorneys": 0,
                      "phone": "Not_Provided_By_Data_Source"
                    }
                  }
                ],
                "possibleNormLawFirmArray": [
                  {
                    "associatedNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormAttorney?pageNumber=1",
                    "associatedNormJudgeAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormJudges?pageNumber=1",
                    "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormParties?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByNormLawFirm?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByOpposingNormLawFirm?pageNumber=1",
                    "confidenceScore": 0.66,
                    "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111",
                    "normLawFirmId": "NLAF11111111111111",
                    "normLawFirmName": "MidLand Funding LLC",
                    "object": "PossibleNormLawFirm",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.8,
                      "otherPotentialNormLawFirms": 0,
                      "phone": "Not_Provided_By_Data_Source",
                      "secretaryOfStateId": "Not_Provided_By_Data_Source"
                    },
                    "sourceDetails": {
                      "linkedNormAttorneyIdArray": [
                        "NATY11111111111111"
                      ],
                      "source": "Case_Attorney_Linked_In_Other_Cases"
                    }
                  }
                ],
                "sourceAttorneyType": "ATTORNEY"
              },
              {
                "attorneyId": "ATTYgr76abdcdd4da9",
                "attorneyLawFirmArray": [
                  {
                    "attorneyLawFirmId": "ALFIgrd4be98f088f8",
                    "firstFetchDate": "2019-05-16T06:55:54+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2019-05-16T06:55:54+00:00",
                    "name": "Law Offices of Art Brender, Attorney At Law",
                    "object": "AttorneyLawFirm"
                  }
                ],
                "attorneyType": {
                  "attorneyTypeId": "ATYPWXtARwvzu5HLcf",
                  "createdDate": "2022-03-28T04:59:12+00:00",
                  "name": "Lead Attorney",
                  "object": "AttorneyType"
                },
                "barNumber": null,
                "contact": {
                  "addressArray": [
                    {
                      "city": "Fort Worth",
                      "countryCode": "USA",
                      "countryName": "United States of America",
                      "firstFetchDate": "2019-05-16T06:55:54+00:00",
                      "isVisible": true,
                      "lastFetchDate": "2019-05-16T06:55:54+00:00",
                      "latitude": null,
                      "longitude": null,
                      "object": "Address",
                      "stateCode": "TX",
                      "stateName": "TEXAS",
                      "streetAddress1": "600 Eight Avenue",
                      "streetAddress2": null,
                      "zip": "76104",
                      "zip4": null
                    }
                  ],
                  "emailArray": [],
                  "object": "Contact",
                  "phoneNumberArray": [
                    {
                      "firstFetchDate": "2019-05-16T06:55:54+00:00",
                      "isVisible": true,
                      "lastFetchDate": "2019-05-16T06:55:54+00:00",
                      "object": "Phone",
                      "phoneNumber": "8173340171",
                      "phoneType": "DEFAULT"
                    }
                  ]
                },
                "firstFetchDate": "2019-05-16T06:55:54+00:00",
                "firstName": "Arthur",
                "isVisible": true,
                "lastFetchDate": "2019-05-16T06:55:54+00:00",
                "lastName": "Brender",
                "middleName": "John",
                "name": "Arthur John Brender",
                "namePrefix": null,
                "nameSuffix": null,
                "object": "Attorney",
                "partyAttorneyAssociations": {
                  "nextPageAPI": null,
                  "object": "PartyAttorneyAssociations",
                  "pageNumber": 1,
                  "partyAttorneyAssociationArray": [
                    {
                      "attorneyId": "ATTYgr76abdcdd4da9",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgr850dc5b41be2",
                      "partyId": "PRTYgr909c15e555cd"
                    }
                  ],
                  "totalCount": 1,
                  "totalPages": 1
                },
                "partyRoleGroupIdArray": [
                  "PTYGBnjxbx6tKNfVEP"
                ],
                "partyRoleIdArray": [
                  "PTYR9F4zbteyj7ehmi"
                ],
                "possibleNormAttorneyArray": [
                  {
                    "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormJudges?pageNumber=1",
                    "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormLawFirms?pageNumber=1",
                    "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormParties?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByNormAttorney?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByOpposingNormAttorney?pageNumber=1",
                    "confidenceScore": 0.5,
                    "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111",
                    "normAttorneyId": "NATY11111111111111",
                    "normAttorneyName": "ACOSTA S FERNANDO",
                    "object": "PossibleNormAttorney",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "barId": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "lawFirm": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.6,
                      "otherPotentialNormAttorneys": 0,
                      "phone": "Not_Provided_By_Data_Source"
                    }
                  }
                ],
                "possibleNormLawFirmArray": [
                  {
                    "associatedNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormAttorney?pageNumber=1",
                    "associatedNormJudgeAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormJudges?pageNumber=1",
                    "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormParties?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByNormLawFirm?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByOpposingNormLawFirm?pageNumber=1",
                    "confidenceScore": 0.66,
                    "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111",
                    "normLawFirmId": "NLAF11111111111111",
                    "normLawFirmName": "MidLand Funding LLC",
                    "object": "PossibleNormLawFirm",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.8,
                      "otherPotentialNormLawFirms": 0,
                      "phone": "Not_Provided_By_Data_Source",
                      "secretaryOfStateId": "Not_Provided_By_Data_Source"
                    },
                    "sourceDetails": {
                      "linkedNormAttorneyIdArray": [
                        "NATY11111111111111"
                      ],
                      "source": "Case_Attorney_Linked_In_Other_Cases"
                    }
                  }
                ],
                "sourceAttorneyType": "LEAD ATTORNEY"
              },
              {
                "attorneyId": "ATTYgr4de7040b063e",
                "attorneyLawFirmArray": [
                  {
                    "attorneyLawFirmId": "ALFIgr56828fd60067",
                    "firstFetchDate": "2019-05-16T06:55:56+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2019-05-16T06:55:56+00:00",
                    "name": "Maloney and Campolo, L.L.P.",
                    "object": "AttorneyLawFirm"
                  }
                ],
                "attorneyType": {
                  "attorneyTypeId": "ATYPWXtARwvzu5HLcf",
                  "createdDate": "2022-03-28T04:59:12+00:00",
                  "name": "Lead Attorney",
                  "object": "AttorneyType"
                },
                "barNumber": null,
                "contact": {
                  "addressArray": [
                    {
                      "city": "San Antonio",
                      "countryCode": "USA",
                      "countryName": "United States of America",
                      "firstFetchDate": "2019-05-16T06:55:56+00:00",
                      "isVisible": true,
                      "lastFetchDate": "2019-05-16T06:55:56+00:00",
                      "latitude": null,
                      "longitude": null,
                      "object": "Address",
                      "stateCode": "TX",
                      "stateName": "TEXAS",
                      "streetAddress1": "900 SE Military Drive",
                      "streetAddress2": null,
                      "zip": "78214",
                      "zip4": null
                    }
                  ],
                  "emailArray": [
                    {
                      "emailId": "tmaloney@yahoo.com",
                      "firstFetchDate": "2019-05-16T06:55:56+00:00",
                      "isVisible": true,
                      "lastFetchDate": "2019-05-16T06:55:56+00:00",
                      "object": "Email"
                    }
                  ],
                  "object": "Contact",
                  "phoneNumberArray": [
                    {
                      "firstFetchDate": "2019-05-16T06:55:56+00:00",
                      "isVisible": true,
                      "lastFetchDate": "2019-05-16T06:55:56+00:00",
                      "object": "Phone",
                      "phoneNumber": "2109231313",
                      "phoneType": "FAX"
                    },
                    {
                      "firstFetchDate": "2019-05-16T06:55:56+00:00",
                      "isVisible": true,
                      "lastFetchDate": "2019-05-16T06:55:56+00:00",
                      "object": "Phone",
                      "phoneNumber": "2109222200",
                      "phoneType": "DEFAULT"
                    }
                  ]
                },
                "firstFetchDate": "2019-05-16T06:55:54+00:00",
                "firstName": "Tim",
                "isVisible": true,
                "lastFetchDate": "2019-05-16T06:55:54+00:00",
                "lastName": "Maloney",
                "middleName": null,
                "name": "Tim Maloney",
                "namePrefix": null,
                "nameSuffix": null,
                "object": "Attorney",
                "partyAttorneyAssociations": {
                  "nextPageAPI": null,
                  "object": "PartyAttorneyAssociations",
                  "pageNumber": 1,
                  "partyAttorneyAssociationArray": [
                    {
                      "attorneyId": "ATTYgr4de7040b063e",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgrf468bbd836d3",
                      "partyId": "PRTYgr8528cb622ba6"
                    }
                  ],
                  "totalCount": 1,
                  "totalPages": 1
                },
                "partyRoleGroupIdArray": [
                  "PTYGBnjxbx6tKNfVEP"
                ],
                "partyRoleIdArray": [
                  "PTYR9F4zbteyj7ehmi"
                ],
                "possibleNormAttorneyArray": [
                  {
                    "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormJudges?pageNumber=1",
                    "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormLawFirms?pageNumber=1",
                    "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormParties?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByNormAttorney?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByOpposingNormAttorney?pageNumber=1",
                    "confidenceScore": 0.5,
                    "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111",
                    "normAttorneyId": "NATY11111111111111",
                    "normAttorneyName": "ACOSTA S FERNANDO",
                    "object": "PossibleNormAttorney",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "barId": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "lawFirm": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.6,
                      "otherPotentialNormAttorneys": 0,
                      "phone": "Not_Provided_By_Data_Source"
                    }
                  }
                ],
                "possibleNormLawFirmArray": [
                  {
                    "associatedNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormAttorney?pageNumber=1",
                    "associatedNormJudgeAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormJudges?pageNumber=1",
                    "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormParties?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByNormLawFirm?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByOpposingNormLawFirm?pageNumber=1",
                    "confidenceScore": 0.66,
                    "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111",
                    "normLawFirmId": "NLAF11111111111111",
                    "normLawFirmName": "MidLand Funding LLC",
                    "object": "PossibleNormLawFirm",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.8,
                      "otherPotentialNormLawFirms": 0,
                      "phone": "Not_Provided_By_Data_Source",
                      "secretaryOfStateId": "Not_Provided_By_Data_Source"
                    },
                    "sourceDetails": {
                      "linkedNormAttorneyIdArray": [
                        "NATY11111111111111"
                      ],
                      "source": "Case_Attorney_Linked_In_Other_Cases"
                    }
                  }
                ],
                "sourceAttorneyType": "LEAD ATTORNEY"
              },
              {
                "attorneyId": "ATTYgr7bc9427cf9ac",
                "attorneyLawFirmArray": [],
                "attorneyType": {
                  "attorneyTypeId": "ATYPRPk3LNobYmtqwF",
                  "createdDate": "2022-03-28T04:59:12+00:00",
                  "name": "Attorney",
                  "object": "AttorneyType"
                },
                "barNumber": null,
                "contact": {
                  "addressArray": [
                    {
                      "city": "Houston",
                      "countryCode": "USA",
                      "countryName": "United States of America",
                      "firstFetchDate": "2019-05-16T06:55:56+00:00",
                      "isVisible": true,
                      "lastFetchDate": "2019-05-16T06:55:56+00:00",
                      "latitude": null,
                      "longitude": null,
                      "object": "Address",
                      "stateCode": "TX",
                      "stateName": "TEXAS",
                      "streetAddress1": "2500 Two Houston Center, 909 Fannin Street",
                      "streetAddress2": null,
                      "zip": "07701",
                      "zip4": "1003"
                    }
                  ],
                  "emailArray": [],
                  "object": "Contact",
                  "phoneNumberArray": [
                    {
                      "firstFetchDate": "2019-05-16T06:55:56+00:00",
                      "isVisible": true,
                      "lastFetchDate": "2019-05-16T06:55:56+00:00",
                      "object": "Phone",
                      "phoneNumber": "7139511000",
                      "phoneType": "DEFAULT"
                    }
                  ]
                },
                "firstFetchDate": "2019-05-16T06:55:54+00:00",
                "firstName": "Ann",
                "isVisible": true,
                "lastFetchDate": "2019-05-16T06:55:54+00:00",
                "lastName": "Watson",
                "middleName": "P",
                "name": "Ann P. Watson",
                "namePrefix": null,
                "nameSuffix": null,
                "object": "Attorney",
                "partyAttorneyAssociations": {
                  "nextPageAPI": null,
                  "object": "PartyAttorneyAssociations",
                  "pageNumber": 1,
                  "partyAttorneyAssociationArray": [
                    {
                      "attorneyId": "ATTYgr7bc9427cf9ac",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgr44308f57e389",
                      "partyId": "PRTYgr936f6af5fb42"
                    },
                    {
                      "attorneyId": "ATTYgr7bc9427cf9ac",
                      "isVisible": false,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgr526d7adc1c01",
                      "partyId": "PRTYgr39f2955e949e"
                    },
                    {
                      "attorneyId": "ATTYgr7bc9427cf9ac",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgre5f6e9a57dd3",
                      "partyId": "PRTYgr905248c1df4f"
                    },
                    {
                      "attorneyId": "ATTYgr7bc9427cf9ac",
                      "isVisible": false,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgr098239cb55fd",
                      "partyId": "PRTYgrfb17cfa7a0ee"
                    },
                    {
                      "attorneyId": "ATTYgr7bc9427cf9ac",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgr53191c5b6a17",
                      "partyId": "PRTYgr70a3aec5ace4"
                    },
                    {
                      "attorneyId": "ATTYgr7bc9427cf9ac",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgr636b01400a4d",
                      "partyId": "PRTYgr07bd66ae1a30"
                    },
                    {
                      "attorneyId": "ATTYgr7bc9427cf9ac",
                      "isVisible": false,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgr6f02e108efed",
                      "partyId": "PRTYgrc3807d200742"
                    },
                    {
                      "attorneyId": "ATTYgr7bc9427cf9ac",
                      "isVisible": false,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgre3f20d85287e",
                      "partyId": "PRTYgr482cfeeb8c83"
                    }
                  ],
                  "totalCount": 8,
                  "totalPages": 1
                },
                "partyRoleGroupIdArray": [
                  "PTYGBnjxbx6tKNfVEP"
                ],
                "partyRoleIdArray": [
                  "PTYR9F4zbteyj7ehmi"
                ],
                "possibleNormAttorneyArray": [
                  {
                    "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormJudges?pageNumber=1",
                    "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormLawFirms?pageNumber=1",
                    "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormParties?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByNormAttorney?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByOpposingNormAttorney?pageNumber=1",
                    "confidenceScore": 0.5,
                    "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111",
                    "normAttorneyId": "NATY11111111111111",
                    "normAttorneyName": "ACOSTA S FERNANDO",
                    "object": "PossibleNormAttorney",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "barId": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "lawFirm": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.6,
                      "otherPotentialNormAttorneys": 0,
                      "phone": "Not_Provided_By_Data_Source"
                    }
                  }
                ],
                "possibleNormLawFirmArray": [
                  {
                    "associatedNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormAttorney?pageNumber=1",
                    "associatedNormJudgeAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormJudges?pageNumber=1",
                    "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormParties?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByNormLawFirm?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByOpposingNormLawFirm?pageNumber=1",
                    "confidenceScore": 0.66,
                    "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111",
                    "normLawFirmId": "NLAF11111111111111",
                    "normLawFirmName": "MidLand Funding LLC",
                    "object": "PossibleNormLawFirm",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.8,
                      "otherPotentialNormLawFirms": 0,
                      "phone": "Not_Provided_By_Data_Source",
                      "secretaryOfStateId": "Not_Provided_By_Data_Source"
                    },
                    "sourceDetails": {
                      "linkedNormAttorneyIdArray": [
                        "NATY11111111111111"
                      ],
                      "source": "Case_Attorney_Linked_In_Other_Cases"
                    }
                  }
                ],
                "sourceAttorneyType": "ATTORNEY"
              },
              {
                "attorneyId": "ATTYgrdab32c676590",
                "attorneyLawFirmArray": [
                  {
                    "attorneyLawFirmId": "ALFIgrfb10a9b6f389",
                    "firstFetchDate": "2019-05-16T06:55:54+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2019-05-16T06:55:54+00:00",
                    "name": "Friday, Eldredge & Clark, LLP",
                    "object": "AttorneyLawFirm"
                  }
                ],
                "attorneyType": {
                  "attorneyTypeId": "ATYPWXtARwvzu5HLcf",
                  "createdDate": "2022-03-28T04:59:12+00:00",
                  "name": "Lead Attorney",
                  "object": "AttorneyType"
                },
                "barNumber": null,
                "contact": {
                  "addressArray": [
                    {
                      "city": "Little Rock",
                      "countryCode": "USA",
                      "countryName": "United States of America",
                      "firstFetchDate": "2019-05-16T06:55:54+00:00",
                      "isVisible": true,
                      "lastFetchDate": "2019-05-16T06:55:54+00:00",
                      "latitude": null,
                      "longitude": null,
                      "object": "Address",
                      "stateCode": "AR",
                      "stateName": "ARKANSAS",
                      "streetAddress1": "2000 Regions Center, 400 West Capitol Avenue",
                      "streetAddress2": null,
                      "zip": "72201",
                      "zip4": "3493"
                    },
                    {
                      "city": "Little Rock",
                      "countryCode": "USA",
                      "countryName": "United States of America",
                      "firstFetchDate": "2019-05-16T06:55:54+00:00",
                      "isVisible": true,
                      "lastFetchDate": "2019-05-16T06:55:54+00:00",
                      "latitude": null,
                      "longitude": null,
                      "object": "Address",
                      "stateCode": "AR",
                      "stateName": "ARKANSAS",
                      "streetAddress1": "2000 Regions Center, 400 West Capital Avenue",
                      "streetAddress2": null,
                      "zip": "72201",
                      "zip4": "3493"
                    }
                  ],
                  "emailArray": [],
                  "object": "Contact",
                  "phoneNumberArray": [
                    {
                      "firstFetchDate": "2019-05-16T06:55:54+00:00",
                      "isVisible": true,
                      "lastFetchDate": "2019-05-16T06:55:54+00:00",
                      "object": "Phone",
                      "phoneNumber": "5013762011",
                      "phoneType": "DEFAULT"
                    },
                    {
                      "firstFetchDate": "2019-05-16T06:55:54+00:00",
                      "isVisible": true,
                      "lastFetchDate": "2019-05-16T06:55:54+00:00",
                      "object": "Phone",
                      "phoneNumber": "5013701580",
                      "phoneType": "DEFAULT"
                    }
                  ]
                },
                "firstFetchDate": "2019-05-16T06:55:54+00:00",
                "firstName": "Phil",
                "isVisible": false,
                "lastFetchDate": "2019-05-16T06:55:54+00:00",
                "lastName": "Malcom",
                "middleName": null,
                "name": "Phil Malcom",
                "namePrefix": null,
                "nameSuffix": null,
                "object": "Attorney",
                "partyAttorneyAssociations": {
                  "nextPageAPI": null,
                  "object": "PartyAttorneyAssociations",
                  "pageNumber": 1,
                  "partyAttorneyAssociationArray": [
                    {
                      "attorneyId": "ATTYgrdab32c676590",
                      "isVisible": false,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgr955a88def676",
                      "partyId": "PRTYgrefc32d5db2de"
                    },
                    {
                      "attorneyId": "ATTYgrdab32c676590",
                      "isVisible": false,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgr4c4bb394f48b",
                      "partyId": "PRTYgr573b48706f1f"
                    },
                    {
                      "attorneyId": "ATTYgrdab32c676590",
                      "isVisible": false,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgrd6fd88ba8c2d",
                      "partyId": "PRTYgr78967819d958"
                    },
                    {
                      "attorneyId": "ATTYgrdab32c676590",
                      "isVisible": false,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgr89ebfe2ae462",
                      "partyId": "PRTYgre4e51e9bde3d"
                    },
                    {
                      "attorneyId": "ATTYgrdab32c676590",
                      "isVisible": false,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgrdfd9b3633943",
                      "partyId": "PRTYgrd0f5ef5021d8"
                    }
                  ],
                  "totalCount": 5,
                  "totalPages": 1
                },
                "partyRoleGroupIdArray": [
                  "PTYGBnjxbx6tKNfVEP"
                ],
                "partyRoleIdArray": [
                  "PTYR9F4zbteyj7ehmi"
                ],
                "possibleNormAttorneyArray": [
                  {
                    "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormJudges?pageNumber=1",
                    "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormLawFirms?pageNumber=1",
                    "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormParties?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByNormAttorney?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByOpposingNormAttorney?pageNumber=1",
                    "confidenceScore": 0.5,
                    "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111",
                    "normAttorneyId": "NATY11111111111111",
                    "normAttorneyName": "ACOSTA S FERNANDO",
                    "object": "PossibleNormAttorney",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "barId": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "lawFirm": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.6,
                      "otherPotentialNormAttorneys": 0,
                      "phone": "Not_Provided_By_Data_Source"
                    }
                  }
                ],
                "possibleNormLawFirmArray": [
                  {
                    "associatedNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormAttorney?pageNumber=1",
                    "associatedNormJudgeAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormJudges?pageNumber=1",
                    "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormParties?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByNormLawFirm?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByOpposingNormLawFirm?pageNumber=1",
                    "confidenceScore": 0.66,
                    "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111",
                    "normLawFirmId": "NLAF11111111111111",
                    "normLawFirmName": "MidLand Funding LLC",
                    "object": "PossibleNormLawFirm",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.8,
                      "otherPotentialNormLawFirms": 0,
                      "phone": "Not_Provided_By_Data_Source",
                      "secretaryOfStateId": "Not_Provided_By_Data_Source"
                    },
                    "sourceDetails": {
                      "linkedNormAttorneyIdArray": [
                        "NATY11111111111111"
                      ],
                      "source": "Case_Attorney_Linked_In_Other_Cases"
                    }
                  }
                ],
                "sourceAttorneyType": "LEAD ATTORNEY"
              },
              {
                "attorneyId": "ATTYgrfe70f4173442",
                "attorneyLawFirmArray": [
                  {
                    "attorneyLawFirmId": "ALFIgrdc4eba7ae861",
                    "firstFetchDate": "2019-05-16T06:55:54+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2019-05-16T06:55:54+00:00",
                    "name": "Nixon, Peabody, L.L.P.",
                    "object": "AttorneyLawFirm"
                  }
                ],
                "attorneyType": {
                  "attorneyTypeId": "ATYPWXtARwvzu5HLcf",
                  "createdDate": "2022-03-28T04:59:12+00:00",
                  "name": "Lead Attorney",
                  "object": "AttorneyType"
                },
                "barNumber": null,
                "contact": {
                  "addressArray": [
                    {
                      "city": "Manchester",
                      "countryCode": "USA",
                      "countryName": "United States of America",
                      "firstFetchDate": "2019-05-16T06:55:54+00:00",
                      "isVisible": true,
                      "lastFetchDate": "2019-05-16T06:55:54+00:00",
                      "latitude": null,
                      "longitude": null,
                      "object": "Address",
                      "stateCode": "NH",
                      "stateName": "NEW HAMPSHIRE",
                      "streetAddress1": "889 Elm Street",
                      "streetAddress2": null,
                      "zip": "03101",
                      "zip4": null
                    }
                  ],
                  "emailArray": [],
                  "object": "Contact",
                  "phoneNumberArray": [
                    {
                      "firstFetchDate": "2019-05-16T06:55:54+00:00",
                      "isVisible": true,
                      "lastFetchDate": "2019-05-16T06:55:54+00:00",
                      "object": "Phone",
                      "phoneNumber": "6036284000",
                      "phoneType": "DEFAULT"
                    }
                  ]
                },
                "firstFetchDate": "2019-05-16T06:55:54+00:00",
                "firstName": "W",
                "isVisible": true,
                "lastFetchDate": "2019-05-16T06:55:54+00:00",
                "lastName": "O'Connell",
                "middleName": "Scott",
                "name": "W. Scott O'Connell",
                "namePrefix": null,
                "nameSuffix": null,
                "object": "Attorney",
                "partyAttorneyAssociations": {
                  "nextPageAPI": null,
                  "object": "PartyAttorneyAssociations",
                  "pageNumber": 1,
                  "partyAttorneyAssociationArray": [
                    {
                      "attorneyId": "ATTYgrfe70f4173442",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgr3f509fd9ab4a",
                      "partyId": "PRTYgrf4dccfb024f4"
                    }
                  ],
                  "totalCount": 1,
                  "totalPages": 1
                },
                "partyRoleGroupIdArray": [
                  "PTYGBnjxbx6tKNfVEP"
                ],
                "partyRoleIdArray": [
                  "PTYR9F4zbteyj7ehmi"
                ],
                "possibleNormAttorneyArray": [
                  {
                    "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormJudges?pageNumber=1",
                    "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormLawFirms?pageNumber=1",
                    "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormParties?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByNormAttorney?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByOpposingNormAttorney?pageNumber=1",
                    "confidenceScore": 0.5,
                    "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111",
                    "normAttorneyId": "NATY11111111111111",
                    "normAttorneyName": "ACOSTA S FERNANDO",
                    "object": "PossibleNormAttorney",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "barId": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "lawFirm": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.6,
                      "otherPotentialNormAttorneys": 0,
                      "phone": "Not_Provided_By_Data_Source"
                    }
                  }
                ],
                "possibleNormLawFirmArray": [
                  {
                    "associatedNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormAttorney?pageNumber=1",
                    "associatedNormJudgeAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormJudges?pageNumber=1",
                    "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormParties?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByNormLawFirm?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByOpposingNormLawFirm?pageNumber=1",
                    "confidenceScore": 0.66,
                    "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111",
                    "normLawFirmId": "NLAF11111111111111",
                    "normLawFirmName": "MidLand Funding LLC",
                    "object": "PossibleNormLawFirm",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.8,
                      "otherPotentialNormLawFirms": 0,
                      "phone": "Not_Provided_By_Data_Source",
                      "secretaryOfStateId": "Not_Provided_By_Data_Source"
                    },
                    "sourceDetails": {
                      "linkedNormAttorneyIdArray": [
                        "NATY11111111111111"
                      ],
                      "source": "Case_Attorney_Linked_In_Other_Cases"
                    }
                  }
                ],
                "sourceAttorneyType": "LEAD ATTORNEY"
              },
              {
                "attorneyId": "ATTYgr3d8efd5ceecd",
                "attorneyLawFirmArray": [
                  {
                    "attorneyLawFirmId": "ALFIgrf7f46f1f8a89",
                    "firstFetchDate": "2019-05-16T06:55:54+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2019-05-16T06:55:54+00:00",
                    "name": "Finkelstein Blankinship, Frei-Pearson & Garber, LLP",
                    "object": "AttorneyLawFirm"
                  }
                ],
                "attorneyType": {
                  "attorneyTypeId": "ATYPWXtARwvzu5HLcf",
                  "createdDate": "2022-03-28T04:59:12+00:00",
                  "name": "Lead Attorney",
                  "object": "AttorneyType"
                },
                "barNumber": null,
                "contact": {
                  "addressArray": [
                    {
                      "city": "White Plains",
                      "countryCode": "USA",
                      "countryName": "United States of America",
                      "firstFetchDate": "2019-05-16T06:55:54+00:00",
                      "isVisible": true,
                      "lastFetchDate": "2019-05-16T06:55:54+00:00",
                      "latitude": null,
                      "longitude": null,
                      "object": "Address",
                      "stateCode": "NY",
                      "stateName": "NEW YORK",
                      "streetAddress1": "445 Hamilton Ave, Suite 605",
                      "streetAddress2": null,
                      "zip": "10601",
                      "zip4": null
                    }
                  ],
                  "emailArray": [
                    {
                      "emailId": "tgarber@fbfglaw.com",
                      "firstFetchDate": "2019-05-16T06:55:54+00:00",
                      "isVisible": true,
                      "lastFetchDate": "2019-05-16T06:55:54+00:00",
                      "object": "Email"
                    }
                  ],
                  "object": "Contact",
                  "phoneNumberArray": [
                    {
                      "firstFetchDate": "2019-05-16T06:55:54+00:00",
                      "isVisible": true,
                      "lastFetchDate": "2019-05-16T06:55:54+00:00",
                      "object": "Phone",
                      "phoneNumber": "9148241561",
                      "phoneType": "FAX"
                    },
                    {
                      "firstFetchDate": "2019-05-16T06:55:54+00:00",
                      "isVisible": true,
                      "lastFetchDate": "2019-05-16T06:55:54+00:00",
                      "object": "Phone",
                      "phoneNumber": "9142983281",
                      "phoneType": "DEFAULT"
                    }
                  ]
                },
                "firstFetchDate": "2019-05-16T06:55:54+00:00",
                "firstName": "Todd",
                "isVisible": true,
                "lastFetchDate": "2019-05-16T06:55:54+00:00",
                "lastName": "Garber",
                "middleName": "Seth",
                "name": "Todd Seth Garber",
                "namePrefix": null,
                "nameSuffix": null,
                "object": "Attorney",
                "partyAttorneyAssociations": {
                  "nextPageAPI": null,
                  "object": "PartyAttorneyAssociations",
                  "pageNumber": 1,
                  "partyAttorneyAssociationArray": [
                    {
                      "attorneyId": "ATTYgr3d8efd5ceecd",
                      "isVisible": false,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgr4dcd33c930f3",
                      "partyId": "PRTYgrc307b5d101ff"
                    },
                    {
                      "attorneyId": "ATTYgr3d8efd5ceecd",
                      "isVisible": false,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgr6518abed9878",
                      "partyId": "PRTYgr3b81d9aa6068"
                    }
                  ],
                  "totalCount": 2,
                  "totalPages": 1
                },
                "partyRoleGroupIdArray": [
                  "PTYGBnjxbx6tKNfVEP"
                ],
                "partyRoleIdArray": [
                  "PTYR9F4zbteyj7ehmi"
                ],
                "possibleNormAttorneyArray": [
                  {
                    "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormJudges?pageNumber=1",
                    "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormLawFirms?pageNumber=1",
                    "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormParties?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByNormAttorney?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByOpposingNormAttorney?pageNumber=1",
                    "confidenceScore": 0.5,
                    "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111",
                    "normAttorneyId": "NATY11111111111111",
                    "normAttorneyName": "ACOSTA S FERNANDO",
                    "object": "PossibleNormAttorney",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "barId": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "lawFirm": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.6,
                      "otherPotentialNormAttorneys": 0,
                      "phone": "Not_Provided_By_Data_Source"
                    }
                  }
                ],
                "possibleNormLawFirmArray": [
                  {
                    "associatedNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormAttorney?pageNumber=1",
                    "associatedNormJudgeAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormJudges?pageNumber=1",
                    "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormParties?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByNormLawFirm?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByOpposingNormLawFirm?pageNumber=1",
                    "confidenceScore": 0.66,
                    "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111",
                    "normLawFirmId": "NLAF11111111111111",
                    "normLawFirmName": "MidLand Funding LLC",
                    "object": "PossibleNormLawFirm",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.8,
                      "otherPotentialNormLawFirms": 0,
                      "phone": "Not_Provided_By_Data_Source",
                      "secretaryOfStateId": "Not_Provided_By_Data_Source"
                    },
                    "sourceDetails": {
                      "linkedNormAttorneyIdArray": [
                        "NATY11111111111111"
                      ],
                      "source": "Case_Attorney_Linked_In_Other_Cases"
                    }
                  }
                ],
                "sourceAttorneyType": "LEAD ATTORNEY"
              },
              {
                "attorneyId": "ATTYgraab312eed46c",
                "attorneyLawFirmArray": [
                  {
                    "attorneyLawFirmId": "ALFIgr68694a4a351c",
                    "firstFetchDate": "2019-05-16T06:55:54+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2019-05-16T06:55:54+00:00",
                    "name": "Arnold & Porter Kaye Scholer LLP (NYC)",
                    "object": "AttorneyLawFirm"
                  }
                ],
                "attorneyType": {
                  "attorneyTypeId": "ATYPWXtARwvzu5HLcf",
                  "createdDate": "2022-03-28T04:59:12+00:00",
                  "name": "Lead Attorney",
                  "object": "AttorneyType"
                },
                "barNumber": null,
                "contact": {
                  "addressArray": [
                    {
                      "city": "New York",
                      "countryCode": "USA",
                      "countryName": "United States of America",
                      "firstFetchDate": "2019-05-16T06:55:54+00:00",
                      "isVisible": true,
                      "lastFetchDate": "2019-05-16T06:55:54+00:00",
                      "latitude": null,
                      "longitude": null,
                      "object": "Address",
                      "stateCode": "NY",
                      "stateName": "NEW YORK",
                      "streetAddress1": "250 West 55th Street",
                      "streetAddress2": null,
                      "zip": "10019",
                      "zip4": null
                    }
                  ],
                  "emailArray": [
                    {
                      "emailId": "wdowse@kayescholer.com",
                      "firstFetchDate": "2019-05-16T06:55:54+00:00",
                      "isVisible": true,
                      "lastFetchDate": "2019-05-16T06:55:54+00:00",
                      "object": "Email"
                    }
                  ],
                  "object": "Contact",
                  "phoneNumberArray": [
                    {
                      "firstFetchDate": "2019-05-16T06:55:54+00:00",
                      "isVisible": true,
                      "lastFetchDate": "2019-05-16T06:55:54+00:00",
                      "object": "Phone",
                      "phoneNumber": "2128366761",
                      "phoneType": "FAX"
                    },
                    {
                      "firstFetchDate": "2019-05-16T06:55:54+00:00",
                      "isVisible": true,
                      "lastFetchDate": "2019-05-16T06:55:54+00:00",
                      "object": "Phone",
                      "phoneNumber": "2128368000",
                      "phoneType": "DEFAULT"
                    }
                  ]
                },
                "firstFetchDate": "2019-05-16T06:55:54+00:00",
                "firstName": "Wendy",
                "isVisible": true,
                "lastFetchDate": "2019-05-16T06:55:54+00:00",
                "lastName": "Dowse",
                "middleName": "Sabina",
                "name": "Wendy Sabina Dowse",
                "namePrefix": null,
                "nameSuffix": null,
                "object": "Attorney",
                "partyAttorneyAssociations": {
                  "nextPageAPI": null,
                  "object": "PartyAttorneyAssociations",
                  "pageNumber": 1,
                  "partyAttorneyAssociationArray": [
                    {
                      "attorneyId": "ATTYgraab312eed46c",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgr393ada5c4aa5",
                      "partyId": "PRTYgrf4dccfb024f4"
                    },
                    {
                      "attorneyId": "ATTYgraab312eed46c",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgr57f4611d7915",
                      "partyId": "PRTYgrfbcaa9f9a841"
                    },
                    {
                      "attorneyId": "ATTYgraab312eed46c",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgr7fcce9fd97e0",
                      "partyId": "PRTYgr6ffa683e764b"
                    }
                  ],
                  "totalCount": 3,
                  "totalPages": 1
                },
                "partyRoleGroupIdArray": [
                  "PTYGBnjxbx6tKNfVEP"
                ],
                "partyRoleIdArray": [
                  "PTYR9F4zbteyj7ehmi"
                ],
                "possibleNormAttorneyArray": [
                  {
                    "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormJudges?pageNumber=1",
                    "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormLawFirms?pageNumber=1",
                    "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormParties?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByNormAttorney?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByOpposingNormAttorney?pageNumber=1",
                    "confidenceScore": 0.5,
                    "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111",
                    "normAttorneyId": "NATY11111111111111",
                    "normAttorneyName": "ACOSTA S FERNANDO",
                    "object": "PossibleNormAttorney",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "barId": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "lawFirm": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.6,
                      "otherPotentialNormAttorneys": 0,
                      "phone": "Not_Provided_By_Data_Source"
                    }
                  }
                ],
                "possibleNormLawFirmArray": [
                  {
                    "associatedNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormAttorney?pageNumber=1",
                    "associatedNormJudgeAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormJudges?pageNumber=1",
                    "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormParties?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByNormLawFirm?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByOpposingNormLawFirm?pageNumber=1",
                    "confidenceScore": 0.66,
                    "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111",
                    "normLawFirmId": "NLAF11111111111111",
                    "normLawFirmName": "MidLand Funding LLC",
                    "object": "PossibleNormLawFirm",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.8,
                      "otherPotentialNormLawFirms": 0,
                      "phone": "Not_Provided_By_Data_Source",
                      "secretaryOfStateId": "Not_Provided_By_Data_Source"
                    },
                    "sourceDetails": {
                      "linkedNormAttorneyIdArray": [
                        "NATY11111111111111"
                      ],
                      "source": "Case_Attorney_Linked_In_Other_Cases"
                    }
                  }
                ],
                "sourceAttorneyType": "LEAD ATTORNEY"
              },
              {
                "attorneyId": "ATTYgrbea32b8e2926",
                "attorneyLawFirmArray": [],
                "attorneyType": {
                  "attorneyTypeId": "ATYPRPk3LNobYmtqwF",
                  "createdDate": "2022-03-28T04:59:12+00:00",
                  "name": "Attorney",
                  "object": "AttorneyType"
                },
                "barNumber": null,
                "contact": {
                  "addressArray": [
                    {
                      "city": "Little Rock",
                      "countryCode": "USA",
                      "countryName": "United States of America",
                      "firstFetchDate": "2019-05-16T06:55:57+00:00",
                      "isVisible": true,
                      "lastFetchDate": "2019-05-16T06:55:57+00:00",
                      "latitude": null,
                      "longitude": null,
                      "object": "Address",
                      "stateCode": "AR",
                      "stateName": "ARKANSAS",
                      "streetAddress1": "425 West Capital Ave.",
                      "streetAddress2": null,
                      "zip": "72201",
                      "zip4": "3525"
                    }
                  ],
                  "emailArray": [],
                  "object": "Contact",
                  "phoneNumberArray": [
                    {
                      "firstFetchDate": "2019-05-16T06:55:57+00:00",
                      "isVisible": true,
                      "lastFetchDate": "2019-05-16T06:55:57+00:00",
                      "object": "Phone",
                      "phoneNumber": "5016888800",
                      "phoneType": "DEFAULT"
                    }
                  ]
                },
                "firstFetchDate": "2019-05-16T06:55:54+00:00",
                "firstName": "Stuart",
                "isVisible": true,
                "lastFetchDate": "2019-05-16T06:55:54+00:00",
                "lastName": "Miller",
                "middleName": "P",
                "name": "Stuart P. Miller",
                "namePrefix": null,
                "nameSuffix": null,
                "object": "Attorney",
                "partyAttorneyAssociations": {
                  "nextPageAPI": null,
                  "object": "PartyAttorneyAssociations",
                  "pageNumber": 1,
                  "partyAttorneyAssociationArray": [
                    {
                      "attorneyId": "ATTYgrbea32b8e2926",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgr5742957efc0d",
                      "partyId": "PRTYgr2ba358c2897d"
                    },
                    {
                      "attorneyId": "ATTYgrbea32b8e2926",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgrdfef635172a9",
                      "partyId": "PRTYgr38e68cd29f5e"
                    },
                    {
                      "attorneyId": "ATTYgrbea32b8e2926",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgr29e324b69d38",
                      "partyId": "PRTYgrabeac52d7e73"
                    }
                  ],
                  "totalCount": 3,
                  "totalPages": 1
                },
                "partyRoleGroupIdArray": [
                  "PTYGBnjxbx6tKNfVEP"
                ],
                "partyRoleIdArray": [
                  "PTYR9F4zbteyj7ehmi"
                ],
                "possibleNormAttorneyArray": [
                  {
                    "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormJudges?pageNumber=1",
                    "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormLawFirms?pageNumber=1",
                    "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormParties?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByNormAttorney?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByOpposingNormAttorney?pageNumber=1",
                    "confidenceScore": 0.5,
                    "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111",
                    "normAttorneyId": "NATY11111111111111",
                    "normAttorneyName": "ACOSTA S FERNANDO",
                    "object": "PossibleNormAttorney",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "barId": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "lawFirm": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.6,
                      "otherPotentialNormAttorneys": 0,
                      "phone": "Not_Provided_By_Data_Source"
                    }
                  }
                ],
                "possibleNormLawFirmArray": [
                  {
                    "associatedNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormAttorney?pageNumber=1",
                    "associatedNormJudgeAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormJudges?pageNumber=1",
                    "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormParties?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByNormLawFirm?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByOpposingNormLawFirm?pageNumber=1",
                    "confidenceScore": 0.66,
                    "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111",
                    "normLawFirmId": "NLAF11111111111111",
                    "normLawFirmName": "MidLand Funding LLC",
                    "object": "PossibleNormLawFirm",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.8,
                      "otherPotentialNormLawFirms": 0,
                      "phone": "Not_Provided_By_Data_Source",
                      "secretaryOfStateId": "Not_Provided_By_Data_Source"
                    },
                    "sourceDetails": {
                      "linkedNormAttorneyIdArray": [
                        "NATY11111111111111"
                      ],
                      "source": "Case_Attorney_Linked_In_Other_Cases"
                    }
                  }
                ],
                "sourceAttorneyType": "ATTORNEY"
              },
              {
                "attorneyId": "ATTYgr7e17d00a0bcf",
                "attorneyLawFirmArray": [
                  {
                    "attorneyLawFirmId": "ALFIgr30e1f04b27f8",
                    "firstFetchDate": "2019-05-16T06:55:54+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2019-05-16T06:55:54+00:00",
                    "name": "United States Attorney's Office",
                    "object": "AttorneyLawFirm"
                  }
                ],
                "attorneyType": {
                  "attorneyTypeId": "ATYPWXtARwvzu5HLcf",
                  "createdDate": "2022-03-28T04:59:12+00:00",
                  "name": "Lead Attorney",
                  "object": "AttorneyType"
                },
                "barNumber": null,
                "contact": {
                  "addressArray": [
                    {
                      "city": "New York",
                      "countryCode": "USA",
                      "countryName": "United States of America",
                      "firstFetchDate": "2019-05-16T06:55:54+00:00",
                      "isVisible": true,
                      "lastFetchDate": "2019-05-16T06:55:54+00:00",
                      "latitude": null,
                      "longitude": null,
                      "object": "Address",
                      "stateCode": "NY",
                      "stateName": "NEW YORK",
                      "streetAddress1": "One St. Andrew's Plaza",
                      "streetAddress2": null,
                      "zip": "10007",
                      "zip4": null
                    }
                  ],
                  "emailArray": [
                    {
                      "emailId": "MAOSDNY@KAYESCHOLER.COM",
                      "firstFetchDate": "2019-05-16T06:55:54+00:00",
                      "isVisible": true,
                      "lastFetchDate": "2019-05-16T06:55:54+00:00",
                      "object": "Email"
                    }
                  ],
                  "object": "Contact",
                  "phoneNumberArray": [
                    {
                      "firstFetchDate": "2019-05-16T06:55:54+00:00",
                      "isVisible": true,
                      "lastFetchDate": "2019-05-16T06:55:54+00:00",
                      "object": "Phone",
                      "phoneNumber": "2128366447",
                      "phoneType": "FAX"
                    },
                    {
                      "firstFetchDate": "2019-05-16T06:55:54+00:00",
                      "isVisible": true,
                      "lastFetchDate": "2019-05-16T06:55:54+00:00",
                      "object": "Phone",
                      "phoneNumber": "2128367574",
                      "phoneType": "DEFAULT"
                    }
                  ]
                },
                "firstFetchDate": "2019-05-16T06:55:54+00:00",
                "firstName": "Peter",
                "isVisible": true,
                "lastFetchDate": "2019-05-16T06:55:54+00:00",
                "lastName": "Samberg",
                "middleName": null,
                "name": "Peter Samberg",
                "namePrefix": null,
                "nameSuffix": null,
                "object": "Attorney",
                "partyAttorneyAssociations": {
                  "nextPageAPI": null,
                  "object": "PartyAttorneyAssociations",
                  "pageNumber": 1,
                  "partyAttorneyAssociationArray": [
                    {
                      "attorneyId": "ATTYgr7e17d00a0bcf",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgrcffed0e85d23",
                      "partyId": "PRTYgrf4dccfb024f4"
                    },
                    {
                      "attorneyId": "ATTYgr7e17d00a0bcf",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgr30e254285f7d",
                      "partyId": "PRTYgrfbcaa9f9a841"
                    }
                  ],
                  "totalCount": 2,
                  "totalPages": 1
                },
                "partyRoleGroupIdArray": [
                  "PTYGBnjxbx6tKNfVEP"
                ],
                "partyRoleIdArray": [
                  "PTYR9F4zbteyj7ehmi"
                ],
                "possibleNormAttorneyArray": [
                  {
                    "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormJudges?pageNumber=1",
                    "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormLawFirms?pageNumber=1",
                    "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormParties?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByNormAttorney?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByOpposingNormAttorney?pageNumber=1",
                    "confidenceScore": 0.5,
                    "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111",
                    "normAttorneyId": "NATY11111111111111",
                    "normAttorneyName": "ACOSTA S FERNANDO",
                    "object": "PossibleNormAttorney",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "barId": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "lawFirm": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.6,
                      "otherPotentialNormAttorneys": 0,
                      "phone": "Not_Provided_By_Data_Source"
                    }
                  }
                ],
                "possibleNormLawFirmArray": [
                  {
                    "associatedNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormAttorney?pageNumber=1",
                    "associatedNormJudgeAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormJudges?pageNumber=1",
                    "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormParties?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByNormLawFirm?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByOpposingNormLawFirm?pageNumber=1",
                    "confidenceScore": 0.66,
                    "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111",
                    "normLawFirmId": "NLAF11111111111111",
                    "normLawFirmName": "MidLand Funding LLC",
                    "object": "PossibleNormLawFirm",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.8,
                      "otherPotentialNormLawFirms": 0,
                      "phone": "Not_Provided_By_Data_Source",
                      "secretaryOfStateId": "Not_Provided_By_Data_Source"
                    },
                    "sourceDetails": {
                      "linkedNormAttorneyIdArray": [
                        "NATY11111111111111"
                      ],
                      "source": "Case_Attorney_Linked_In_Other_Cases"
                    }
                  }
                ],
                "sourceAttorneyType": "LEAD ATTORNEY"
              },
              {
                "attorneyId": "ATTYgr647f78b45505",
                "attorneyLawFirmArray": [
                  {
                    "attorneyLawFirmId": "ALFIgr496913016f20",
                    "firstFetchDate": "2019-05-16T06:55:54+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2019-05-16T06:55:54+00:00",
                    "name": "Edly H. Jones",
                    "object": "AttorneyLawFirm"
                  }
                ],
                "attorneyType": {
                  "attorneyTypeId": "ATYPWXtARwvzu5HLcf",
                  "createdDate": "2022-03-28T04:59:12+00:00",
                  "name": "Lead Attorney",
                  "object": "AttorneyType"
                },
                "barNumber": null,
                "contact": {
                  "addressArray": [
                    {
                      "city": "Ridgeland",
                      "countryCode": "USA",
                      "countryName": "United States of America",
                      "firstFetchDate": "2019-05-16T06:55:54+00:00",
                      "isVisible": true,
                      "lastFetchDate": "2019-05-16T06:55:54+00:00",
                      "latitude": null,
                      "longitude": null,
                      "object": "Address",
                      "stateCode": "MS",
                      "stateName": "MISSISSIPPI",
                      "streetAddress1": "P.O. Box 3717",
                      "streetAddress2": null,
                      "zip": "39158",
                      "zip4": "3171"
                    }
                  ],
                  "emailArray": [],
                  "object": "Contact",
                  "phoneNumberArray": [
                    {
                      "firstFetchDate": "2019-05-16T06:55:54+00:00",
                      "isVisible": true,
                      "lastFetchDate": "2019-05-16T06:55:54+00:00",
                      "object": "Phone",
                      "phoneNumber": "6019779611",
                      "phoneType": "DEFAULT"
                    }
                  ]
                },
                "firstFetchDate": "2019-05-16T06:55:54+00:00",
                "firstName": "Edley",
                "isVisible": false,
                "lastFetchDate": "2019-05-16T06:55:54+00:00",
                "lastName": "Jones",
                "middleName": "H",
                "name": "Edley H. Jones, III",
                "namePrefix": null,
                "nameSuffix": "III",
                "object": "Attorney",
                "partyAttorneyAssociations": {
                  "nextPageAPI": null,
                  "object": "PartyAttorneyAssociations",
                  "pageNumber": 1,
                  "partyAttorneyAssociationArray": [
                    {
                      "attorneyId": "ATTYgr647f78b45505",
                      "isVisible": false,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgr1ee858324b3e",
                      "partyId": "PRTYgr59b559a24c19"
                    }
                  ],
                  "totalCount": 1,
                  "totalPages": 1
                },
                "partyRoleGroupIdArray": [
                  "PTYGBnjxbx6tKNfVEP"
                ],
                "partyRoleIdArray": [
                  "PTYR9F4zbteyj7ehmi"
                ],
                "possibleNormAttorneyArray": [
                  {
                    "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormJudges?pageNumber=1",
                    "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormLawFirms?pageNumber=1",
                    "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormParties?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByNormAttorney?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByOpposingNormAttorney?pageNumber=1",
                    "confidenceScore": 0.5,
                    "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111",
                    "normAttorneyId": "NATY11111111111111",
                    "normAttorneyName": "ACOSTA S FERNANDO",
                    "object": "PossibleNormAttorney",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "barId": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "lawFirm": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.6,
                      "otherPotentialNormAttorneys": 0,
                      "phone": "Not_Provided_By_Data_Source"
                    }
                  }
                ],
                "possibleNormLawFirmArray": [
                  {
                    "associatedNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormAttorney?pageNumber=1",
                    "associatedNormJudgeAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormJudges?pageNumber=1",
                    "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormParties?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByNormLawFirm?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByOpposingNormLawFirm?pageNumber=1",
                    "confidenceScore": 0.66,
                    "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111",
                    "normLawFirmId": "NLAF11111111111111",
                    "normLawFirmName": "MidLand Funding LLC",
                    "object": "PossibleNormLawFirm",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.8,
                      "otherPotentialNormLawFirms": 0,
                      "phone": "Not_Provided_By_Data_Source",
                      "secretaryOfStateId": "Not_Provided_By_Data_Source"
                    },
                    "sourceDetails": {
                      "linkedNormAttorneyIdArray": [
                        "NATY11111111111111"
                      ],
                      "source": "Case_Attorney_Linked_In_Other_Cases"
                    }
                  }
                ],
                "sourceAttorneyType": "LEAD ATTORNEY"
              },
              {
                "attorneyId": "ATTYgr70646d7f9a4f",
                "attorneyLawFirmArray": [
                  {
                    "attorneyLawFirmId": "ALFIgr32bfce6f861e",
                    "firstFetchDate": "2019-05-16T06:55:54+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2019-05-16T06:55:54+00:00",
                    "name": "Kaye, Scholer LLP",
                    "object": "AttorneyLawFirm"
                  }
                ],
                "attorneyType": {
                  "attorneyTypeId": "ATYPWXtARwvzu5HLcf",
                  "createdDate": "2022-03-28T04:59:12+00:00",
                  "name": "Lead Attorney",
                  "object": "AttorneyType"
                },
                "barNumber": null,
                "contact": {
                  "addressArray": [
                    {
                      "city": "New York",
                      "countryCode": "USA",
                      "countryName": "United States of America",
                      "firstFetchDate": "2019-05-16T06:55:54+00:00",
                      "isVisible": true,
                      "lastFetchDate": "2019-05-16T06:55:54+00:00",
                      "latitude": null,
                      "longitude": null,
                      "object": "Address",
                      "stateCode": "NY",
                      "stateName": "NEW YORK",
                      "streetAddress1": "425 Park Avenue",
                      "streetAddress2": null,
                      "zip": "10022",
                      "zip4": "3598"
                    }
                  ],
                  "emailArray": [
                    {
                      "emailId": "MAOSDNY@KAYESCHOLER.COM",
                      "firstFetchDate": "2019-05-16T06:55:54+00:00",
                      "isVisible": true,
                      "lastFetchDate": "2019-05-16T06:55:54+00:00",
                      "object": "Email"
                    }
                  ],
                  "object": "Contact",
                  "phoneNumberArray": [
                    {
                      "firstFetchDate": "2019-05-16T06:55:54+00:00",
                      "isVisible": true,
                      "lastFetchDate": "2019-05-16T06:55:54+00:00",
                      "object": "Phone",
                      "phoneNumber": "2128368000",
                      "phoneType": "DEFAULT"
                    }
                  ]
                },
                "firstFetchDate": "2019-05-16T06:55:54+00:00",
                "firstName": "Liza",
                "isVisible": true,
                "lastFetchDate": "2019-05-16T06:55:54+00:00",
                "lastName": "Karsai",
                "middleName": "Ilona",
                "name": "Liza Ilona Karsai",
                "namePrefix": null,
                "nameSuffix": null,
                "object": "Attorney",
                "partyAttorneyAssociations": {
                  "nextPageAPI": null,
                  "object": "PartyAttorneyAssociations",
                  "pageNumber": 1,
                  "partyAttorneyAssociationArray": [
                    {
                      "attorneyId": "ATTYgr70646d7f9a4f",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgr54c736280819",
                      "partyId": "PRTYgrf4dccfb024f4"
                    },
                    {
                      "attorneyId": "ATTYgr70646d7f9a4f",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgr4c16b448ed29",
                      "partyId": "PRTYgrfbcaa9f9a841"
                    }
                  ],
                  "totalCount": 2,
                  "totalPages": 1
                },
                "partyRoleGroupIdArray": [
                  "PTYGBnjxbx6tKNfVEP"
                ],
                "partyRoleIdArray": [
                  "PTYR9F4zbteyj7ehmi"
                ],
                "possibleNormAttorneyArray": [
                  {
                    "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormJudges?pageNumber=1",
                    "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormLawFirms?pageNumber=1",
                    "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormParties?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByNormAttorney?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByOpposingNormAttorney?pageNumber=1",
                    "confidenceScore": 0.5,
                    "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111",
                    "normAttorneyId": "NATY11111111111111",
                    "normAttorneyName": "ACOSTA S FERNANDO",
                    "object": "PossibleNormAttorney",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "barId": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "lawFirm": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.6,
                      "otherPotentialNormAttorneys": 0,
                      "phone": "Not_Provided_By_Data_Source"
                    }
                  }
                ],
                "possibleNormLawFirmArray": [
                  {
                    "associatedNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormAttorney?pageNumber=1",
                    "associatedNormJudgeAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormJudges?pageNumber=1",
                    "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormParties?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByNormLawFirm?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByOpposingNormLawFirm?pageNumber=1",
                    "confidenceScore": 0.66,
                    "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111",
                    "normLawFirmId": "NLAF11111111111111",
                    "normLawFirmName": "MidLand Funding LLC",
                    "object": "PossibleNormLawFirm",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.8,
                      "otherPotentialNormLawFirms": 0,
                      "phone": "Not_Provided_By_Data_Source",
                      "secretaryOfStateId": "Not_Provided_By_Data_Source"
                    },
                    "sourceDetails": {
                      "linkedNormAttorneyIdArray": [
                        "NATY11111111111111"
                      ],
                      "source": "Case_Attorney_Linked_In_Other_Cases"
                    }
                  }
                ],
                "sourceAttorneyType": "LEAD ATTORNEY"
              },
              {
                "attorneyId": "ATTYgrea3f182836b9",
                "attorneyLawFirmArray": [
                  {
                    "attorneyLawFirmId": "ALFIgr7fd6f2c65117",
                    "firstFetchDate": "2019-05-16T06:55:54+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2019-05-16T06:55:54+00:00",
                    "name": "Deakle - Couch Law Firm",
                    "object": "AttorneyLawFirm"
                  }
                ],
                "attorneyType": {
                  "attorneyTypeId": "ATYPWXtARwvzu5HLcf",
                  "createdDate": "2022-03-28T04:59:12+00:00",
                  "name": "Lead Attorney",
                  "object": "AttorneyType"
                },
                "barNumber": null,
                "contact": {
                  "addressArray": [
                    {
                      "city": "Hattiesburg",
                      "countryCode": "USA",
                      "countryName": "United States of America",
                      "firstFetchDate": "2019-05-16T06:55:54+00:00",
                      "isVisible": true,
                      "lastFetchDate": "2019-05-16T06:55:54+00:00",
                      "latitude": null,
                      "longitude": null,
                      "object": "Address",
                      "stateCode": "MS",
                      "stateName": "MISSISSIPPI",
                      "streetAddress1": "P.O. Box 2072",
                      "streetAddress2": null,
                      "zip": "39403",
                      "zip4": null
                    }
                  ],
                  "emailArray": [],
                  "object": "Contact",
                  "phoneNumberArray": [
                    {
                      "firstFetchDate": "2019-05-16T06:55:54+00:00",
                      "isVisible": true,
                      "lastFetchDate": "2019-05-16T06:55:54+00:00",
                      "object": "Phone",
                      "phoneNumber": "6015440631",
                      "phoneType": "DEFAULT"
                    }
                  ]
                },
                "firstFetchDate": "2019-05-16T06:55:54+00:00",
                "firstName": "Richard",
                "isVisible": true,
                "lastFetchDate": "2019-05-16T06:55:54+00:00",
                "lastName": "Lajaunie",
                "middleName": "J",
                "name": "Richard J. Lajaunie",
                "namePrefix": null,
                "nameSuffix": null,
                "object": "Attorney",
                "partyAttorneyAssociations": {
                  "nextPageAPI": null,
                  "object": "PartyAttorneyAssociations",
                  "pageNumber": 1,
                  "partyAttorneyAssociationArray": [
                    {
                      "attorneyId": "ATTYgrea3f182836b9",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgr1e8c9471be4a",
                      "partyId": "PRTYgrf9032eff326a"
                    }
                  ],
                  "totalCount": 1,
                  "totalPages": 1
                },
                "partyRoleGroupIdArray": [
                  "PTYGBnjxbx6tKNfVEP"
                ],
                "partyRoleIdArray": [
                  "PTYR9F4zbteyj7ehmi"
                ],
                "possibleNormAttorneyArray": [
                  {
                    "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormJudges?pageNumber=1",
                    "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormLawFirms?pageNumber=1",
                    "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormParties?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByNormAttorney?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByOpposingNormAttorney?pageNumber=1",
                    "confidenceScore": 0.5,
                    "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111",
                    "normAttorneyId": "NATY11111111111111",
                    "normAttorneyName": "ACOSTA S FERNANDO",
                    "object": "PossibleNormAttorney",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "barId": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "lawFirm": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.6,
                      "otherPotentialNormAttorneys": 0,
                      "phone": "Not_Provided_By_Data_Source"
                    }
                  }
                ],
                "possibleNormLawFirmArray": [
                  {
                    "associatedNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormAttorney?pageNumber=1",
                    "associatedNormJudgeAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormJudges?pageNumber=1",
                    "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormParties?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByNormLawFirm?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByOpposingNormLawFirm?pageNumber=1",
                    "confidenceScore": 0.66,
                    "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111",
                    "normLawFirmId": "NLAF11111111111111",
                    "normLawFirmName": "MidLand Funding LLC",
                    "object": "PossibleNormLawFirm",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.8,
                      "otherPotentialNormLawFirms": 0,
                      "phone": "Not_Provided_By_Data_Source",
                      "secretaryOfStateId": "Not_Provided_By_Data_Source"
                    },
                    "sourceDetails": {
                      "linkedNormAttorneyIdArray": [
                        "NATY11111111111111"
                      ],
                      "source": "Case_Attorney_Linked_In_Other_Cases"
                    }
                  }
                ],
                "sourceAttorneyType": "LEAD ATTORNEY"
              },
              {
                "attorneyId": "ATTYgr0056bd1e90cf",
                "attorneyLawFirmArray": [],
                "attorneyType": {
                  "attorneyTypeId": "ATYPRPk3LNobYmtqwF",
                  "createdDate": "2022-03-28T04:59:12+00:00",
                  "name": "Attorney",
                  "object": "AttorneyType"
                },
                "barNumber": null,
                "contact": {
                  "addressArray": [
                    {
                      "city": "El Paso",
                      "countryCode": "USA",
                      "countryName": "United States of America",
                      "firstFetchDate": "2019-05-16T06:55:55+00:00",
                      "isVisible": true,
                      "lastFetchDate": "2019-05-16T06:55:55+00:00",
                      "latitude": null,
                      "longitude": null,
                      "object": "Address",
                      "stateCode": "TX",
                      "stateName": "TEXAS",
                      "streetAddress1": "5812 Cromo Drive",
                      "streetAddress2": null,
                      "zip": "79912",
                      "zip4": null
                    }
                  ],
                  "emailArray": [],
                  "object": "Contact",
                  "phoneNumberArray": [
                    {
                      "firstFetchDate": "2019-05-16T06:55:55+00:00",
                      "isVisible": true,
                      "lastFetchDate": "2019-05-16T06:55:55+00:00",
                      "object": "Phone",
                      "phoneNumber": "9158348400",
                      "phoneType": "DEFAULT"
                    }
                  ]
                },
                "firstFetchDate": "2019-05-16T06:55:54+00:00",
                "firstName": "Larry",
                "isVisible": true,
                "lastFetchDate": "2019-05-16T06:55:54+00:00",
                "lastName": "Hicks",
                "middleName": "W",
                "name": "Larry W. Hicks",
                "namePrefix": null,
                "nameSuffix": null,
                "object": "Attorney",
                "partyAttorneyAssociations": {
                  "nextPageAPI": null,
                  "object": "PartyAttorneyAssociations",
                  "pageNumber": 1,
                  "partyAttorneyAssociationArray": [
                    {
                      "attorneyId": "ATTYgr0056bd1e90cf",
                      "isVisible": false,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgr78e304654c19",
                      "partyId": "PRTYgr6070c7c423cc"
                    },
                    {
                      "attorneyId": "ATTYgr0056bd1e90cf",
                      "isVisible": false,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgrb1185350ce3e",
                      "partyId": "PRTYgr5fdb74acdbf5"
                    }
                  ],
                  "totalCount": 2,
                  "totalPages": 1
                },
                "partyRoleGroupIdArray": [
                  "PTYGBnjxbx6tKNfVEP"
                ],
                "partyRoleIdArray": [
                  "PTYR9F4zbteyj7ehmi"
                ],
                "possibleNormAttorneyArray": [
                  {
                    "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormJudges?pageNumber=1",
                    "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormLawFirms?pageNumber=1",
                    "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormParties?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByNormAttorney?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByOpposingNormAttorney?pageNumber=1",
                    "confidenceScore": 0.5,
                    "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111",
                    "normAttorneyId": "NATY11111111111111",
                    "normAttorneyName": "ACOSTA S FERNANDO",
                    "object": "PossibleNormAttorney",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "barId": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "lawFirm": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.6,
                      "otherPotentialNormAttorneys": 0,
                      "phone": "Not_Provided_By_Data_Source"
                    }
                  }
                ],
                "possibleNormLawFirmArray": [
                  {
                    "associatedNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormAttorney?pageNumber=1",
                    "associatedNormJudgeAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormJudges?pageNumber=1",
                    "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormParties?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByNormLawFirm?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByOpposingNormLawFirm?pageNumber=1",
                    "confidenceScore": 0.66,
                    "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111",
                    "normLawFirmId": "NLAF11111111111111",
                    "normLawFirmName": "MidLand Funding LLC",
                    "object": "PossibleNormLawFirm",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.8,
                      "otherPotentialNormLawFirms": 0,
                      "phone": "Not_Provided_By_Data_Source",
                      "secretaryOfStateId": "Not_Provided_By_Data_Source"
                    },
                    "sourceDetails": {
                      "linkedNormAttorneyIdArray": [
                        "NATY11111111111111"
                      ],
                      "source": "Case_Attorney_Linked_In_Other_Cases"
                    }
                  }
                ],
                "sourceAttorneyType": "ATTORNEY"
              },
              {
                "attorneyId": "ATTYgre11975d6d038",
                "attorneyLawFirmArray": [
                  {
                    "attorneyLawFirmId": "ALFIgr1864ddf38598",
                    "firstFetchDate": "2019-05-16T06:55:54+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2019-05-16T06:55:54+00:00",
                    "name": "Clark, Scott & Streetman, P.A.",
                    "object": "AttorneyLawFirm"
                  }
                ],
                "attorneyType": {
                  "attorneyTypeId": "ATYPWXtARwvzu5HLcf",
                  "createdDate": "2022-03-28T04:59:12+00:00",
                  "name": "Lead Attorney",
                  "object": "AttorneyType"
                },
                "barNumber": null,
                "contact": {
                  "addressArray": [
                    {
                      "city": "Ridgeland",
                      "countryCode": "USA",
                      "countryName": "United States of America",
                      "firstFetchDate": "2019-05-16T06:55:54+00:00",
                      "isVisible": true,
                      "lastFetchDate": "2019-05-16T06:55:54+00:00",
                      "latitude": null,
                      "longitude": null,
                      "object": "Address",
                      "stateCode": "MS",
                      "stateName": "MISSISSIPPI",
                      "streetAddress1": "725 Avignon Drive",
                      "streetAddress2": null,
                      "zip": "39157",
                      "zip4": null
                    }
                  ],
                  "emailArray": [],
                  "object": "Contact",
                  "phoneNumberArray": [
                    {
                      "firstFetchDate": "2019-05-16T06:55:54+00:00",
                      "isVisible": true,
                      "lastFetchDate": "2019-05-16T06:55:54+00:00",
                      "object": "Phone",
                      "phoneNumber": "6016074800",
                      "phoneType": "DEFAULT"
                    }
                  ]
                },
                "firstFetchDate": "2019-05-16T06:55:54+00:00",
                "firstName": "J",
                "isVisible": true,
                "lastFetchDate": "2019-05-16T06:55:54+00:00",
                "lastName": "Rogers",
                "middleName": "Scott",
                "name": "J. Scott Rogers",
                "namePrefix": null,
                "nameSuffix": null,
                "object": "Attorney",
                "partyAttorneyAssociations": {
                  "nextPageAPI": null,
                  "object": "PartyAttorneyAssociations",
                  "pageNumber": 1,
                  "partyAttorneyAssociationArray": [
                    {
                      "attorneyId": "ATTYgre11975d6d038",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgr970eb36a7927",
                      "partyId": "PRTYgrb3031422af2f"
                    }
                  ],
                  "totalCount": 1,
                  "totalPages": 1
                },
                "partyRoleGroupIdArray": [
                  "PTYGBnjxbx6tKNfVEP"
                ],
                "partyRoleIdArray": [
                  "PTYR9F4zbteyj7ehmi"
                ],
                "possibleNormAttorneyArray": [
                  {
                    "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormJudges?pageNumber=1",
                    "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormLawFirms?pageNumber=1",
                    "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormParties?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByNormAttorney?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByOpposingNormAttorney?pageNumber=1",
                    "confidenceScore": 0.5,
                    "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111",
                    "normAttorneyId": "NATY11111111111111",
                    "normAttorneyName": "ACOSTA S FERNANDO",
                    "object": "PossibleNormAttorney",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "barId": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "lawFirm": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.6,
                      "otherPotentialNormAttorneys": 0,
                      "phone": "Not_Provided_By_Data_Source"
                    }
                  }
                ],
                "possibleNormLawFirmArray": [
                  {
                    "associatedNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormAttorney?pageNumber=1",
                    "associatedNormJudgeAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormJudges?pageNumber=1",
                    "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormParties?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByNormLawFirm?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByOpposingNormLawFirm?pageNumber=1",
                    "confidenceScore": 0.66,
                    "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111",
                    "normLawFirmId": "NLAF11111111111111",
                    "normLawFirmName": "MidLand Funding LLC",
                    "object": "PossibleNormLawFirm",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.8,
                      "otherPotentialNormLawFirms": 0,
                      "phone": "Not_Provided_By_Data_Source",
                      "secretaryOfStateId": "Not_Provided_By_Data_Source"
                    },
                    "sourceDetails": {
                      "linkedNormAttorneyIdArray": [
                        "NATY11111111111111"
                      ],
                      "source": "Case_Attorney_Linked_In_Other_Cases"
                    }
                  }
                ],
                "sourceAttorneyType": "LEAD ATTORNEY"
              },
              {
                "attorneyId": "ATTYgr6c9da0318c51",
                "attorneyLawFirmArray": [
                  {
                    "attorneyLawFirmId": "ALFIgr34b0e4be27a4",
                    "firstFetchDate": "2019-05-16T06:55:54+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2019-05-16T06:55:54+00:00",
                    "name": "Niblock Law Firm",
                    "object": "AttorneyLawFirm"
                  }
                ],
                "attorneyType": {
                  "attorneyTypeId": "ATYPWXtARwvzu5HLcf",
                  "createdDate": "2022-03-28T04:59:12+00:00",
                  "name": "Lead Attorney",
                  "object": "AttorneyType"
                },
                "barNumber": null,
                "contact": {
                  "addressArray": [
                    {
                      "city": "Fayetteville",
                      "countryCode": "USA",
                      "countryName": "United States of America",
                      "firstFetchDate": "2019-05-16T06:55:54+00:00",
                      "isVisible": true,
                      "lastFetchDate": "2019-05-16T06:55:54+00:00",
                      "latitude": null,
                      "longitude": null,
                      "object": "Address",
                      "stateCode": "AR",
                      "stateName": "ARKANSAS",
                      "streetAddress1": "P.O. Drawer 818",
                      "streetAddress2": null,
                      "zip": "72702",
                      "zip4": "0818"
                    }
                  ],
                  "emailArray": [],
                  "object": "Contact",
                  "phoneNumberArray": [
                    {
                      "firstFetchDate": "2019-05-16T06:55:54+00:00",
                      "isVisible": true,
                      "lastFetchDate": "2019-05-16T06:55:54+00:00",
                      "object": "Phone",
                      "phoneNumber": "4795215510",
                      "phoneType": "DEFAULT"
                    }
                  ]
                },
                "firstFetchDate": "2019-05-16T06:55:54+00:00",
                "firstName": "George",
                "isVisible": true,
                "lastFetchDate": "2019-05-16T06:55:54+00:00",
                "lastName": "Niblock",
                "middleName": "H",
                "name": "George H. Niblock",
                "namePrefix": null,
                "nameSuffix": null,
                "object": "Attorney",
                "partyAttorneyAssociations": {
                  "nextPageAPI": null,
                  "object": "PartyAttorneyAssociations",
                  "pageNumber": 1,
                  "partyAttorneyAssociationArray": [
                    {
                      "attorneyId": "ATTYgr6c9da0318c51",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgr0f04bd0b3247",
                      "partyId": "PRTYgrf2567dcf8eca"
                    }
                  ],
                  "totalCount": 1,
                  "totalPages": 1
                },
                "partyRoleGroupIdArray": [
                  "PTYGBnjxbx6tKNfVEP"
                ],
                "partyRoleIdArray": [
                  "PTYR9F4zbteyj7ehmi"
                ],
                "possibleNormAttorneyArray": [
                  {
                    "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormJudges?pageNumber=1",
                    "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormLawFirms?pageNumber=1",
                    "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormParties?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByNormAttorney?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByOpposingNormAttorney?pageNumber=1",
                    "confidenceScore": 0.5,
                    "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111",
                    "normAttorneyId": "NATY11111111111111",
                    "normAttorneyName": "ACOSTA S FERNANDO",
                    "object": "PossibleNormAttorney",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "barId": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "lawFirm": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.6,
                      "otherPotentialNormAttorneys": 0,
                      "phone": "Not_Provided_By_Data_Source"
                    }
                  }
                ],
                "possibleNormLawFirmArray": [
                  {
                    "associatedNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormAttorney?pageNumber=1",
                    "associatedNormJudgeAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormJudges?pageNumber=1",
                    "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormParties?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByNormLawFirm?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByOpposingNormLawFirm?pageNumber=1",
                    "confidenceScore": 0.66,
                    "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111",
                    "normLawFirmId": "NLAF11111111111111",
                    "normLawFirmName": "MidLand Funding LLC",
                    "object": "PossibleNormLawFirm",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.8,
                      "otherPotentialNormLawFirms": 0,
                      "phone": "Not_Provided_By_Data_Source",
                      "secretaryOfStateId": "Not_Provided_By_Data_Source"
                    },
                    "sourceDetails": {
                      "linkedNormAttorneyIdArray": [
                        "NATY11111111111111"
                      ],
                      "source": "Case_Attorney_Linked_In_Other_Cases"
                    }
                  }
                ],
                "sourceAttorneyType": "LEAD ATTORNEY"
              }
            ],
            "nextPageAPI": "https://enterpriseapi.unicourt.com/case/CASEgr45196c84f3ff/attorneys?pageNumber=2",
            "object": "Attorneys",
            "pageNumber": 1,
            "totalCount": 322,
            "totalPages": 13
          },
          "caseDocuments": {
            "caseDocumentArray": [
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCdgeed20cf777fa",
                "childDocumentIdArray": [],
                "description": null,
                "documentFiledDate": "2013-11-25T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2019-05-16T06:58:15+00:00",
                "inLibrary": false,
                "isPreviewAvailable": false,
                "name": "5517",
                "object": "CaseDocument",
                "pages": 1,
                "parentDocumentId": null,
                "previewDocument": null,
                "price": 0.1,
                "sortOrder": null,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCdg1b8b36bf7e46",
                "childDocumentIdArray": [],
                "description": null,
                "documentFiledDate": "2009-06-22T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2019-05-16T06:58:14+00:00",
                "inLibrary": false,
                "isPreviewAvailable": false,
                "name": "5516",
                "object": "CaseDocument",
                "pages": 2,
                "parentDocumentId": null,
                "previewDocument": null,
                "price": 0.2,
                "sortOrder": null,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCdg35015362ff04",
                "childDocumentIdArray": [],
                "description": null,
                "documentFiledDate": "2009-06-17T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2019-05-16T06:58:13+00:00",
                "inLibrary": false,
                "isPreviewAvailable": false,
                "name": "5515",
                "object": "CaseDocument",
                "pages": 2,
                "parentDocumentId": null,
                "previewDocument": null,
                "price": 0.2,
                "sortOrder": null,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCdg446ec05b279f",
                "childDocumentIdArray": [],
                "description": null,
                "documentFiledDate": "2009-06-16T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2019-05-16T06:58:13+00:00",
                "inLibrary": false,
                "isPreviewAvailable": false,
                "name": "5514",
                "object": "CaseDocument",
                "pages": 2,
                "parentDocumentId": null,
                "previewDocument": null,
                "price": 0.2,
                "sortOrder": null,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCdgb7816fea39a2",
                "childDocumentIdArray": [],
                "description": null,
                "documentFiledDate": "2009-06-16T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2019-05-16T06:58:11+00:00",
                "inLibrary": false,
                "isPreviewAvailable": false,
                "name": "5513",
                "object": "CaseDocument",
                "pages": 2,
                "parentDocumentId": null,
                "previewDocument": null,
                "price": 0.2,
                "sortOrder": null,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCdge3cec7ad6fb7",
                "childDocumentIdArray": [],
                "description": null,
                "documentFiledDate": "2009-06-15T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2019-05-16T06:58:11+00:00",
                "inLibrary": false,
                "isPreviewAvailable": false,
                "name": "5512",
                "object": "CaseDocument",
                "pages": 5,
                "parentDocumentId": null,
                "previewDocument": null,
                "price": 0.5,
                "sortOrder": null,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCdg6380b723de0a",
                "childDocumentIdArray": [],
                "description": "Exhibit B",
                "documentFiledDate": "2009-06-09T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2019-05-16T06:58:10+00:00",
                "inLibrary": false,
                "isPreviewAvailable": false,
                "name": "5511 #3",
                "object": "CaseDocument",
                "pages": 2,
                "parentDocumentId": "CDOCdgf4e7bec8c122",
                "previewDocument": null,
                "price": 0.2,
                "sortOrder": null,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCdg705274fe6399",
                "childDocumentIdArray": [],
                "description": "Exhibit A",
                "documentFiledDate": "2009-06-09T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2019-05-16T06:58:10+00:00",
                "inLibrary": false,
                "isPreviewAvailable": false,
                "name": "5511 #2",
                "object": "CaseDocument",
                "pages": 3,
                "parentDocumentId": "CDOCdgf4e7bec8c122",
                "previewDocument": null,
                "price": 0.3,
                "sortOrder": null,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCdgf4e7bec8c122",
                "childDocumentIdArray": [
                  "CDOCdg705274fe6399",
                  "CDOCdg6380b723de0a"
                ],
                "description": null,
                "documentFiledDate": "2009-06-09T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2019-05-16T06:58:10+00:00",
                "inLibrary": false,
                "isPreviewAvailable": false,
                "name": "5511",
                "object": "CaseDocument",
                "pages": 4,
                "parentDocumentId": null,
                "previewDocument": null,
                "price": 0.4,
                "sortOrder": null,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCdge8bcc6eae456",
                "childDocumentIdArray": [],
                "description": "Service List",
                "documentFiledDate": "2009-06-05T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2019-05-16T06:58:09+00:00",
                "inLibrary": false,
                "isPreviewAvailable": false,
                "name": "5510 #4",
                "object": "CaseDocument",
                "pages": 59,
                "parentDocumentId": "CDOCdg921bcc2df3f7",
                "previewDocument": null,
                "price": 3,
                "sortOrder": null,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCdgdfc8adf21609",
                "childDocumentIdArray": [],
                "description": "Exhibit Exhibit B",
                "documentFiledDate": "2009-06-05T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2019-05-16T06:58:09+00:00",
                "inLibrary": false,
                "isPreviewAvailable": false,
                "name": "5510 #3",
                "object": "CaseDocument",
                "pages": 1,
                "parentDocumentId": "CDOCdg921bcc2df3f7",
                "previewDocument": null,
                "price": 0.1,
                "sortOrder": null,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCdgebafe0e16c02",
                "childDocumentIdArray": [],
                "description": "Exhibit Exhibit A",
                "documentFiledDate": "2009-06-05T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2019-05-16T06:58:09+00:00",
                "inLibrary": false,
                "isPreviewAvailable": false,
                "name": "5510 #2",
                "object": "CaseDocument",
                "pages": 2,
                "parentDocumentId": "CDOCdg921bcc2df3f7",
                "previewDocument": null,
                "price": 0.2,
                "sortOrder": null,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCdg921bcc2df3f7",
                "childDocumentIdArray": [
                  "CDOCdgebafe0e16c02",
                  "CDOCdgdfc8adf21609",
                  "CDOCdge8bcc6eae456"
                ],
                "description": null,
                "documentFiledDate": "2009-06-05T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2019-05-16T06:58:09+00:00",
                "inLibrary": false,
                "isPreviewAvailable": false,
                "name": "5510",
                "object": "CaseDocument",
                "pages": 8,
                "parentDocumentId": null,
                "previewDocument": null,
                "price": 0.8,
                "sortOrder": null,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCdgf751071c2b67",
                "childDocumentIdArray": [],
                "description": "Service List",
                "documentFiledDate": "2009-06-05T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2019-05-16T06:58:09+00:00",
                "inLibrary": false,
                "isPreviewAvailable": false,
                "name": "5509 #2",
                "object": "CaseDocument",
                "pages": 59,
                "parentDocumentId": "CDOCdgc751e0adcbe1",
                "previewDocument": null,
                "price": 3,
                "sortOrder": null,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCdgc751e0adcbe1",
                "childDocumentIdArray": [
                  "CDOCdgf751071c2b67"
                ],
                "description": null,
                "documentFiledDate": "2009-06-05T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2019-05-16T06:58:09+00:00",
                "inLibrary": false,
                "isPreviewAvailable": false,
                "name": "5509",
                "object": "CaseDocument",
                "pages": 4,
                "parentDocumentId": null,
                "previewDocument": null,
                "price": 0.4,
                "sortOrder": null,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCdgebbcfc06824e",
                "childDocumentIdArray": [],
                "description": "Service List",
                "documentFiledDate": "2009-06-05T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2019-05-16T06:58:08+00:00",
                "inLibrary": false,
                "isPreviewAvailable": false,
                "name": "5508 #2",
                "object": "CaseDocument",
                "pages": 59,
                "parentDocumentId": "CDOCdg72af0d0a5892",
                "previewDocument": null,
                "price": 3,
                "sortOrder": null,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCdg72af0d0a5892",
                "childDocumentIdArray": [
                  "CDOCdgebbcfc06824e"
                ],
                "description": null,
                "documentFiledDate": "2009-06-05T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2019-05-16T06:58:08+00:00",
                "inLibrary": false,
                "isPreviewAvailable": false,
                "name": "5508",
                "object": "CaseDocument",
                "pages": 6,
                "parentDocumentId": null,
                "previewDocument": null,
                "price": 0.6,
                "sortOrder": null,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCdge41c39a38817",
                "childDocumentIdArray": [],
                "description": "Service List",
                "documentFiledDate": "2009-06-05T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2019-05-16T06:58:08+00:00",
                "inLibrary": false,
                "isPreviewAvailable": false,
                "name": "5507 #2",
                "object": "CaseDocument",
                "pages": 59,
                "parentDocumentId": "CDOCdgbec2e1ab76c0",
                "previewDocument": null,
                "price": 3,
                "sortOrder": null,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCdgbec2e1ab76c0",
                "childDocumentIdArray": [
                  "CDOCdge41c39a38817"
                ],
                "description": null,
                "documentFiledDate": "2009-06-05T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2019-05-16T06:58:08+00:00",
                "inLibrary": false,
                "isPreviewAvailable": false,
                "name": "5507",
                "object": "CaseDocument",
                "pages": 6,
                "parentDocumentId": null,
                "previewDocument": null,
                "price": 0.6,
                "sortOrder": null,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCdgaaae8c7a0b59",
                "childDocumentIdArray": [],
                "description": "Service List",
                "documentFiledDate": "2009-06-05T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2019-05-16T06:58:07+00:00",
                "inLibrary": false,
                "isPreviewAvailable": false,
                "name": "5506 #2",
                "object": "CaseDocument",
                "pages": 59,
                "parentDocumentId": "CDOCdg7f323bd49d23",
                "previewDocument": null,
                "price": 3,
                "sortOrder": null,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCdg7f323bd49d23",
                "childDocumentIdArray": [
                  "CDOCdgaaae8c7a0b59"
                ],
                "description": null,
                "documentFiledDate": "2009-06-05T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2019-05-16T06:58:07+00:00",
                "inLibrary": false,
                "isPreviewAvailable": false,
                "name": "5506",
                "object": "CaseDocument",
                "pages": 8,
                "parentDocumentId": null,
                "previewDocument": null,
                "price": 0.8,
                "sortOrder": null,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCdg67d0a9252f8a",
                "childDocumentIdArray": [],
                "description": "Service List",
                "documentFiledDate": "2009-06-05T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2019-05-16T06:58:06+00:00",
                "inLibrary": false,
                "isPreviewAvailable": false,
                "name": "5505 #2",
                "object": "CaseDocument",
                "pages": 59,
                "parentDocumentId": "CDOCdgacd4967f095a",
                "previewDocument": null,
                "price": 3,
                "sortOrder": null,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCdgacd4967f095a",
                "childDocumentIdArray": [
                  "CDOCdg67d0a9252f8a"
                ],
                "description": null,
                "documentFiledDate": "2009-06-05T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2019-05-16T06:58:06+00:00",
                "inLibrary": false,
                "isPreviewAvailable": false,
                "name": "5505",
                "object": "CaseDocument",
                "pages": 6,
                "parentDocumentId": null,
                "previewDocument": null,
                "price": 0.6,
                "sortOrder": null,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCdg6c47dc7151f7",
                "childDocumentIdArray": [],
                "description": null,
                "documentFiledDate": "2009-06-04T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2019-05-16T06:58:04+00:00",
                "inLibrary": false,
                "isPreviewAvailable": false,
                "name": "5503",
                "object": "CaseDocument",
                "pages": 1,
                "parentDocumentId": null,
                "previewDocument": null,
                "price": 0.1,
                "sortOrder": null,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCdg406ab500e655",
                "childDocumentIdArray": [],
                "description": null,
                "documentFiledDate": "2009-06-03T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2019-05-16T06:58:04+00:00",
                "inLibrary": false,
                "isPreviewAvailable": false,
                "name": "5504",
                "object": "CaseDocument",
                "pages": 2,
                "parentDocumentId": null,
                "previewDocument": null,
                "price": 0.2,
                "sortOrder": null,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCdga0532e7b5ec9",
                "childDocumentIdArray": [],
                "description": null,
                "documentFiledDate": "2009-05-28T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2019-05-16T06:58:03+00:00",
                "inLibrary": false,
                "isPreviewAvailable": false,
                "name": "5502",
                "object": "CaseDocument",
                "pages": 1,
                "parentDocumentId": null,
                "previewDocument": null,
                "price": 0.1,
                "sortOrder": null,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCdgf35362b45ca8",
                "childDocumentIdArray": [],
                "description": null,
                "documentFiledDate": "2009-05-26T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2019-05-16T06:58:01+00:00",
                "inLibrary": false,
                "isPreviewAvailable": false,
                "name": "5500",
                "object": "CaseDocument",
                "pages": 1,
                "parentDocumentId": null,
                "previewDocument": null,
                "price": 0.1,
                "sortOrder": null,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCdg0583d828bf99",
                "childDocumentIdArray": [],
                "description": null,
                "documentFiledDate": "2009-05-15T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2019-05-16T06:58:01+00:00",
                "inLibrary": false,
                "isPreviewAvailable": false,
                "name": "5498",
                "object": "CaseDocument",
                "pages": 3,
                "parentDocumentId": null,
                "previewDocument": null,
                "price": 0.3,
                "sortOrder": null,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCdg757f538ba251",
                "childDocumentIdArray": [],
                "description": null,
                "documentFiledDate": "2009-05-04T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2019-05-16T06:58:00+00:00",
                "inLibrary": false,
                "isPreviewAvailable": false,
                "name": "5497",
                "object": "CaseDocument",
                "pages": 2,
                "parentDocumentId": null,
                "previewDocument": null,
                "price": 0.2,
                "sortOrder": null,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCdg38fd3b4728fd",
                "childDocumentIdArray": [],
                "description": null,
                "documentFiledDate": "2009-05-04T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2019-05-16T06:57:59+00:00",
                "inLibrary": false,
                "isPreviewAvailable": false,
                "name": "5496",
                "object": "CaseDocument",
                "pages": 2,
                "parentDocumentId": null,
                "previewDocument": null,
                "price": 0.2,
                "sortOrder": null,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCdg3f5fd1445c2d",
                "childDocumentIdArray": [],
                "description": "Exhibit A",
                "documentFiledDate": "2009-04-30T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2019-05-16T06:57:58+00:00",
                "inLibrary": false,
                "isPreviewAvailable": false,
                "name": "5495 #2",
                "object": "CaseDocument",
                "pages": 2,
                "parentDocumentId": "CDOCdgc9afa3233b29",
                "previewDocument": null,
                "price": 0.2,
                "sortOrder": null,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCdgc9afa3233b29",
                "childDocumentIdArray": [
                  "CDOCdg3f5fd1445c2d"
                ],
                "description": null,
                "documentFiledDate": "2009-04-30T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2019-05-16T06:57:58+00:00",
                "inLibrary": false,
                "isPreviewAvailable": false,
                "name": "5495",
                "object": "CaseDocument",
                "pages": 5,
                "parentDocumentId": null,
                "previewDocument": null,
                "price": 0.5,
                "sortOrder": null,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCdgf62b7cf445eb",
                "childDocumentIdArray": [],
                "description": null,
                "documentFiledDate": "2009-04-28T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2019-05-16T06:57:57+00:00",
                "inLibrary": false,
                "isPreviewAvailable": false,
                "name": "5494",
                "object": "CaseDocument",
                "pages": 2,
                "parentDocumentId": null,
                "previewDocument": null,
                "price": 0.2,
                "sortOrder": null,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCdg4b45cd25f7d8",
                "childDocumentIdArray": [],
                "description": null,
                "documentFiledDate": "2009-04-22T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2019-05-16T06:57:57+00:00",
                "inLibrary": false,
                "isPreviewAvailable": false,
                "name": "5493",
                "object": "CaseDocument",
                "pages": 14,
                "parentDocumentId": null,
                "previewDocument": null,
                "price": 1.4,
                "sortOrder": null,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCdg97c5a94cfb25",
                "childDocumentIdArray": [],
                "description": null,
                "documentFiledDate": "2009-04-22T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2019-05-16T06:57:56+00:00",
                "inLibrary": false,
                "isPreviewAvailable": false,
                "name": "5492",
                "object": "CaseDocument",
                "pages": 1,
                "parentDocumentId": null,
                "previewDocument": null,
                "price": 0.1,
                "sortOrder": null,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCdg745e37dadb9e",
                "childDocumentIdArray": [],
                "description": "Exhibit C",
                "documentFiledDate": "2009-04-17T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2019-05-16T06:57:54+00:00",
                "inLibrary": false,
                "isPreviewAvailable": false,
                "name": "5491 #66",
                "object": "CaseDocument",
                "pages": 3,
                "parentDocumentId": "CDOCdg36297d43e46d",
                "previewDocument": null,
                "price": 0.3,
                "sortOrder": null,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCdg1b85bb97a5b7",
                "childDocumentIdArray": [],
                "description": "Exhibit B7",
                "documentFiledDate": "2009-04-17T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2019-05-16T06:57:54+00:00",
                "inLibrary": false,
                "isPreviewAvailable": false,
                "name": "5491 #65",
                "object": "CaseDocument",
                "pages": 4,
                "parentDocumentId": "CDOCdg36297d43e46d",
                "previewDocument": null,
                "price": 0.4,
                "sortOrder": null,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCdg2a7c308f1a2d",
                "childDocumentIdArray": [],
                "description": "Exhibit B6",
                "documentFiledDate": "2009-04-17T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2019-05-16T06:57:54+00:00",
                "inLibrary": false,
                "isPreviewAvailable": false,
                "name": "5491 #64",
                "object": "CaseDocument",
                "pages": 12,
                "parentDocumentId": "CDOCdg36297d43e46d",
                "previewDocument": null,
                "price": 1.2,
                "sortOrder": null,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCdg3267443ad742",
                "childDocumentIdArray": [],
                "description": "Exhibit B5",
                "documentFiledDate": "2009-04-17T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2019-05-16T06:57:54+00:00",
                "inLibrary": false,
                "isPreviewAvailable": false,
                "name": "5491 #63",
                "object": "CaseDocument",
                "pages": 3,
                "parentDocumentId": "CDOCdg36297d43e46d",
                "previewDocument": null,
                "price": 0.3,
                "sortOrder": null,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCdg36207cb92f99",
                "childDocumentIdArray": [],
                "description": "Errata B4 part 25",
                "documentFiledDate": "2009-04-17T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2019-05-16T06:57:54+00:00",
                "inLibrary": false,
                "isPreviewAvailable": false,
                "name": "5491 #62",
                "object": "CaseDocument",
                "pages": 3,
                "parentDocumentId": "CDOCdg36297d43e46d",
                "previewDocument": null,
                "price": 0.3,
                "sortOrder": null,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCdg3642cc9bc329",
                "childDocumentIdArray": [],
                "description": "Exhibit B4 part 24",
                "documentFiledDate": "2009-04-17T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2019-05-16T06:57:54+00:00",
                "inLibrary": false,
                "isPreviewAvailable": false,
                "name": "5491 #61",
                "object": "CaseDocument",
                "pages": 2,
                "parentDocumentId": "CDOCdg36297d43e46d",
                "previewDocument": null,
                "price": 0.2,
                "sortOrder": null,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCdgace900374a30",
                "childDocumentIdArray": [],
                "description": "Exhibit B4 part 23",
                "documentFiledDate": "2009-04-17T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2019-05-16T06:57:54+00:00",
                "inLibrary": false,
                "isPreviewAvailable": false,
                "name": "5491 #60",
                "object": "CaseDocument",
                "pages": 3,
                "parentDocumentId": "CDOCdg36297d43e46d",
                "previewDocument": null,
                "price": 0.3,
                "sortOrder": null,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCdgf280bf06556b",
                "childDocumentIdArray": [],
                "description": "Exhibit B4 part 22",
                "documentFiledDate": "2009-04-17T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2019-05-16T06:57:54+00:00",
                "inLibrary": false,
                "isPreviewAvailable": false,
                "name": "5491 #59",
                "object": "CaseDocument",
                "pages": 28,
                "parentDocumentId": "CDOCdg36297d43e46d",
                "previewDocument": null,
                "price": 2.8,
                "sortOrder": null,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCdgaf170c6358a7",
                "childDocumentIdArray": [],
                "description": "Exhibit B4 part 21",
                "documentFiledDate": "2009-04-17T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2019-05-16T06:57:54+00:00",
                "inLibrary": false,
                "isPreviewAvailable": false,
                "name": "5491 #58",
                "object": "CaseDocument",
                "pages": 2,
                "parentDocumentId": "CDOCdg36297d43e46d",
                "previewDocument": null,
                "price": 0.2,
                "sortOrder": null,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCdgf8f2aae9b76b",
                "childDocumentIdArray": [],
                "description": "Errata B4 part 20",
                "documentFiledDate": "2009-04-17T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2019-05-16T06:57:54+00:00",
                "inLibrary": false,
                "isPreviewAvailable": false,
                "name": "5491 #57",
                "object": "CaseDocument",
                "pages": 4,
                "parentDocumentId": "CDOCdg36297d43e46d",
                "previewDocument": null,
                "price": 0.4,
                "sortOrder": null,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCdg80358b9320aa",
                "childDocumentIdArray": [],
                "description": "Exhibit B4 part 19",
                "documentFiledDate": "2009-04-17T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2019-05-16T06:57:54+00:00",
                "inLibrary": false,
                "isPreviewAvailable": false,
                "name": "5491 #56",
                "object": "CaseDocument",
                "pages": 13,
                "parentDocumentId": "CDOCdg36297d43e46d",
                "previewDocument": null,
                "price": 1.3,
                "sortOrder": null,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCdgf50cf560f06e",
                "childDocumentIdArray": [],
                "description": "Exhibit B4 part 18",
                "documentFiledDate": "2009-04-17T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2019-05-16T06:57:54+00:00",
                "inLibrary": false,
                "isPreviewAvailable": false,
                "name": "5491 #55",
                "object": "CaseDocument",
                "pages": 3,
                "parentDocumentId": "CDOCdg36297d43e46d",
                "previewDocument": null,
                "price": 0.3,
                "sortOrder": null,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCdg257506ff4e50",
                "childDocumentIdArray": [],
                "description": "Exhibit B4 part 17",
                "documentFiledDate": "2009-04-17T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2019-05-16T06:57:54+00:00",
                "inLibrary": false,
                "isPreviewAvailable": false,
                "name": "5491 #54",
                "object": "CaseDocument",
                "pages": 4,
                "parentDocumentId": "CDOCdg36297d43e46d",
                "previewDocument": null,
                "price": 0.4,
                "sortOrder": null,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCdg596900b8c5fe",
                "childDocumentIdArray": [],
                "description": "Exhibit B4 part 16",
                "documentFiledDate": "2009-04-17T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2019-05-16T06:57:54+00:00",
                "inLibrary": false,
                "isPreviewAvailable": false,
                "name": "5491 #53",
                "object": "CaseDocument",
                "pages": 70,
                "parentDocumentId": "CDOCdg36297d43e46d",
                "previewDocument": null,
                "price": 3,
                "sortOrder": null,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCdg1d15455db5f6",
                "childDocumentIdArray": [],
                "description": "Exhibit B4 part 15",
                "documentFiledDate": "2009-04-17T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2019-05-16T06:57:54+00:00",
                "inLibrary": false,
                "isPreviewAvailable": false,
                "name": "5491 #52",
                "object": "CaseDocument",
                "pages": 6,
                "parentDocumentId": "CDOCdg36297d43e46d",
                "previewDocument": null,
                "price": 0.6,
                "sortOrder": null,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCdge591c2b9645b",
                "childDocumentIdArray": [],
                "description": "Exhibit B4 part 14",
                "documentFiledDate": "2009-04-17T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2019-05-16T06:57:54+00:00",
                "inLibrary": false,
                "isPreviewAvailable": false,
                "name": "5491 #51",
                "object": "CaseDocument",
                "pages": 3,
                "parentDocumentId": "CDOCdg36297d43e46d",
                "previewDocument": null,
                "price": 0.3,
                "sortOrder": null,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCdga4ee4c8a7f51",
                "childDocumentIdArray": [],
                "description": "Exhibit B4 part 13",
                "documentFiledDate": "2009-04-17T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2019-05-16T06:57:54+00:00",
                "inLibrary": false,
                "isPreviewAvailable": false,
                "name": "5491 #50",
                "object": "CaseDocument",
                "pages": 3,
                "parentDocumentId": "CDOCdg36297d43e46d",
                "previewDocument": null,
                "price": 0.3,
                "sortOrder": null,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCdg31b70d41dc19",
                "childDocumentIdArray": [],
                "description": "Exhibit B4 part 12",
                "documentFiledDate": "2009-04-17T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2019-05-16T06:57:54+00:00",
                "inLibrary": false,
                "isPreviewAvailable": false,
                "name": "5491 #49",
                "object": "CaseDocument",
                "pages": 14,
                "parentDocumentId": "CDOCdg36297d43e46d",
                "previewDocument": null,
                "price": 1.4,
                "sortOrder": null,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCdgffa6cb503bdb",
                "childDocumentIdArray": [],
                "description": "Exhibit B4 part 11",
                "documentFiledDate": "2009-04-17T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2019-05-16T06:57:54+00:00",
                "inLibrary": false,
                "isPreviewAvailable": false,
                "name": "5491 #48",
                "object": "CaseDocument",
                "pages": 3,
                "parentDocumentId": "CDOCdg36297d43e46d",
                "previewDocument": null,
                "price": 0.3,
                "sortOrder": null,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCdgce9c55fc1279",
                "childDocumentIdArray": [],
                "description": "Exhibit B4 part 10",
                "documentFiledDate": "2009-04-17T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2019-05-16T06:57:54+00:00",
                "inLibrary": false,
                "isPreviewAvailable": false,
                "name": "5491 #47",
                "object": "CaseDocument",
                "pages": 91,
                "parentDocumentId": "CDOCdg36297d43e46d",
                "previewDocument": null,
                "price": 3,
                "sortOrder": null,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCdg06f939808a0e",
                "childDocumentIdArray": [],
                "description": "Exhibit B4 part 9",
                "documentFiledDate": "2009-04-17T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2019-05-16T06:57:54+00:00",
                "inLibrary": false,
                "isPreviewAvailable": false,
                "name": "5491 #46",
                "object": "CaseDocument",
                "pages": 3,
                "parentDocumentId": "CDOCdg36297d43e46d",
                "previewDocument": null,
                "price": 0.3,
                "sortOrder": null,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCdge99060f8b62b",
                "childDocumentIdArray": [],
                "description": "Exhibit B4 part 8",
                "documentFiledDate": "2009-04-17T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2019-05-16T06:57:54+00:00",
                "inLibrary": false,
                "isPreviewAvailable": false,
                "name": "5491 #45",
                "object": "CaseDocument",
                "pages": 106,
                "parentDocumentId": "CDOCdg36297d43e46d",
                "previewDocument": null,
                "price": 3,
                "sortOrder": null,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCdgb8af8c63d5ba",
                "childDocumentIdArray": [],
                "description": "Exhibit B4 part 7",
                "documentFiledDate": "2009-04-17T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2019-05-16T06:57:54+00:00",
                "inLibrary": false,
                "isPreviewAvailable": false,
                "name": "5491 #44",
                "object": "CaseDocument",
                "pages": 9,
                "parentDocumentId": "CDOCdg36297d43e46d",
                "previewDocument": null,
                "price": 0.9,
                "sortOrder": null,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCdg7c017720171e",
                "childDocumentIdArray": [],
                "description": "Errata B4 part 6",
                "documentFiledDate": "2009-04-17T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2019-05-16T06:57:54+00:00",
                "inLibrary": false,
                "isPreviewAvailable": false,
                "name": "5491 #43",
                "object": "CaseDocument",
                "pages": 50,
                "parentDocumentId": "CDOCdg36297d43e46d",
                "previewDocument": null,
                "price": 3,
                "sortOrder": null,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCdg6d20d8c5e21b",
                "childDocumentIdArray": [],
                "description": "Exhibit B4 part 5",
                "documentFiledDate": "2009-04-17T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2019-05-16T06:57:54+00:00",
                "inLibrary": false,
                "isPreviewAvailable": false,
                "name": "5491 #42",
                "object": "CaseDocument",
                "pages": 4,
                "parentDocumentId": "CDOCdg36297d43e46d",
                "previewDocument": null,
                "price": 0.4,
                "sortOrder": null,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCdgb28d85fb7fa9",
                "childDocumentIdArray": [],
                "description": "Exhibit B4 part 4",
                "documentFiledDate": "2009-04-17T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2019-05-16T06:57:54+00:00",
                "inLibrary": false,
                "isPreviewAvailable": false,
                "name": "5491 #41",
                "object": "CaseDocument",
                "pages": 5,
                "parentDocumentId": "CDOCdg36297d43e46d",
                "previewDocument": null,
                "price": 0.5,
                "sortOrder": null,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCdg0de971b5f2f3",
                "childDocumentIdArray": [],
                "description": "Exhibit B4 part 3",
                "documentFiledDate": "2009-04-17T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2019-05-16T06:57:54+00:00",
                "inLibrary": false,
                "isPreviewAvailable": false,
                "name": "5491 #40",
                "object": "CaseDocument",
                "pages": 14,
                "parentDocumentId": "CDOCdg36297d43e46d",
                "previewDocument": null,
                "price": 1.4,
                "sortOrder": null,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCdg24d4c6fe67b0",
                "childDocumentIdArray": [],
                "description": "Exhibit B4 part 2",
                "documentFiledDate": "2009-04-17T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2019-05-16T06:57:54+00:00",
                "inLibrary": false,
                "isPreviewAvailable": false,
                "name": "5491 #39",
                "object": "CaseDocument",
                "pages": 2,
                "parentDocumentId": "CDOCdg36297d43e46d",
                "previewDocument": null,
                "price": 0.2,
                "sortOrder": null,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCdgb8c54e576881",
                "childDocumentIdArray": [],
                "description": "Exhibit B4 part 1",
                "documentFiledDate": "2009-04-17T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2019-05-16T06:57:54+00:00",
                "inLibrary": false,
                "isPreviewAvailable": false,
                "name": "5491 #38",
                "object": "CaseDocument",
                "pages": 30,
                "parentDocumentId": "CDOCdg36297d43e46d",
                "previewDocument": null,
                "price": 3,
                "sortOrder": null,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCdgbc8da08986ee",
                "childDocumentIdArray": [],
                "description": "Exhibit B4",
                "documentFiledDate": "2009-04-17T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2019-05-16T06:57:54+00:00",
                "inLibrary": false,
                "isPreviewAvailable": false,
                "name": "5491 #37",
                "object": "CaseDocument",
                "pages": 10,
                "parentDocumentId": "CDOCdg36297d43e46d",
                "previewDocument": null,
                "price": 1,
                "sortOrder": null,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCdgef476c9e5624",
                "childDocumentIdArray": [],
                "description": "Exhibit B3",
                "documentFiledDate": "2009-04-17T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2019-05-16T06:57:54+00:00",
                "inLibrary": false,
                "isPreviewAvailable": false,
                "name": "5491 #36",
                "object": "CaseDocument",
                "pages": 30,
                "parentDocumentId": "CDOCdg36297d43e46d",
                "previewDocument": null,
                "price": 3,
                "sortOrder": null,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCdg022c43e206e9",
                "childDocumentIdArray": [],
                "description": "Exhibit B2",
                "documentFiledDate": "2009-04-17T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2019-05-16T06:57:54+00:00",
                "inLibrary": false,
                "isPreviewAvailable": false,
                "name": "5491 #35",
                "object": "CaseDocument",
                "pages": 2,
                "parentDocumentId": "CDOCdg36297d43e46d",
                "previewDocument": null,
                "price": 0.2,
                "sortOrder": null,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCdg2874b6b5c0e0",
                "childDocumentIdArray": [],
                "description": "Exhibit B1",
                "documentFiledDate": "2009-04-17T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2019-05-16T06:57:54+00:00",
                "inLibrary": false,
                "isPreviewAvailable": false,
                "name": "5491 #34",
                "object": "CaseDocument",
                "pages": 3,
                "parentDocumentId": "CDOCdg36297d43e46d",
                "previewDocument": null,
                "price": 0.3,
                "sortOrder": null,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCdge4397921fece",
                "childDocumentIdArray": [],
                "description": "Exhibit B",
                "documentFiledDate": "2009-04-17T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2019-05-16T06:57:54+00:00",
                "inLibrary": false,
                "isPreviewAvailable": false,
                "name": "5491 #33",
                "object": "CaseDocument",
                "pages": 9,
                "parentDocumentId": "CDOCdg36297d43e46d",
                "previewDocument": null,
                "price": 0.9,
                "sortOrder": null,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCdg1e7991ad0229",
                "childDocumentIdArray": [],
                "description": "Exhibit A5",
                "documentFiledDate": "2009-04-17T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2019-05-16T06:57:54+00:00",
                "inLibrary": false,
                "isPreviewAvailable": false,
                "name": "5491 #32",
                "object": "CaseDocument",
                "pages": 4,
                "parentDocumentId": "CDOCdg36297d43e46d",
                "previewDocument": null,
                "price": 0.4,
                "sortOrder": null,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCdg58f618bad58c",
                "childDocumentIdArray": [],
                "description": "Exhibit A4",
                "documentFiledDate": "2009-04-17T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2019-05-16T06:57:54+00:00",
                "inLibrary": false,
                "isPreviewAvailable": false,
                "name": "5491 #31",
                "object": "CaseDocument",
                "pages": 12,
                "parentDocumentId": "CDOCdg36297d43e46d",
                "previewDocument": null,
                "price": 1.2,
                "sortOrder": null,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCdg0de15dcd89f2",
                "childDocumentIdArray": [],
                "description": "Exhibit A3",
                "documentFiledDate": "2009-04-17T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2019-05-16T06:57:54+00:00",
                "inLibrary": false,
                "isPreviewAvailable": false,
                "name": "5491 #30",
                "object": "CaseDocument",
                "pages": 3,
                "parentDocumentId": "CDOCdg36297d43e46d",
                "previewDocument": null,
                "price": 0.3,
                "sortOrder": null,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCdg9ca6d257d50c",
                "childDocumentIdArray": [],
                "description": "Exhibit A2 part 25",
                "documentFiledDate": "2009-04-17T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2019-05-16T06:57:54+00:00",
                "inLibrary": false,
                "isPreviewAvailable": false,
                "name": "5491 #29",
                "object": "CaseDocument",
                "pages": 3,
                "parentDocumentId": "CDOCdg36297d43e46d",
                "previewDocument": null,
                "price": 0.3,
                "sortOrder": null,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCdg33bb412e397d",
                "childDocumentIdArray": [],
                "description": "Exhibit A2 part 24",
                "documentFiledDate": "2009-04-17T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2019-05-16T06:57:54+00:00",
                "inLibrary": false,
                "isPreviewAvailable": false,
                "name": "5491 #28",
                "object": "CaseDocument",
                "pages": 2,
                "parentDocumentId": "CDOCdg36297d43e46d",
                "previewDocument": null,
                "price": 0.2,
                "sortOrder": null,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCdg7de79bd32cc7",
                "childDocumentIdArray": [],
                "description": "Exhibit A2 part 23",
                "documentFiledDate": "2009-04-17T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2019-05-16T06:57:54+00:00",
                "inLibrary": false,
                "isPreviewAvailable": false,
                "name": "5491 #27",
                "object": "CaseDocument",
                "pages": 3,
                "parentDocumentId": "CDOCdg36297d43e46d",
                "previewDocument": null,
                "price": 0.3,
                "sortOrder": null,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCdgbf56a1a43659",
                "childDocumentIdArray": [],
                "description": "Exhibit A2 part 22",
                "documentFiledDate": "2009-04-17T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2019-05-16T06:57:54+00:00",
                "inLibrary": false,
                "isPreviewAvailable": false,
                "name": "5491 #26",
                "object": "CaseDocument",
                "pages": 28,
                "parentDocumentId": "CDOCdg36297d43e46d",
                "previewDocument": null,
                "price": 2.8,
                "sortOrder": null,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCdg3d188e756cd6",
                "childDocumentIdArray": [],
                "description": "Exhibit A2 part 21",
                "documentFiledDate": "2009-04-17T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2019-05-16T06:57:54+00:00",
                "inLibrary": false,
                "isPreviewAvailable": false,
                "name": "5491 #25",
                "object": "CaseDocument",
                "pages": 2,
                "parentDocumentId": "CDOCdg36297d43e46d",
                "previewDocument": null,
                "price": 0.2,
                "sortOrder": null,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCdg0c562aa60aa5",
                "childDocumentIdArray": [],
                "description": "Exhibit A2 part 20",
                "documentFiledDate": "2009-04-17T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2019-05-16T06:57:54+00:00",
                "inLibrary": false,
                "isPreviewAvailable": false,
                "name": "5491 #24",
                "object": "CaseDocument",
                "pages": 4,
                "parentDocumentId": "CDOCdg36297d43e46d",
                "previewDocument": null,
                "price": 0.4,
                "sortOrder": null,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCdgeaf3c16d54ef",
                "childDocumentIdArray": [],
                "description": "Exhibit A2 part 19",
                "documentFiledDate": "2009-04-17T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2019-05-16T06:57:54+00:00",
                "inLibrary": false,
                "isPreviewAvailable": false,
                "name": "5491 #23",
                "object": "CaseDocument",
                "pages": 13,
                "parentDocumentId": "CDOCdg36297d43e46d",
                "previewDocument": null,
                "price": 1.3,
                "sortOrder": null,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCdg670595dbae9b",
                "childDocumentIdArray": [],
                "description": "Exhibit A2 part 18",
                "documentFiledDate": "2009-04-17T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2019-05-16T06:57:54+00:00",
                "inLibrary": false,
                "isPreviewAvailable": false,
                "name": "5491 #22",
                "object": "CaseDocument",
                "pages": 3,
                "parentDocumentId": "CDOCdg36297d43e46d",
                "previewDocument": null,
                "price": 0.3,
                "sortOrder": null,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCdg96a3fac48c34",
                "childDocumentIdArray": [],
                "description": "Exhibit A2 part 17",
                "documentFiledDate": "2009-04-17T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2019-05-16T06:57:54+00:00",
                "inLibrary": false,
                "isPreviewAvailable": false,
                "name": "5491 #21",
                "object": "CaseDocument",
                "pages": 4,
                "parentDocumentId": "CDOCdg36297d43e46d",
                "previewDocument": null,
                "price": 0.4,
                "sortOrder": null,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCdg141940f03a4d",
                "childDocumentIdArray": [],
                "description": "Exhibit A2 part 16",
                "documentFiledDate": "2009-04-17T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2019-05-16T06:57:54+00:00",
                "inLibrary": false,
                "isPreviewAvailable": false,
                "name": "5491 #20",
                "object": "CaseDocument",
                "pages": 70,
                "parentDocumentId": "CDOCdg36297d43e46d",
                "previewDocument": null,
                "price": 3,
                "sortOrder": null,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCdg7803eb718c30",
                "childDocumentIdArray": [],
                "description": "Exhibit A2 part 15",
                "documentFiledDate": "2009-04-17T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2019-05-16T06:57:54+00:00",
                "inLibrary": false,
                "isPreviewAvailable": false,
                "name": "5491 #19",
                "object": "CaseDocument",
                "pages": 6,
                "parentDocumentId": "CDOCdg36297d43e46d",
                "previewDocument": null,
                "price": 0.6,
                "sortOrder": null,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCdg9f6fc865775d",
                "childDocumentIdArray": [],
                "description": "Exhibit A2 part 14",
                "documentFiledDate": "2009-04-17T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2019-05-16T06:57:54+00:00",
                "inLibrary": false,
                "isPreviewAvailable": false,
                "name": "5491 #18",
                "object": "CaseDocument",
                "pages": 3,
                "parentDocumentId": "CDOCdg36297d43e46d",
                "previewDocument": null,
                "price": 0.3,
                "sortOrder": null,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCdg9022dacfe175",
                "childDocumentIdArray": [],
                "description": "Exhibit A2 part 13",
                "documentFiledDate": "2009-04-17T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2019-05-16T06:57:54+00:00",
                "inLibrary": false,
                "isPreviewAvailable": false,
                "name": "5491 #17",
                "object": "CaseDocument",
                "pages": 3,
                "parentDocumentId": "CDOCdg36297d43e46d",
                "previewDocument": null,
                "price": 0.3,
                "sortOrder": null,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCdgda4b18fee4c2",
                "childDocumentIdArray": [],
                "description": "Exhibit A2 part 12",
                "documentFiledDate": "2009-04-17T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2019-05-16T06:57:54+00:00",
                "inLibrary": false,
                "isPreviewAvailable": false,
                "name": "5491 #16",
                "object": "CaseDocument",
                "pages": 14,
                "parentDocumentId": "CDOCdg36297d43e46d",
                "previewDocument": null,
                "price": 1.4,
                "sortOrder": null,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCdgdb3e667a6793",
                "childDocumentIdArray": [],
                "description": "Exhibit A2 part 11",
                "documentFiledDate": "2009-04-17T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2019-05-16T06:57:54+00:00",
                "inLibrary": false,
                "isPreviewAvailable": false,
                "name": "5491 #15",
                "object": "CaseDocument",
                "pages": 3,
                "parentDocumentId": "CDOCdg36297d43e46d",
                "previewDocument": null,
                "price": 0.3,
                "sortOrder": null,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCdg41b4ac0ac78e",
                "childDocumentIdArray": [],
                "description": "Exhibit A2 part 10",
                "documentFiledDate": "2009-04-17T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2019-05-16T06:57:54+00:00",
                "inLibrary": false,
                "isPreviewAvailable": false,
                "name": "5491 #14",
                "object": "CaseDocument",
                "pages": 91,
                "parentDocumentId": "CDOCdg36297d43e46d",
                "previewDocument": null,
                "price": 3,
                "sortOrder": null,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCdg8eefab5f1a49",
                "childDocumentIdArray": [],
                "description": "Exhibit A2 part 9",
                "documentFiledDate": "2009-04-17T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2019-05-16T06:57:54+00:00",
                "inLibrary": false,
                "isPreviewAvailable": false,
                "name": "5491 #13",
                "object": "CaseDocument",
                "pages": 3,
                "parentDocumentId": "CDOCdg36297d43e46d",
                "previewDocument": null,
                "price": 0.3,
                "sortOrder": null,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCdg528d3e5aeeca",
                "childDocumentIdArray": [],
                "description": "Exhibit A2 part 8",
                "documentFiledDate": "2009-04-17T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2019-05-16T06:57:54+00:00",
                "inLibrary": false,
                "isPreviewAvailable": false,
                "name": "5491 #12",
                "object": "CaseDocument",
                "pages": 50,
                "parentDocumentId": "CDOCdg36297d43e46d",
                "previewDocument": null,
                "price": 3,
                "sortOrder": null,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCdgddcc05d5304b",
                "childDocumentIdArray": [],
                "description": "Exhibit A2 part 7",
                "documentFiledDate": "2009-04-17T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2019-05-16T06:57:54+00:00",
                "inLibrary": false,
                "isPreviewAvailable": false,
                "name": "5491 #11",
                "object": "CaseDocument",
                "pages": 9,
                "parentDocumentId": "CDOCdg36297d43e46d",
                "previewDocument": null,
                "price": 0.9,
                "sortOrder": null,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCdg2c0777e6f0d7",
                "childDocumentIdArray": [],
                "description": "Exhibit A2 part 6",
                "documentFiledDate": "2009-04-17T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2019-05-16T06:57:54+00:00",
                "inLibrary": false,
                "isPreviewAvailable": false,
                "name": "5491 #10",
                "object": "CaseDocument",
                "pages": 50,
                "parentDocumentId": "CDOCdg36297d43e46d",
                "previewDocument": null,
                "price": 3,
                "sortOrder": null,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCdge9bf98f515cf",
                "childDocumentIdArray": [],
                "description": "Exhibit A2 part 5",
                "documentFiledDate": "2009-04-17T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2019-05-16T06:57:54+00:00",
                "inLibrary": false,
                "isPreviewAvailable": false,
                "name": "5491 #9",
                "object": "CaseDocument",
                "pages": 4,
                "parentDocumentId": "CDOCdg36297d43e46d",
                "previewDocument": null,
                "price": 0.4,
                "sortOrder": null,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCdg858c72226efc",
                "childDocumentIdArray": [],
                "description": "Errata A2 part 4",
                "documentFiledDate": "2009-04-17T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2019-05-16T06:57:54+00:00",
                "inLibrary": false,
                "isPreviewAvailable": false,
                "name": "5491 #8",
                "object": "CaseDocument",
                "pages": 5,
                "parentDocumentId": "CDOCdg36297d43e46d",
                "previewDocument": null,
                "price": 0.5,
                "sortOrder": null,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCdg067bcc453efe",
                "childDocumentIdArray": [],
                "description": "Exhibit A2 part 3",
                "documentFiledDate": "2009-04-17T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2019-05-16T06:57:54+00:00",
                "inLibrary": false,
                "isPreviewAvailable": false,
                "name": "5491 #7",
                "object": "CaseDocument",
                "pages": 14,
                "parentDocumentId": "CDOCdg36297d43e46d",
                "previewDocument": null,
                "price": 1.4,
                "sortOrder": null,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCdgb2fd9917be02",
                "childDocumentIdArray": [],
                "description": "Exhibit A2 part 2",
                "documentFiledDate": "2009-04-17T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2019-05-16T06:57:54+00:00",
                "inLibrary": false,
                "isPreviewAvailable": false,
                "name": "5491 #6",
                "object": "CaseDocument",
                "pages": 2,
                "parentDocumentId": "CDOCdg36297d43e46d",
                "previewDocument": null,
                "price": 0.2,
                "sortOrder": null,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCdg64260a489c43",
                "childDocumentIdArray": [],
                "description": "Exhibit A2 part 1",
                "documentFiledDate": "2009-04-17T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2019-05-16T06:57:54+00:00",
                "inLibrary": false,
                "isPreviewAvailable": false,
                "name": "5491 #5",
                "object": "CaseDocument",
                "pages": 30,
                "parentDocumentId": "CDOCdg36297d43e46d",
                "previewDocument": null,
                "price": 3,
                "sortOrder": null,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCdgdf8e033d2261",
                "childDocumentIdArray": [],
                "description": "Exhibit A2",
                "documentFiledDate": "2009-04-17T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2019-05-16T06:57:54+00:00",
                "inLibrary": false,
                "isPreviewAvailable": false,
                "name": "5491 #4",
                "object": "CaseDocument",
                "pages": 10,
                "parentDocumentId": "CDOCdg36297d43e46d",
                "previewDocument": null,
                "price": 1,
                "sortOrder": null,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCdge0c49bf24757",
                "childDocumentIdArray": [],
                "description": "Exhibit A1",
                "documentFiledDate": "2009-04-17T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2019-05-16T06:57:54+00:00",
                "inLibrary": false,
                "isPreviewAvailable": false,
                "name": "5491 #3",
                "object": "CaseDocument",
                "pages": 30,
                "parentDocumentId": "CDOCdg36297d43e46d",
                "previewDocument": null,
                "price": 3,
                "sortOrder": null,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCdg2c9cd2601ffd",
                "childDocumentIdArray": [],
                "description": "Exhibit A",
                "documentFiledDate": "2009-04-17T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2019-05-16T06:57:54+00:00",
                "inLibrary": false,
                "isPreviewAvailable": false,
                "name": "5491 #2",
                "object": "CaseDocument",
                "pages": 7,
                "parentDocumentId": "CDOCdg36297d43e46d",
                "previewDocument": null,
                "price": 0.7,
                "sortOrder": null,
                "sourceDataStatus": null
              }
            ],
            "nextPageAPI": "https://enterpriseapi.unicourt.com/case/CASEgr45196c84f3ff/documents?pageNumber=2",
            "object": "CaseDocuments",
            "pageNumber": 1,
            "totalCount": 153,
            "totalPages": 2
          },
          "caseId": "CASEgr45196c84f3ff",
          "caseName": "In Re: Rezulin Products Liability Litigation (MDL No. 1348)",
          "caseNumber": "1:00-cv-02843",
          "caseStats": {
            "allCaseDocumentCount": 167,
            "attorneyCount": 322,
            "caseDocumentInLibraryCount": 6,
            "docketEntryCount": 5956,
            "freeCaseDocumentCount": 0,
            "hearingCount": 0,
            "judgeCount": 2,
            "object": "CaseStats",
            "paidCaseDocumentCount": 0,
            "partyCount": 810,
            "relatedCaseCount": 1508
          },
          "caseStatus": {
            "caseClassArray": [
              "Civil",
              "Criminal"
            ],
            "caseStatusGroup": "Closed",
            "caseStatusGroupId": "CSSG6ERqyFdydo52WK",
            "caseStatusId": "CSSTbacAYUd7MM5xUM",
            "createdDate": "2022-03-28T04:58:47+00:00",
            "name": "Closed",
            "object": "CaseStatus"
          },
          "caseType": {
            "areaOfLaw": "Personal Injury and Torts",
            "areaOfLawId": "AOFLAQAm5WsAdhXKdH",
            "caseClass": "Civil",
            "caseClassId": "CSCLNjbKTN7Yfo2wdb",
            "caseTypeGroup": "Product Liability",
            "caseTypeGroupId": "CTYGGJBRVqYHmvuQui",
            "caseTypeId": "CTYPGJBRVqYHmvuQui",
            "caseTypeTag": null,
            "createdDate": "2022-03-28T04:58:28+00:00",
            "name": null,
            "object": "CaseType",
            "saliCode": null
          },
          "causeOfActionArray": [],
          "chargeArray": [],
          "court": {
            "additionalLevels": null,
            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTVRZReD7PYF9UfL/appealCourts?pageNumber=1",
            "container": "Southern District of New York",
            "containerType": "District",
            "courtId": "CORTVRZReD7PYF9UfL",
            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTVRZReD7PYF9UfL/courtLocations?pageNumber=1",
            "courtServiceStatusAPI": null,
            "courtSystemId": "COSY8rpkvJ4kMi4ZYD",
            "courtTypeId": "COTPLurdwRD5jyKSYb",
            "createdDate": "2022-07-08T05:49:54+00:00",
            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTVRZReD7PYF9UfL/jurisdictionGeo?pageNumber=1",
            "name": "New York Southern District",
            "nameAka": "U.S. District Court for the Southern District of New York",
            "object": "Court",
            "system": "U.S. District Courts",
            "type": "Federal"
          },
          "courtLocation": {
            "city": "New York",
            "courtLocationId": "COLOT2nZaNMMtSu4Rk",
            "courtServiceStatusAPI": null,
            "courtsForCourtLocationAPI": "https://enterpriseapi.unicourt.com/masterData/courtLocation/COLOT2nZaNMMtSu4Rk/courts?pageNumber=1",
            "createdDate": "2022-07-08T05:49:54+00:00",
            "name": "Daniel Patrick Moynihan U.S. Courthouse",
            "object": "CourtLocation",
            "stateName": "New York",
            "streetAddress1": "500 Pearl Street",
            "streetAddress2": null
          },
          "courtServiceStatusAPI": null,
          "courtServiceStatusId": null,
          "docketEntries": {
            "docketEntryArray": [
              {
                "boundary": "first",
                "docketBadge": "DOCKET",
                "docketEntryDate": "2013-11-25T00:00:00+00:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdgeed20cf777fa",
                      "childDocumentIdArray": [],
                      "description": null,
                      "documentFiledDate": "2013-11-25T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:58:15+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5517",
                      "object": "CaseDocument",
                      "pages": 1,
                      "parentDocumentId": null,
                      "previewDocument": null,
                      "price": 0.1,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    }
                  ],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 1,
                  "totalCount": 1,
                  "totalPages": 1
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": 5517,
                "lastFetchDate": "2019-05-16T06:58:15+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 5956,
                "text": "(#5517) PRETRIAL ORDER NO. 469 (MODIFICATION OF PRETRIAL ORDER NO. 356): On March 17, 2005, this Court sanctioned Zoe Littlepage, Esq., pursuant to Fed. R. Civ. P. 11(c)(1)(B) by formal reprimand and directed Ms. Littlepage henceforth to attach copy of the ruling so doing to any future application by her for permission to appear pro hac vice in this district. Pretrial Order No. 356. Sufficient reason therefor appearing, Ms. Littlepage's obligation, pursuant to Pretrial Order No. 356, to attach a copy of that order to any future application by her for permission to appear pro hac vice in this district is hereby terminated. (Signed by Judge Lewis A. Kaplan on 11/25/2013) (lmb) (Entered: 11/25/2013)",
                "textStructured": null
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2010-05-21T00:00:00+00:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2019-05-16T06:58:14+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [
                  {
                    "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgr45196c84f3ff/docketEntries?pageNumber=1&docketNumber=5514",
                    "docketNumber": 5514,
                    "object": "ReferencedDocketNumber"
                  }
                ],
                "sortOrder": 5955,
                "text": "CASHIERS OFFICE REGISTRY DISBURSEMENT as per #5514 Order on Motion for Disbursement of Funds,,,, dated 06/16/2009, from Judge Lewis A. Kaplan, on 05/20/2010 disbursed to pay THE LEGAL AID SOCIETY $206,866.83 Check No. 00895806 dated 05/20/2010 FEDEX# 8655 7112 6487 (jd) (Entered: 05/21/2010)",
                "textStructured": null
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2009-09-29T00:00:00+00:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2019-05-16T06:58:14+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [
                  {
                    "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgr45196c84f3ff/docketEntries?pageNumber=1&docketNumber=5514",
                    "docketNumber": 5514,
                    "object": "ReferencedDocketNumber"
                  }
                ],
                "sortOrder": 5954,
                "text": "CASHIERS OFFICE REGISTRY DISBURSEMENT as per #5514 Order on Motion for Disbursement of Funds,,,, dated 06/16/2009, from Judge Judge Lewis A. Kaplan, on 08/27/2009 disbursed to pay PFIZER INC $43,286.03 Check No. 00873112 dated 08/27/2009 PICKED UP BY DANIEL CONCEPCION 8/27/2009 (jd) (Entered: 09/29/2009)",
                "textStructured": null
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2009-07-31T00:00:00+00:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2019-05-16T06:58:14+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [
                  {
                    "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgr45196c84f3ff/docketEntries?pageNumber=1&docketNumber=5514",
                    "docketNumber": 5514,
                    "object": "ReferencedDocketNumber"
                  }
                ],
                "sortOrder": 5953,
                "text": "CASHIERS OFFICE REGISTRY DISBURSEMENT as per #5514 Order on Motion for Disbursement of Funds,,,, dated 06/16/2009, from Judge Judge Lewis A. Kaplan, on 07/16/2009 disbursed to pay HUGO & POLLACK $53,588.08 Check No. 00869425 dated 07/16/2009 (jd) (Entered: 07/31/2009)",
                "textStructured": null
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2009-07-15T00:00:00+00:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2019-05-16T06:58:14+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 5952,
                "text": "CASHIERS OFFICE CRIS DEPOSIT dated 3/20/02, from Judge Judge Lewis A. Kaplan, $76,963.22 from U.S. TREASURY deposited on 76,963.22, Receipt Number 693994 and placed into CRIS on 7/15/09. (dig) (Entered: 07/15/2009)",
                "textStructured": null
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2009-07-10T00:00:00+00:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2019-05-16T06:58:14+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [
                  {
                    "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgr45196c84f3ff/docketEntries?pageNumber=1&docketNumber=5497",
                    "docketNumber": 5497,
                    "object": "ReferencedDocketNumber"
                  }
                ],
                "sortOrder": 5951,
                "text": "CASHIERS OFFICE REGISTRY DISBURSEMENT as per #5497 Order on Motion to Approve, Order on Motion for Leave to File Document,,,,,,,,,,,,,,,,,,,,,,,,,,,, dated 05/04/2009, from Judge Judge Lewis A. Kaplan, on 07/09/2009 disbursed to pay WAITE SCHNEIDER BAYLESS & CHESLEY CO LPA $102,487.82 Check No. 00868812 dated 07/09/2009 (jd) (Entered: 07/10/2009)",
                "textStructured": null
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2009-07-10T00:00:00+00:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2019-05-16T06:58:14+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [
                  {
                    "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgr45196c84f3ff/docketEntries?pageNumber=1&docketNumber=5497",
                    "docketNumber": 5497,
                    "object": "ReferencedDocketNumber"
                  }
                ],
                "sortOrder": 5950,
                "text": "CASHIERS OFFICE REGISTRY DISBURSEMENT as per #5497 Order on Motion to Approve, Order on Motion for Leave to File Document,,,,,,,,,,,,,,,,,,,,,,,,,,,, dated 05/04/2009, from Judge Judge Lewis A. Kaplan, on 07/09/2009 disbursed to pay ASHCRAFT & GEREL LLP $2,128,528.09 Check No. 00868811 dated 07/09/2009 (jd) (Entered: 07/10/2009)",
                "textStructured": null
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2009-07-10T00:00:00+00:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2019-05-16T06:58:14+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [
                  {
                    "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgr45196c84f3ff/docketEntries?pageNumber=1&docketNumber=5497",
                    "docketNumber": 5497,
                    "object": "ReferencedDocketNumber"
                  }
                ],
                "sortOrder": 5949,
                "text": "CASHIERS OFFICE REGISTRY DISBURSEMENT as per #5497 Order on Motion to Approve, Order on Motion for Leave to File Document,,,,,,,,,,,,,,,,,,,,,,,,,,,, dated 05/04/2009, from Judge Judge Lewis A. Kaplan, on 07/09/2009 disbursed to pay TUJILLO RODRIGUEZ & RICHARDS LLC $3,803.27 Check No. 00868810 dated 07/09/2009 (jd) (Entered: 07/10/2009)",
                "textStructured": null
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2009-07-10T00:00:00+00:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2019-05-16T06:58:14+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [
                  {
                    "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgr45196c84f3ff/docketEntries?pageNumber=1&docketNumber=5497",
                    "docketNumber": 5497,
                    "object": "ReferencedDocketNumber"
                  }
                ],
                "sortOrder": 5948,
                "text": "CASHIERS OFFICE REGISTRY DISBURSEMENT as per #5497 Order on Motion to Approve, Order on Motion for Leave to File Document,,,,,,,,,,,,,,,,,,,,,,,,,,,, dated 05/04/2009, from Judge Judge Lewis A. Kaplan, on 07/09/2009 disbursed to pay LOCKRIDGE GRINDAL NAUEN PLLP $78,023.35 Check No. 00868809 dated 07/09/2009 (jd) (Entered: 07/10/2009)",
                "textStructured": null
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2009-07-10T00:00:00+00:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2019-05-16T06:58:14+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [
                  {
                    "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgr45196c84f3ff/docketEntries?pageNumber=1&docketNumber=5497",
                    "docketNumber": 5497,
                    "object": "ReferencedDocketNumber"
                  }
                ],
                "sortOrder": 5947,
                "text": "CASHIERS OFFICE REGISTRY DISBURSEMENT as per #5497 Order on Motion to Approve, Order on Motion for Leave to File Document,,,,,,,,,,,,,,,,,,,,,,,,,,,, dated 05/04/2009, from Judge Judge Lewis A. Kaplan, on 07/09/2009 disbursed to pay HERMAN GEREL LLP $2,183,373.17 Check No. 00868808 dated 07/09/2009 (jd) (Entered: 07/10/2009)",
                "textStructured": null
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2009-07-10T00:00:00+00:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2019-05-16T06:58:14+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [
                  {
                    "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgr45196c84f3ff/docketEntries?pageNumber=1&docketNumber=5497",
                    "docketNumber": 5497,
                    "object": "ReferencedDocketNumber"
                  }
                ],
                "sortOrder": 5946,
                "text": "CASHIERS OFFICE REGISTRY DISBURSEMENT as per #5497 Order on Motion to Approve, Order on Motion for Leave to File Document,,,,,,,,,,,,,,,,,,,,,,,,,,,, dated 05/04/2009, from Judge Judge Lewis A. Kaplan, on 07/09/2009 disbursed to pay GANCEDO & NIEVES $427,673.12 Check No. 00868807 dated 07/09/2009 (jd) (Entered: 07/10/2009)",
                "textStructured": null
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2009-07-10T00:00:00+00:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2019-05-16T06:58:14+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [
                  {
                    "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgr45196c84f3ff/docketEntries?pageNumber=1&docketNumber=5497",
                    "docketNumber": 5497,
                    "object": "ReferencedDocketNumber"
                  }
                ],
                "sortOrder": 5945,
                "text": "CASHIERS OFFICE REGISTRY DISBURSEMENT as per #5497 Order on Motion to Approve, Order on Motion for Leave to File Document,,,,,,,,,,,,,,,,,,,,,,,,,,,, dated 05/04/2009, from Judge Judge Lewis A. Kaplan, on 07/09/2009 disbursed to pay THE LITTLEPAGE FIRM $206,470.00 Check No. 00868806 dated 07/09/2009 (jd) (Entered: 07/10/2009)",
                "textStructured": null
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2009-07-10T00:00:00+00:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2019-05-16T06:58:14+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [
                  {
                    "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgr45196c84f3ff/docketEntries?pageNumber=1&docketNumber=5497",
                    "docketNumber": 5497,
                    "object": "ReferencedDocketNumber"
                  }
                ],
                "sortOrder": 5944,
                "text": "CASHIERS OFFICE REGISTRY DISBURSEMENT as per #5497 Order on Motion to Approve, Order on Motion for Leave to File Document,,,,,,,,,,,,,,,,,,,,,,,,,,,, dated 05/04/2009, from Judge Judge Lewis A. Kaplan, on 07/09/2009 disbursed to pay CUMMINGS CUMMINGS & DUENHEFER $511,151.76 Check No. 00868805 dated 07/09/2009 (jd) (Entered: 07/10/2009)",
                "textStructured": null
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2009-07-10T00:00:00+00:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2019-05-16T06:58:14+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [
                  {
                    "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgr45196c84f3ff/docketEntries?pageNumber=1&docketNumber=5497",
                    "docketNumber": 5497,
                    "object": "ReferencedDocketNumber"
                  }
                ],
                "sortOrder": 5943,
                "text": "CASHIERS OFFICE REGISTRY DISBURSEMENT as per #5497 Order on Motion to Approve, Order on Motion for Leave to File Document,,,,,,,,,,,,,,,,,,,,,,,,,,,, dated 05/04/2009, from Judge Judge Lewis A. Kaplan, on 07/09/2009 disbursed to pay JOHN W HORNBECK $195,800.65 Check No. 00868804 dated 07/09/2009 (jd) (Entered: 07/10/2009)",
                "textStructured": null
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2009-07-10T00:00:00+00:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2019-05-16T06:58:14+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [
                  {
                    "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgr45196c84f3ff/docketEntries?pageNumber=1&docketNumber=5497",
                    "docketNumber": 5497,
                    "object": "ReferencedDocketNumber"
                  }
                ],
                "sortOrder": 5942,
                "text": "CASHIERS OFFICE REGISTRY DISBURSEMENT as per #5497 Order on Motion to Approve, Order on Motion for Leave to File Document,,,,,,,,,,,,,,,,,,,,,,,,,,,, dated 05/04/2009, from Judge Judge Lewis A. Kaplan, on 07/09/2009 disbursed to pay BENCEL LAW FIRM $151,776.09 Check No. 00868803 dated 07/09/2009 (jd) (Entered: 07/10/2009)",
                "textStructured": null
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2009-07-10T00:00:00+00:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2019-05-16T06:58:14+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [
                  {
                    "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgr45196c84f3ff/docketEntries?pageNumber=1&docketNumber=5497",
                    "docketNumber": 5497,
                    "object": "ReferencedDocketNumber"
                  }
                ],
                "sortOrder": 5941,
                "text": "CASHIERS OFFICE REGISTRY DISBURSEMENT as per #5497 Order on Motion to Approve, Order on Motion for Leave to File Document,,,,,,,,,,,,,,,,,,,,,,,,,,,, dated 05/04/2009, from Judge Judge Lewis A. Kaplan, on 07/09/2009 disbursed to pay LEVIN FISHBEIN SEDRAN & BERMAN $2,126,690.22 Check No. 00868802 dated 07/09/2009 (jd) (Entered: 07/10/2009)",
                "textStructured": null
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2009-07-10T00:00:00+00:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2019-05-16T06:58:14+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [
                  {
                    "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgr45196c84f3ff/docketEntries?pageNumber=1&docketNumber=5497",
                    "docketNumber": 5497,
                    "object": "ReferencedDocketNumber"
                  }
                ],
                "sortOrder": 5940,
                "text": "CASHIERS OFFICE REGISTRY DISBURSEMENT as per #5497 Order on Motion to Approve, Order on Motion for Leave to File Document,,,,,,,,,,,,,,,,,,,,,,,,,,,, dated 05/04/2009, from Judge Judge Lewis A. Kaplan, on 07/09/2009 disbursed to pay HOFFMAN & EDELSON $26,728.75 Check No. 00868801 dated 07/09/2009 (jd) (Entered: 07/10/2009)",
                "textStructured": null
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2009-07-10T00:00:00+00:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2019-05-16T06:58:14+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [
                  {
                    "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgr45196c84f3ff/docketEntries?pageNumber=1&docketNumber=5497",
                    "docketNumber": 5497,
                    "object": "ReferencedDocketNumber"
                  }
                ],
                "sortOrder": 5939,
                "text": "CASHIERS OFFICE REGISTRY DISBURSEMENT as per #5497 Order on Motion to Approve, Order on Motion for Leave to File Document,,,,,,,,,,,,,,,,,,,,,,,,,,,, dated 05/04/2009, from Judge Judge Lewis A. Kaplan, on 07/09/2009 disbursed to pay SHAHEEN & GORDON PA $17,666.60 Check No. 00868800 dated 07/09/2009 (jd) (Entered: 07/10/2009)",
                "textStructured": null
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2009-07-10T00:00:00+00:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2019-05-16T06:58:14+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [
                  {
                    "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgr45196c84f3ff/docketEntries?pageNumber=1&docketNumber=5497",
                    "docketNumber": 5497,
                    "object": "ReferencedDocketNumber"
                  }
                ],
                "sortOrder": 5938,
                "text": "CASHIERS OFFICE REGISTRY DISBURSEMENT as per #5497 Order on Motion to Approve, Order on Motion for Leave to File Document,,,,,,,,,,,,,,,,,,,,,,,,,,,, dated 05/04/2009, from Judge Judge Lewis A. Kaplan, on 07/09/2009 disbursed to pay MILBERG LLP $2,198,704.28 Check No. 00868799 dated 07/09/2009 (jd) (Entered: 07/10/2009)",
                "textStructured": null
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2009-07-10T00:00:00+00:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2019-05-16T06:58:14+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [
                  {
                    "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgr45196c84f3ff/docketEntries?pageNumber=1&docketNumber=5497",
                    "docketNumber": 5497,
                    "object": "ReferencedDocketNumber"
                  }
                ],
                "sortOrder": 5937,
                "text": "CASHIERS OFFICE REGISTRY DISBURSEMENT as per #5497 Order on Motion to Approve, Order on Motion for Leave to File Document,,,,,,,,,,,,,,,,,,,,,,,,,,,, dated 05/04/2009, from Judge Judge Lewis A. Kaplan, on 07/09/2009 disbursed to pay LAW OFFICES OF PHILLIP MCCARTHY $7,092.58 Check No. 00868798 dated 07/09/2009 (jd) (Entered: 07/10/2009)",
                "textStructured": null
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2009-07-10T00:00:00+00:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2019-05-16T06:58:14+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [
                  {
                    "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgr45196c84f3ff/docketEntries?pageNumber=1&docketNumber=5497",
                    "docketNumber": 5497,
                    "object": "ReferencedDocketNumber"
                  }
                ],
                "sortOrder": 5936,
                "text": "CASHIERS OFFICE REGISTRY DISBURSEMENT as per #5497 Order on Motion to Approve, Order on Motion for Leave to File Document,,,,,,,,,,,,,,,,,,,,,,,,,,,, dated 05/04/2009, from Judge Judge Lewis A. Kaplan, on 07/09/2009 disbursed to pay SEEGER WEISS LLP $1,872,959.01 Check No. 00868797 dated 07/09/2009 (jd) (Entered: 07/10/2009)",
                "textStructured": null
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2009-07-10T00:00:00+00:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2019-05-16T06:58:14+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [
                  {
                    "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgr45196c84f3ff/docketEntries?pageNumber=1&docketNumber=5497",
                    "docketNumber": 5497,
                    "object": "ReferencedDocketNumber"
                  }
                ],
                "sortOrder": 5935,
                "text": "CASHIERS OFFICE REGISTRY DISBURSEMENT as per #5497 Order on Motion to Approve, Order on Motion for Leave to File Document,,,,,,,,,,,,,,,,,,,,,,,,,,,, dated 05/04/2009, from Judge Judge Lewis A. Kaplan, on 07/09/2009 disbursed to pay CHARLES H JOHNSON & ASSOCIATES $76,222.60 Check No. 00868796 dated 07/09/2009 (jd) (Entered: 07/10/2009)",
                "textStructured": null
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2009-07-10T00:00:00+00:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2019-05-16T06:58:14+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [
                  {
                    "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgr45196c84f3ff/docketEntries?pageNumber=1&docketNumber=5497",
                    "docketNumber": 5497,
                    "object": "ReferencedDocketNumber"
                  }
                ],
                "sortOrder": 5934,
                "text": "CASHIERS OFFICE REGISTRY DISBURSEMENT as per #5497 Order on Motion to Approve, Order on Motion for Leave to File Document,,,,,,,,,,,,,,,,,,,,,,,,,,,, dated 05/04/2009, from Judge Judge Lewis A. Kaplan, on 07/09/2009 disbursed to pay MCEWEN LAW FIRM LTD $5,700.00 Check No. 00868795 dated 07/09/2009 (jd) (Entered: 07/10/2009)",
                "textStructured": null
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2009-07-10T00:00:00+00:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2019-05-16T06:58:14+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [
                  {
                    "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgr45196c84f3ff/docketEntries?pageNumber=1&docketNumber=5497",
                    "docketNumber": 5497,
                    "object": "ReferencedDocketNumber"
                  }
                ],
                "sortOrder": 5933,
                "text": "CASHIERS OFFICE REGISTRY DISBURSEMENT as per #5497 Order on Motion to Approve, Order on Motion for Leave to File Document,,,,,,,,,,,,,,,,,,,,,,,,,,,, dated 05/04/2009, from Judge Judge Lewis A. Kaplan, on 07/09/2009 disbursed to pay ROBINSON CALCAGNIE & ROBINSON INC $2,917,175.49 Check No. 00868794 dated 07/09/2009 (jd) (Entered: 07/10/2009)",
                "textStructured": null
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2009-07-10T00:00:00+00:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2019-05-16T06:58:14+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [
                  {
                    "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgr45196c84f3ff/docketEntries?pageNumber=1&docketNumber=5497",
                    "docketNumber": 5497,
                    "object": "ReferencedDocketNumber"
                  }
                ],
                "sortOrder": 5932,
                "text": "CASHIERS OFFICE REGISTRY DISBURSEMENT as per #5497 Order on Motion to Approve, Order on Motion for Leave to File Document,,,,,,,,,,,,,,,,,,,,,,,,,,,, dated 05/04/2009, from Judge Judge Lewis A. Kaplan, on 07/09/2009 disbursed to pay GEORGE H NIBLOCK LTD $52,064.88 Check No. 00868793 dated 07/09/2009 (jd) (Entered: 07/10/2009)",
                "textStructured": null
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2009-07-10T00:00:00+00:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2019-05-16T06:58:14+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [
                  {
                    "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgr45196c84f3ff/docketEntries?pageNumber=1&docketNumber=5497",
                    "docketNumber": 5497,
                    "object": "ReferencedDocketNumber"
                  }
                ],
                "sortOrder": 5931,
                "text": "CASHIERS OFFICE REGISTRY DISBURSEMENT as per #5497 Order on Motion to Approve, Order on Motion for Leave to File Document,,,,,,,,,,,,,,,,,,,,,,,,,,,, dated 05/04/2009, from Judge Judge Lewis A. Kaplan, on 07/09/2009 disbursed to pay CLIMACO LEFKOWITZ PECA WILCOX & GAROFOLI CO LPA $57,789.94 Check No. 00868792 dated 07/09/2009 (jd) (Entered: 07/10/2009)",
                "textStructured": null
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2009-07-10T00:00:00+00:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2019-05-16T06:58:14+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [
                  {
                    "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgr45196c84f3ff/docketEntries?pageNumber=1&docketNumber=5497",
                    "docketNumber": 5497,
                    "object": "ReferencedDocketNumber"
                  }
                ],
                "sortOrder": 5930,
                "text": "CASHIERS OFFICE REGISTRY DISBURSEMENT as per #5497 Order on Motion to Approve, Order on Motion for Leave to File Document,,,,,,,,,,,,,,,,,,,,,,,,,,,, dated 05/04/2009, from Judge Judge Lewis A. Kaplan, on 07/09/2009 disbursed to pay LUNDY & DAVIS LLP $35,900.00 Check No. 00868791 dated 07/09/2009 (jd) (Entered: 07/10/2009)",
                "textStructured": null
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2009-07-10T00:00:00+00:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2019-05-16T06:58:14+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [
                  {
                    "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgr45196c84f3ff/docketEntries?pageNumber=1&docketNumber=5497",
                    "docketNumber": 5497,
                    "object": "ReferencedDocketNumber"
                  }
                ],
                "sortOrder": 5929,
                "text": "CASHIERS OFFICE REGISTRY DISBURSEMENT as per #5497 Order on Motion to Approve, Order on Motion for Leave to File Document,,,,,,,,,,,,,,,,,,,,,,,,,,,, dated 05/04/2009, from Judge Judge Lewis A. Kaplan, on 07/09/2009 disbursed to pay RICHARDSON PATRICK WESTBROOK & BRICKMAN LLC $526,737.82 Check No. 00868790 dated 07/09/2009 (jd) (Entered: 07/10/2009)",
                "textStructured": null
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2009-07-10T00:00:00+00:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2019-05-16T06:58:14+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [
                  {
                    "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgr45196c84f3ff/docketEntries?pageNumber=1&docketNumber=5497",
                    "docketNumber": 5497,
                    "object": "ReferencedDocketNumber"
                  }
                ],
                "sortOrder": 5928,
                "text": "CASHIERS OFFICE REGISTRY DISBURSEMENT as per #5497 Order on Motion to Approve, Order on Motion for Leave to File Document,,,,,,,,,,,,,,,,,,,,,,,,,,,, dated 05/04/2009, from Judge Judge Lewis A. Kaplan, on 07/09/2009 disbursed to pay JANET JENNER & SUGGS LLC $75,000.00 Check No. 00868789 dated 07/09/2009 (jd) (Entered: 07/10/2009)",
                "textStructured": null
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2009-07-10T00:00:00+00:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2019-05-16T06:58:14+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [
                  {
                    "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgr45196c84f3ff/docketEntries?pageNumber=1&docketNumber=5497",
                    "docketNumber": 5497,
                    "object": "ReferencedDocketNumber"
                  }
                ],
                "sortOrder": 5927,
                "text": "CASHIERS OFFICE REGISTRY DISBURSEMENT as per #5497 Order on Motion to Approve, Order on Motion for Leave to File Document,,,,,,,,,,,,,,,,,,,,,,,,,,,, dated 05/04/2009, from Judge Judge Lewis A. Kaplan, on 07/09/2009 disbursed to pay LEVIN PAPANTONIO THOMAS MITCHELL ECHENNER& PROCTOR PA $2,416,781.69 Check No. 00868788 dated 07/09/2009 (jd) (Entered: 07/10/2009)",
                "textStructured": null
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2009-07-10T00:00:00+00:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2019-05-16T06:58:14+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [
                  {
                    "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgr45196c84f3ff/docketEntries?pageNumber=1&docketNumber=5497",
                    "docketNumber": 5497,
                    "object": "ReferencedDocketNumber"
                  }
                ],
                "sortOrder": 5926,
                "text": "CASHIERS OFFICE REGISTRY DISBURSEMENT as per #5497 Order on Motion to Approve, Order on Motion for Leave to File Document,,,,,,,,,,,,,,,,,,,,,,,,,,,, dated 05/04/2009, from Judge Judge Lewis A. Kaplan, on 07/09/2009 disbursed to pay LEIFF CABRASER HEIMANN & BERNSTEIN LLP $1,247,855.89 Check No. 00868787 dated 07/09/2009 (jd) (Entered: 07/10/2009)",
                "textStructured": null
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2009-07-10T00:00:00+00:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2019-05-16T06:58:14+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [
                  {
                    "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgr45196c84f3ff/docketEntries?pageNumber=1&docketNumber=5497",
                    "docketNumber": 5497,
                    "object": "ReferencedDocketNumber"
                  }
                ],
                "sortOrder": 5925,
                "text": "CASHIERS OFFICE REGISTRY DISBURSEMENT as per #5497 Order on Motion to Approve, Order on Motion for Leave to File Document,,,,,,,,,,,,,,,,,,,,,,,,,,,, dated 05/04/2009, from Judge Judge Lewis A. Kaplan, on 07/09/2009 disbursed to pay BONSIGNORE & BREWER $60,000.00 Check No. 00868786 dated 07/09/2009 (jd) (Entered: 07/10/2009)",
                "textStructured": null
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2009-07-10T00:00:00+00:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2019-05-16T06:58:14+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [
                  {
                    "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgr45196c84f3ff/docketEntries?pageNumber=1&docketNumber=5497",
                    "docketNumber": 5497,
                    "object": "ReferencedDocketNumber"
                  }
                ],
                "sortOrder": 5924,
                "text": "CASHIERS OFFICE REGISTRY DISBURSEMENT as per #5497 Order on Motion to Approve, Order on Motion for Leave to File Document,,,,,,,,,,,,,,,,,,,,,,,,,,,, dated 05/04/2009, from Judge Judge Lewis A. Kaplan, on 07/09/2009 disbursed to pay LOPEZ HODES RESTAINO MILMAN SKIKOS $2,110,011.02 Check No. 00868785 dated 07/09/2009 (jd) (Entered: 07/10/2009)",
                "textStructured": null
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2009-07-10T00:00:00+00:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2019-05-16T06:58:14+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [
                  {
                    "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgr45196c84f3ff/docketEntries?pageNumber=1&docketNumber=5497",
                    "docketNumber": 5497,
                    "object": "ReferencedDocketNumber"
                  }
                ],
                "sortOrder": 5923,
                "text": "CASHIERS OFFICE REGISTRY DISBURSEMENT as per #5497 Order on Motion to Approve, Order on Motion for Leave to File Document,,,,,,,,,,,,,,,,,,,,,,,,,,,, dated 05/04/2009, from Judge Judge Lewis A. Kaplan, on 07/09/2009 disbursed to pay GRIEVES MARTIN STEIN & RICHARD LLP $275,000.00 Check No. 00868784 dated 07/09/2009 (jd) (Entered: 07/10/2009)",
                "textStructured": null
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2009-07-10T00:00:00+00:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2019-05-16T06:58:14+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [
                  {
                    "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgr45196c84f3ff/docketEntries?pageNumber=1&docketNumber=5497",
                    "docketNumber": 5497,
                    "object": "ReferencedDocketNumber"
                  }
                ],
                "sortOrder": 5922,
                "text": "CASHIERS OFFICE REGISTRY DISBURSEMENT as per #5497 Order on Motion to Approve, Order on Motion for Leave to File Document,,,,,,,,,,,,,,,,,,,,,,,,,,,, dated 05/04/2009, from Judge Judge Lewis A. Kaplan, on 07/09/2009 disbursed to pay KUYKENDALL & ASSOCIATES $100,000.00 Check No. 00868783 dated 07/09/2009 (jd) (Entered: 07/10/2009)",
                "textStructured": null
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2009-07-10T00:00:00+00:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2019-05-16T06:58:14+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [
                  {
                    "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgr45196c84f3ff/docketEntries?pageNumber=1&docketNumber=5497",
                    "docketNumber": 5497,
                    "object": "ReferencedDocketNumber"
                  }
                ],
                "sortOrder": 5921,
                "text": "CASHIERS OFFICE REGISTRY DISBURSEMENT as per #5497 Order on Motion to Approve, Order on Motion for Leave to File Document,,,,,,,,,,,,,,,,,,,,,,,,,,,, dated 05/04/2009, from Judge Judge Lewis A. Kaplan, on 07/09/2009 disbursed to pay LOPEZ HODES ROBINSON CALCAGNIE SHERMAN SALKOW $1,892,245.19 Check No. 00868782 dated 07/09/2009 (jd) (Entered: 07/10/2009)",
                "textStructured": null
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2009-07-10T00:00:00+00:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2019-05-16T06:58:14+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [
                  {
                    "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgr45196c84f3ff/docketEntries?pageNumber=1&docketNumber=5497",
                    "docketNumber": 5497,
                    "object": "ReferencedDocketNumber"
                  }
                ],
                "sortOrder": 5920,
                "text": "CASHIERS OFFICE REGISTRY DISBURSEMENT as per #5497 Order on Motion to Approve, Order on Motion for Leave to File Document,,,,,,,,,,,,,,,,,,,,,,,,,,,, dated 05/04/2009, from Judge Judge Lewis A. Kaplan, on 07/09/2009 disbursed to pay BYRD & ASSOCIATES $43,726.50 Check No. 00868781 dated 07/09/2009 (jd) (Entered: 07/10/2009)",
                "textStructured": null
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2009-07-10T00:00:00+00:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2019-05-16T06:58:14+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [
                  {
                    "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgr45196c84f3ff/docketEntries?pageNumber=1&docketNumber=5497",
                    "docketNumber": 5497,
                    "object": "ReferencedDocketNumber"
                  }
                ],
                "sortOrder": 5919,
                "text": "CASHIERS OFFICE REGISTRY DISBURSEMENT as per #5497 Order on Motion to Approve, Order on Motion for Leave to File Document,,,,,,,,,,,,,,,,,,,,,,,,,,,, dated 05/04/2009, from Judge Judge Lewis A. Kaplan, on 07/09/2009 disbursed to pay CAULEY BOWMAN CARNEY $56,900.00 Check No. 00868780 dated 07/09/2009 (jd) (Entered: 07/10/2009)",
                "textStructured": null
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2009-07-10T00:00:00+00:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2019-05-16T06:58:14+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [
                  {
                    "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgr45196c84f3ff/docketEntries?pageNumber=1&docketNumber=5497",
                    "docketNumber": 5497,
                    "object": "ReferencedDocketNumber"
                  }
                ],
                "sortOrder": 5918,
                "text": "CASHIERS OFFICE REGISTRY DISBURSEMENT as per #5497 Order on Motion to Approve, Order on Motion for Leave to File Document,,,,,,,,,,,,,,,,,,,,,,,,,,,, dated 07/09/2009, from Judge Judge Lewis A. Kaplan, on 07/09/2009 disbursed to pay CORNICK GARBER & SANDLER LLP $140,174.23 Check No. 00868779 dated 07/09/2009 (jd) (Entered: 07/10/2009)",
                "textStructured": null
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2009-07-10T00:00:00+00:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2019-05-16T06:58:14+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [
                  {
                    "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgr45196c84f3ff/docketEntries?pageNumber=1&docketNumber=5497",
                    "docketNumber": 5497,
                    "object": "ReferencedDocketNumber"
                  }
                ],
                "sortOrder": 5917,
                "text": "CASHIERS OFFICE REGISTRY DISBURSEMENT as per #5497 Order on Motion to Approve, Order on Motion for Leave to File Document,,,,,,,,,,,,,,,,,,,,,,,,,,,, dated 05/04/2009, from Judge Judge Lewis A. Kaplan, on 07/09/2009 disbursed to pay GREENFIELD&GOODMAN LLC $25,000.00 Check No. 00868778 dated 07/09/2009 (jd) (Entered: 07/10/2009)",
                "textStructured": null
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2009-06-22T00:00:00+00:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdg1b8b36bf7e46",
                      "childDocumentIdArray": [],
                      "description": null,
                      "documentFiledDate": "2009-06-22T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:58:14+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5516",
                      "object": "CaseDocument",
                      "pages": 2,
                      "parentDocumentId": null,
                      "previewDocument": null,
                      "price": 0.2,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    }
                  ],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 1,
                  "totalCount": 1,
                  "totalPages": 1
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": 5516,
                "lastFetchDate": "2019-05-16T06:58:14+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 5916,
                "text": "(#5516) ENDORSED LETTER addressed to Judge Lewis A. Kaplan from Arnold Levin dated 6/22/09 re: In PTO No. 466 the Court awarded the PEC fees (after payment of Littlepage Booth and Special Master Rosenberg) in the amount of $17,363,068.24. Subsequently, in PTO 469 the Court awarded Byrd & Associates their refund of $43,726.50. That refund should have resulted in the PEC fee award balance being $17,319,341.74. Paragraph 2 of PTO 469, however, states that the balance of the PEC fee award is $15,703,068.24 (a difference of $1,660.000.00). Respectfully, counsel submits that paragraph 2 of the PTO should read as further set forth in this letter. ENDORSEMENT: Paragraph 2 of PTO 469 is modified to read in relevant part as above. (Signed by Judge Lewis A. Kaplan on 6/22/09) (tro) (Entered: 06/23/2009)",
                "textStructured": null
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2009-06-17T00:00:00+00:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdg35015362ff04",
                      "childDocumentIdArray": [],
                      "description": null,
                      "documentFiledDate": "2009-06-17T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:58:13+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5515",
                      "object": "CaseDocument",
                      "pages": 2,
                      "parentDocumentId": null,
                      "previewDocument": null,
                      "price": 0.2,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    }
                  ],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 1,
                  "totalCount": 1,
                  "totalPages": 1
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": 5515,
                "lastFetchDate": "2019-05-16T06:58:13+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 5915,
                "text": "(#5515) NOTICE OF APPEARANCE by Suzanne Griggins Keys on behalf of Avon Armstrong (Keys, Suzanne) (Entered: 06/17/2009)",
                "textStructured": null
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2009-06-16T00:00:00+00:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdg446ec05b279f",
                      "childDocumentIdArray": [],
                      "description": null,
                      "documentFiledDate": "2009-06-16T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:58:13+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5514",
                      "object": "CaseDocument",
                      "pages": 2,
                      "parentDocumentId": null,
                      "previewDocument": null,
                      "price": 0.2,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    }
                  ],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 1,
                  "totalCount": 1,
                  "totalPages": 1
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": 5514,
                "lastFetchDate": "2019-05-16T06:58:13+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 5914,
                "text": "(#5514) PRETRIAL ORDER NO. 469 (Disposition of Remaining Funds): In PTO Nos. 466 and 468, the Court directed the disbursement of funds from the CRIS I account. In order to provide Byrd the refund it seeks, the Court hereby modifies PTO Nos. 466 and 468 as follows: 1. $43,726.50 shall be disbursed to Byrd from the CRIS I account. 2. Counsel fees in the aggregate amount of $15,703,068.24 (the amount remaining in the CRIS I account following the disbursement to Byrd and the other disbursements provided for in PTO 466) shall be paid out of the CRIS I account to the Tier A, Tier B and Tier C firms identified in the affidavit of Arnold Levin, submitted in support of the PEC/PSC motion, in accordance with the Plan of Allocation set forth therein. 3. The remaining balance in the CRIS I account shall be paid to the Legal Aid Society.This order does not modify the Court's previous orders regarding the disbursement of funds from the CRIS II account. As the entry of this order disposes of all funds remaining in the CRIS I and CRIS II accounts, this MDL is concluded, and the Clerk is directed to close the case. (Signed by Judge Lewis A. Kaplan on 6/16/09) Filed In Associated Cases: 1:00-cv-02843-LAK-GWG et al.(tro) (Entered: 06/17/2009)",
                "textStructured": null
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2009-06-16T00:00:00+00:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdgb7816fea39a2",
                      "childDocumentIdArray": [],
                      "description": null,
                      "documentFiledDate": "2009-06-16T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:58:11+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5513",
                      "object": "CaseDocument",
                      "pages": 2,
                      "parentDocumentId": null,
                      "previewDocument": null,
                      "price": 0.2,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    }
                  ],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 1,
                  "totalCount": 1,
                  "totalPages": 1
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": 5513,
                "lastFetchDate": "2019-05-16T06:58:11+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 5913,
                "text": "(#5513) STIPULATED ORDER OF VOLUNTARY DISMISSAL: IT IS HEREBY STIPULATED AND AGREED, by and between the Attorney of record for Plaintiffs John Allison, Georgianna Bonner, Betty Emehiser, Gilbert Garcia, Rosario Gonzalez, Benjamin Hathoot, Jessie Jones, Margaret Knight, Donald Lavrine, Jr. Austin Metz, Jr., Lonnie Robinson, Roosevelt Thomas and Katrina Woods and Attorney of record for Defendants Ayaprakash Reddy, MD., that all claims of plaintiff as against defendant Ayaprakash Reddy, MD., shall be, subject to judicial approval, and hereby are voluntarily dismissed pursuant to FRCP Rule 41(a)(1) with prejudice and without costs, disbursements or fees of any kind or nature to any party as against another. (Signed by Judge Lewis A. Kaplan on 6/16/09) Filed In Associated Cases: 1:00-cv-02843-LAK-GWG, 1:02-cv-08395-LAK(tro) (Entered: 06/17/2009)",
                "textStructured": null
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2009-06-15T00:00:00+00:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdge3cec7ad6fb7",
                      "childDocumentIdArray": [],
                      "description": null,
                      "documentFiledDate": "2009-06-15T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:58:11+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5512",
                      "object": "CaseDocument",
                      "pages": 5,
                      "parentDocumentId": null,
                      "previewDocument": null,
                      "price": 0.5,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    }
                  ],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 1,
                  "totalCount": 1,
                  "totalPages": 1
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": 5512,
                "lastFetchDate": "2019-05-16T06:58:11+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 5912,
                "text": "(#5512) NOTICE of Objection to Distribution of CRIS Funds. Document filed by Gloria Pittman, Avon Armstrong, Lucille Coleman, Emma Dorsey. Filed In Associated Cases: 1:00-cv-02843-LAK-GWG et al.(Keys, Suzanne) (Entered: 06/15/2009)",
                "textStructured": null
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2009-06-09T00:00:00+00:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdgf4e7bec8c122",
                      "childDocumentIdArray": [
                        "CDOCdg705274fe6399",
                        "CDOCdg6380b723de0a"
                      ],
                      "description": null,
                      "documentFiledDate": "2009-06-09T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:58:10+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5511",
                      "object": "CaseDocument",
                      "pages": 4,
                      "parentDocumentId": null,
                      "previewDocument": null,
                      "price": 0.4,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    }
                  ],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 1,
                  "totalCount": 1,
                  "totalPages": 1
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdg6380b723de0a",
                      "childDocumentIdArray": [],
                      "description": "Exhibit B",
                      "documentFiledDate": "2009-06-09T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:58:10+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5511 #3",
                      "object": "CaseDocument",
                      "pages": 2,
                      "parentDocumentId": "CDOCdgf4e7bec8c122",
                      "previewDocument": null,
                      "price": 0.2,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    },
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdg705274fe6399",
                      "childDocumentIdArray": [],
                      "description": "Exhibit A",
                      "documentFiledDate": "2009-06-09T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:58:10+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5511 #2",
                      "object": "CaseDocument",
                      "pages": 3,
                      "parentDocumentId": "CDOCdgf4e7bec8c122",
                      "previewDocument": null,
                      "price": 0.3,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    }
                  ],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 1,
                  "totalCount": 2,
                  "totalPages": 1
                },
                "docketNumber": 5511,
                "lastFetchDate": "2019-05-16T06:58:10+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [
                  {
                    "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgr45196c84f3ff/docketEntries?pageNumber=1&docketNumber=5510",
                    "docketNumber": 5510,
                    "object": "ReferencedDocketNumber"
                  }
                ],
                "sortOrder": 5911,
                "text": "(#5511) RESPONSE to Motion re: #5510 MOTION for Disbursement of Funds Motion and Application for Refund of Excess Funds in Interim Cris Account.. Document filed by Plaintiffs' Executive Commitee. (Attachments: #1 Exhibit A, #2 Exhibit B)(Fineman, Steven) (Entered: 06/09/2009)",
                "textStructured": null
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2009-06-05T00:00:00+00:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdg921bcc2df3f7",
                      "childDocumentIdArray": [
                        "CDOCdgebafe0e16c02",
                        "CDOCdgdfc8adf21609",
                        "CDOCdge8bcc6eae456"
                      ],
                      "description": null,
                      "documentFiledDate": "2009-06-05T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:58:09+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5510",
                      "object": "CaseDocument",
                      "pages": 8,
                      "parentDocumentId": null,
                      "previewDocument": null,
                      "price": 0.8,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    }
                  ],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 1,
                  "totalCount": 1,
                  "totalPages": 1
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdgebafe0e16c02",
                      "childDocumentIdArray": [],
                      "description": "Exhibit Exhibit A",
                      "documentFiledDate": "2009-06-05T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:58:09+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5510 #2",
                      "object": "CaseDocument",
                      "pages": 2,
                      "parentDocumentId": "CDOCdg921bcc2df3f7",
                      "previewDocument": null,
                      "price": 0.2,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    },
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdgdfc8adf21609",
                      "childDocumentIdArray": [],
                      "description": "Exhibit Exhibit B",
                      "documentFiledDate": "2009-06-05T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:58:09+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5510 #3",
                      "object": "CaseDocument",
                      "pages": 1,
                      "parentDocumentId": "CDOCdg921bcc2df3f7",
                      "previewDocument": null,
                      "price": 0.1,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    },
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdge8bcc6eae456",
                      "childDocumentIdArray": [],
                      "description": "Service List",
                      "documentFiledDate": "2009-06-05T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:58:09+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5510 #4",
                      "object": "CaseDocument",
                      "pages": 59,
                      "parentDocumentId": "CDOCdg921bcc2df3f7",
                      "previewDocument": null,
                      "price": 3,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    }
                  ],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 1,
                  "totalCount": 3,
                  "totalPages": 1
                },
                "docketNumber": 5510,
                "lastFetchDate": "2019-05-16T06:58:09+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 5910,
                "text": "(#5510) MOTION for Disbursement of Funds Motion and Application for Refund of Excess Funds in Interim Cris Account. Document filed by Carl Lewis, Gloria Pittman, Lucille Coleman, Emma Dorsey, Avon Armstrong. (Attachments: #1 Exhibit Exhibit A, #2 Exhibit Exhibit B, #3 Service List)Filed In Associated Cases: 1:00-cv-02843-LAK-GWG et al.(Edelman, Paul) (Entered: 06/05/2009)",
                "textStructured": null
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2009-06-05T00:00:00+00:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdgc751e0adcbe1",
                      "childDocumentIdArray": [
                        "CDOCdgf751071c2b67"
                      ],
                      "description": null,
                      "documentFiledDate": "2009-06-05T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:58:09+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5509",
                      "object": "CaseDocument",
                      "pages": 4,
                      "parentDocumentId": null,
                      "previewDocument": null,
                      "price": 0.4,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    }
                  ],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 1,
                  "totalCount": 1,
                  "totalPages": 1
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdgf751071c2b67",
                      "childDocumentIdArray": [],
                      "description": "Service List",
                      "documentFiledDate": "2009-06-05T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:58:09+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5509 #2",
                      "object": "CaseDocument",
                      "pages": 59,
                      "parentDocumentId": "CDOCdgc751e0adcbe1",
                      "previewDocument": null,
                      "price": 3,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    }
                  ],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 1,
                  "totalCount": 1,
                  "totalPages": 1
                },
                "docketNumber": 5509,
                "lastFetchDate": "2019-05-16T06:58:09+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 5909,
                "text": "(#5509) NOTICE OF APPEARANCE by Paul S Edelman on behalf of Gloria Pittman (Attachments: #1 Service List)Filed In Associated Cases: 1:00-cv-02843-LAK-GWG, 1:03-cv-01332-LAK(Edelman, Paul) (Entered: 06/05/2009)",
                "textStructured": null
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2009-06-05T00:00:00+00:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdg72af0d0a5892",
                      "childDocumentIdArray": [
                        "CDOCdgebbcfc06824e"
                      ],
                      "description": null,
                      "documentFiledDate": "2009-06-05T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:58:08+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5508",
                      "object": "CaseDocument",
                      "pages": 6,
                      "parentDocumentId": null,
                      "previewDocument": null,
                      "price": 0.6,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    }
                  ],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 1,
                  "totalCount": 1,
                  "totalPages": 1
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdgebbcfc06824e",
                      "childDocumentIdArray": [],
                      "description": "Service List",
                      "documentFiledDate": "2009-06-05T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:58:08+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5508 #2",
                      "object": "CaseDocument",
                      "pages": 59,
                      "parentDocumentId": "CDOCdg72af0d0a5892",
                      "previewDocument": null,
                      "price": 3,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    }
                  ],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 1,
                  "totalCount": 1,
                  "totalPages": 1
                },
                "docketNumber": 5508,
                "lastFetchDate": "2019-05-16T06:58:08+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 5908,
                "text": "(#5508) NOTICE OF APPEARANCE by Paul S Edelman on behalf of Mary E. Lewis (Attachments: #1 Service List)Filed In Associated Cases: 1:00-cv-02843-LAK-GWG, 1:01-cv-07766-LAK(Edelman, Paul) (Entered: 06/05/2009)",
                "textStructured": null
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2009-06-05T00:00:00+00:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdgbec2e1ab76c0",
                      "childDocumentIdArray": [
                        "CDOCdge41c39a38817"
                      ],
                      "description": null,
                      "documentFiledDate": "2009-06-05T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:58:08+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5507",
                      "object": "CaseDocument",
                      "pages": 6,
                      "parentDocumentId": null,
                      "previewDocument": null,
                      "price": 0.6,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    }
                  ],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 1,
                  "totalCount": 1,
                  "totalPages": 1
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdge41c39a38817",
                      "childDocumentIdArray": [],
                      "description": "Service List",
                      "documentFiledDate": "2009-06-05T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:58:08+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5507 #2",
                      "object": "CaseDocument",
                      "pages": 59,
                      "parentDocumentId": "CDOCdgbec2e1ab76c0",
                      "previewDocument": null,
                      "price": 3,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    }
                  ],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 1,
                  "totalCount": 1,
                  "totalPages": 1
                },
                "docketNumber": 5507,
                "lastFetchDate": "2019-05-16T06:58:08+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 5907,
                "text": "(#5507) NOTICE OF APPEARANCE by Paul S Edelman on behalf of Emma Dorsey (Attachments: #1 Service List)Filed In Associated Cases: 1:00-cv-02843-LAK-GWG, 1:03-cv-08932-LAK(Edelman, Paul) (Entered: 06/05/2009)",
                "textStructured": null
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2009-06-05T00:00:00+00:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdg7f323bd49d23",
                      "childDocumentIdArray": [
                        "CDOCdgaaae8c7a0b59"
                      ],
                      "description": null,
                      "documentFiledDate": "2009-06-05T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:58:07+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5506",
                      "object": "CaseDocument",
                      "pages": 8,
                      "parentDocumentId": null,
                      "previewDocument": null,
                      "price": 0.8,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    }
                  ],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 1,
                  "totalCount": 1,
                  "totalPages": 1
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdgaaae8c7a0b59",
                      "childDocumentIdArray": [],
                      "description": "Service List",
                      "documentFiledDate": "2009-06-05T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:58:07+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5506 #2",
                      "object": "CaseDocument",
                      "pages": 59,
                      "parentDocumentId": "CDOCdg7f323bd49d23",
                      "previewDocument": null,
                      "price": 3,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    }
                  ],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 1,
                  "totalCount": 1,
                  "totalPages": 1
                },
                "docketNumber": 5506,
                "lastFetchDate": "2019-05-16T06:58:07+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 5906,
                "text": "(#5506) NOTICE OF APPEARANCE by Paul S Edelman on behalf of Lucille Coleman (Attachments: #1 Service List)Filed In Associated Cases: 1:00-cv-02843-LAK-GWG, 1:03-cv-06385-LAK(Edelman, Paul) (Entered: 06/05/2009)",
                "textStructured": null
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2009-06-05T00:00:00+00:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdgacd4967f095a",
                      "childDocumentIdArray": [
                        "CDOCdg67d0a9252f8a"
                      ],
                      "description": null,
                      "documentFiledDate": "2009-06-05T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:58:06+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5505",
                      "object": "CaseDocument",
                      "pages": 6,
                      "parentDocumentId": null,
                      "previewDocument": null,
                      "price": 0.6,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    }
                  ],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 1,
                  "totalCount": 1,
                  "totalPages": 1
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdg67d0a9252f8a",
                      "childDocumentIdArray": [],
                      "description": "Service List",
                      "documentFiledDate": "2009-06-05T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:58:06+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5505 #2",
                      "object": "CaseDocument",
                      "pages": 59,
                      "parentDocumentId": "CDOCdgacd4967f095a",
                      "previewDocument": null,
                      "price": 3,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    }
                  ],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 1,
                  "totalCount": 1,
                  "totalPages": 1
                },
                "docketNumber": 5505,
                "lastFetchDate": "2019-05-16T06:58:06+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 5905,
                "text": "(#5505) NOTICE OF APPEARANCE by Paul S Edelman on behalf of Avon Armstrong (Attachments: #1 Service List)Filed In Associated Cases: 1:00-cv-02843-LAK-GWG, 1:00-cv-07632-LAK(Edelman, Paul) (Entered: 06/05/2009)",
                "textStructured": null
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2009-06-04T00:00:00+00:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdg6c47dc7151f7",
                      "childDocumentIdArray": [],
                      "description": null,
                      "documentFiledDate": "2009-06-04T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:58:04+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5503",
                      "object": "CaseDocument",
                      "pages": 1,
                      "parentDocumentId": null,
                      "previewDocument": null,
                      "price": 0.1,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    }
                  ],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 1,
                  "totalCount": 1,
                  "totalPages": 1
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": 5503,
                "lastFetchDate": "2019-05-16T06:58:04+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 5904,
                "text": "(#5503) ORDER: It is hereby ORDERED AND ADJUDGED that the Byrd firm is granted an additional 4 days to e-file their Motion for Reimbursement, exclusive of any Rule 6 extension. (Signed by Judge Lewis A. Kaplan on 6/4/2009) (jfe) (Entered: 06/04/2009)",
                "textStructured": null
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2009-06-03T00:00:00+00:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2019-05-16T06:58:04+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [
                  {
                    "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgr45196c84f3ff/docketEntries?pageNumber=1&docketNumber=5504",
                    "docketNumber": 5504,
                    "object": "ReferencedDocketNumber"
                  }
                ],
                "sortOrder": 5903,
                "text": "Transmission to Attorney Admissions Clerk. Transmitted re: #5504 Order, to the Attorney Admissions Clerk for updating of Attorney Information. (tro) (Entered: 06/05/2009)",
                "textStructured": null
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2009-06-03T00:00:00+00:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdg406ab500e655",
                      "childDocumentIdArray": [],
                      "description": null,
                      "documentFiledDate": "2009-06-03T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:58:04+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5504",
                      "object": "CaseDocument",
                      "pages": 2,
                      "parentDocumentId": null,
                      "previewDocument": null,
                      "price": 0.2,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    }
                  ],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 1,
                  "totalCount": 1,
                  "totalPages": 1
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": 5504,
                "lastFetchDate": "2019-05-16T06:58:04+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 5902,
                "text": "(#5504) ORDER AUTHORIZING CLERK TO ISSUE LOG-IN AND PASSWORDS: The Court, pursuant to Rule 1.4. of the Procedure of the Judicial Panel on Multidistrict Litigation, and being advised that Attorneys Hiawatha Northington III and Suzanne Griggins Keys are counsel of record in the related cases listed above which were transferred to this Court under 28 U.S.C. 1407, and being advised that Attorney Northington and Attorney Keys are members in good standing of the Bar of the Mississippi district courts, finds that they are entitled to represent their clients before this Court and that the Clerk should be authorized to issue them log-in and passwords for electronic filing purposes. Therefore, it is ORDERED AND ADJUDGED that the Clerk of this Court is hereby authorized to issue log-in and passwords to Attorneys Hiawatha Northington III and Suzanne Keys for the purposes of electronic filing. (Signed by Judge Lewis A. Kaplan on 6/4/09) Filed In Associated Cases: 1:00-cv-02843-LAK-GWG, 1:00-cv-07632-LAK, 1:01-cv-07766-LAK, 1:03-cv-06385-LAK, 1:03-cv-08932-LAK(tro) (Entered: 06/05/2009)",
                "textStructured": null
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2009-06-03T00:00:00+00:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2019-05-16T06:58:03+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 5901,
                "text": "CASHIERS OFFICE CRIS DEPOSIT dated 3/20/02, from Judge Judge Lewis A. Kaplan, $76350.00 from IPAC deposited on 5/11/09, Receipt Number 689200 and placed into CRIS on 6/3/09. (dig) (Entered: 06/03/2009)",
                "textStructured": null
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2009-05-28T00:00:00+00:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdga0532e7b5ec9",
                      "childDocumentIdArray": [],
                      "description": null,
                      "documentFiledDate": "2009-05-28T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:58:03+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5502",
                      "object": "CaseDocument",
                      "pages": 1,
                      "parentDocumentId": null,
                      "previewDocument": null,
                      "price": 0.1,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    }
                  ],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 1,
                  "totalCount": 1,
                  "totalPages": 1
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": 5502,
                "lastFetchDate": "2019-05-16T06:58:03+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 5900,
                "text": "(#5502) PRETRIAL ORDER NO. 468 (Disposition of Remaining Funds): THE PEC has reported that there remains in the CRIS I account de minimis interest, and that the CRIS II account held the sum of $42,234.81 as of March 11, 2009. The PEC acknowledges that defendants are entitled to the return of this money upon application to the Special Master. In the circumstances, all parties are directed to show cause, on or before June 15, 2009, why an order should not be entered disposing of all remaining funds in the CRIS I and CRIS II accounts as follows: 1. The remaining balance in the CRIS I account to be paid to the Legal Aid Society. 2. The balance remaining in the CRIS II account after PTO No. 466, dated May 4, 2009, becomes final and the fees and expenses contemplated thereby are paid to be returned to the defendant(s) who deposited it to the account. Plaintiffs' Liaison counsel shall serve a copy of this order on or before June 3, 2009, on each attorney who has appeared in this MDL. (Signed by Judge Lewis A. Kaplan on 5/28/09) Filed In Associated Cases: 1:00-cv-02843-LAK-GWG et al.(tro) (Entered: 05/29/2009)",
                "textStructured": null
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2009-05-27T00:00:00+00:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": 5501,
                "lastFetchDate": "2019-05-16T06:58:01+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 5899,
                "text": "(#5501) PLAINTIFF'S (Letter) MOTION for the Reimbursement of excess holdback funds for the Byrd & Associates Rezulin clients that are involved in the Rezulin MDL. This motion was decided by Pretrial Order No. 466 dated 5/26/09. *This document has been docketed pursuant to instructions from Chambers on 5/27/09. (tro) (Entered: 05/27/2009)",
                "textStructured": null
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2009-05-27T00:00:00+00:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2019-05-16T06:58:01+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 5898,
                "text": "CASHIERS OFFICE CRIS DEPOSIT dated 3/20/02, from Judge Judge Lewis A. Kaplan, $23,938.00 from REZULIN PRODUCTS deposited on 5/21/09, Receipt Number 688705 and placed into CRIS on 5/27/09. (dig) (Entered: 05/27/2009)",
                "textStructured": null
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2009-05-26T00:00:00+00:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2019-05-16T06:58:01+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 5897,
                "text": "Set Deadlines/Hearings: Motions due by 6/9/2009. (tro) (Entered: 05/26/2009)",
                "textStructured": null
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2009-05-26T00:00:00+00:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdgf35362b45ca8",
                      "childDocumentIdArray": [],
                      "description": null,
                      "documentFiledDate": "2009-05-26T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:58:01+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5500",
                      "object": "CaseDocument",
                      "pages": 1,
                      "parentDocumentId": null,
                      "previewDocument": null,
                      "price": 0.1,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    }
                  ],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 1,
                  "totalCount": 1,
                  "totalPages": 1
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": 5500,
                "lastFetchDate": "2019-05-16T06:58:01+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 5896,
                "text": "(#5500) PRETRIAL ORDER NO. 466 denying 5499 Motion. A law firm called Byrd & Associates has moved for a refund of excess funds in the interim CRIS account. There are several problems with the application. First, the caption does not comply with the relevant pretrial orders in that it states \"This Document Relates to: Certain Cases\" without identifying the pertinent cases by docket number.Second, the application fails adequately to explain the basis for the relief sought and is not accompanied by proof of service. Third, this case has been designated an electronic filing case but the papers were merely mailed to chambers. Accordingly, the application is denied. This ruling is without prejudice to the filing, no later than June 9, 2009, of a proper motion via the ECF system. (Signed by Judge Lewis A. Kaplan on 5/26/09) (tro) (Entered: 05/26/2009)",
                "textStructured": null
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2009-05-22T00:00:00+00:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": 5499,
                "lastFetchDate": "2019-05-16T06:58:01+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 5895,
                "text": "(#5499) MOTION for Refund of Excess Funds in Interim CRIS Account. (Document filed by Byrd and Associates w. knowledge and consent of Warner Lambert Defendants)(djc) (Entered: 05/26/2009)",
                "textStructured": null
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2009-05-15T00:00:00+00:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdg0583d828bf99",
                      "childDocumentIdArray": [],
                      "description": null,
                      "documentFiledDate": "2009-05-15T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:58:01+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5498",
                      "object": "CaseDocument",
                      "pages": 3,
                      "parentDocumentId": null,
                      "previewDocument": null,
                      "price": 0.3,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    }
                  ],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 1,
                  "totalCount": 1,
                  "totalPages": 1
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": 5498,
                "lastFetchDate": "2019-05-16T06:58:01+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 5894,
                "text": "(#5498) STATUS REPORT. THE PLAINTIFFS' EXECUTIVE COMMITTEE'S REPORT PURSUANT TO PRETRIAL ORDER NO. 466 Document filed by Plaintiffs' Executive Commitee.(Fineman, Steven) (Entered: 05/15/2009)",
                "textStructured": null
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2009-05-14T00:00:00+00:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2019-05-16T06:58:00+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 5893,
                "text": "CASHIERS OFFICE REMARK in the amount of $25.00, paid on 04/22/2009, Receipt Number 686037. PAYMENT PRO HAC VICE FOR ZOE LITTLEPAGE (jd) (Entered: 05/14/2009)",
                "textStructured": null
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2009-05-04T00:00:00+00:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdg757f538ba251",
                      "childDocumentIdArray": [],
                      "description": null,
                      "documentFiledDate": "2009-05-04T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:58:00+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5497",
                      "object": "CaseDocument",
                      "pages": 2,
                      "parentDocumentId": null,
                      "previewDocument": null,
                      "price": 0.2,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    }
                  ],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 1,
                  "totalCount": 1,
                  "totalPages": 1
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": 5497,
                "lastFetchDate": "2019-05-16T06:58:00+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 5892,
                "text": "(#5497) PRETRIAL ORDER NO. 466 (Common Benefit Fee Awards) in case 1:00-cv-08059-LAK; granting in part and denying in part (5486) Motion to Approve ; granting in part and denying in part (5490) Motion for Leave to File Document in case 1:00-cv-02843-LAK-GWG. This matter is before the Court on the motions by (1) the Plaintiffs' Executive Committee (\"PEC\") and Plaintiffs' Steering Committee (\"PSC\") for an award of counsel fees and other relief, to the extent not previously granted [00 Civ. 2843 docket item 5486], and (2) the motion of the Littlepage Firm, P.C. for leave to file objections thereto and a petition for an award of counsel fees and expenses to it [00 Civ. 2843 docket item 5490]. Subsequent to the filing of these papers, the PEC and PSC have reached agreement, contingent on the Court granting the motion of the Littlepage Firm for leave to file, with respect to awards of fees and expenses. Having considered the papers before it, the Littlepage Firm's motion [00 Civ. 2843 docket item 5490] is granted insofar as it seeks leave to file a petition for an award of counsel fees and expenses and, in view of the agreement of counsel, denied insofar as it seeks leave to file objections to the PEC/PSC request. In addition, The Littlepage Firm's petition is granted to the extent that it is awarded counsel fees in the amount of $75,000 and reimbursement of expenses in the amount of $131,470 as agreed among counsel. [00 Civ. 2843 docket item 5495, Ex. A] The motion of the PEC/PSC [00 Civ. 2843 docket item 5486] is granted to the following extent: 1. The Special Master shall be paid from CRIS Account I fees and out of pocket expenses in the aggregate amount of $140,174.23, which the Court finds to have been reasonably and properly incurred in the course of providing common benefit work in this MDL. 2. Disbursements in the aggregate amount of $6,697,089.62, which the Court finds to have been reasonably and properly incurred in the course of providing common benefit work in this MDL, shall be reimbursed out of the CRIS Account I as set forth in the \"Final Submission\" column on Exhibit C to the affidavit of Robert P. Enderle, Esq., in support of the PEC/PSC motion [00 Civ. 2843 docket item 5486]. The Special Master shall disburse those amounts directly to the firms in question as set forth in said Exhibit C. 3. Counsel fees in the aggregate amount of $17,363,068.24 (the amount of the CRIS I account as of March 11, 2009 less the awards of disbursements, the Littlepage fee award and the payment to the Special Master), which the Court finds to have been reasonably and properly incurred in the course of providing common benefit work in this MDL, shall be paid out of the CRIS Account I to the Tier A, Tier B and Tier C firms identified in the affidavit of Arnold Levin, submitted in support of the PEC/PSC motion, in accordance with the Plan of Allocation set forth therein. The PEC is directed to submit its views as to the appropriate disposition of any amounts remaining in the CRIS I and CRIS II accounts no later than May 15, 2009. As the entry of an order disposing of any such amounts will conclude this MDL, the Clerk is directed to (a) close any cases that remain open (other than 00 Civ. 2843), and (b) terminate any motions that remain pending in any of the cases in this MDL. (Signed by Judge Lewis A. Kaplan on 5/4/09) Filed In Associated Cases: 1:00-cv-02843-LAK-GWG et al.(tro) (Entered: 05/05/2009)",
                "textStructured": null
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2009-05-04T00:00:00+00:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdg38fd3b4728fd",
                      "childDocumentIdArray": [],
                      "description": null,
                      "documentFiledDate": "2009-05-04T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:57:59+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5496",
                      "object": "CaseDocument",
                      "pages": 2,
                      "parentDocumentId": null,
                      "previewDocument": null,
                      "price": 0.2,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    }
                  ],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 1,
                  "totalCount": 1,
                  "totalPages": 1
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": 5496,
                "lastFetchDate": "2019-05-16T06:57:59+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [
                  {
                    "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgr45196c84f3ff/docketEntries?pageNumber=1&docketNumber=5495",
                    "docketNumber": 5495,
                    "object": "ReferencedDocketNumber"
                  }
                ],
                "sortOrder": 5891,
                "text": "(#5496) NOTICE of ERRATA re: #5495 Response to Motion,. Document filed by Plaintiffs' Executive Commitee. (Fineman, Steven) (Entered: 05/04/2009)",
                "textStructured": null
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2009-04-30T00:00:00+00:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdgc9afa3233b29",
                      "childDocumentIdArray": [
                        "CDOCdg3f5fd1445c2d"
                      ],
                      "description": null,
                      "documentFiledDate": "2009-04-30T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:57:58+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5495",
                      "object": "CaseDocument",
                      "pages": 5,
                      "parentDocumentId": null,
                      "previewDocument": null,
                      "price": 0.5,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    }
                  ],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 1,
                  "totalCount": 1,
                  "totalPages": 1
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdg3f5fd1445c2d",
                      "childDocumentIdArray": [],
                      "description": "Exhibit A",
                      "documentFiledDate": "2009-04-30T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:57:58+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5495 #2",
                      "object": "CaseDocument",
                      "pages": 2,
                      "parentDocumentId": "CDOCdgc9afa3233b29",
                      "previewDocument": null,
                      "price": 0.2,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    }
                  ],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 1,
                  "totalCount": 1,
                  "totalPages": 1
                },
                "docketNumber": 5495,
                "lastFetchDate": "2019-05-16T06:57:58+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [
                  {
                    "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgr45196c84f3ff/docketEntries?pageNumber=1&docketNumber=5490",
                    "docketNumber": 5490,
                    "object": "ReferencedDocketNumber"
                  }
                ],
                "sortOrder": 5890,
                "text": "(#5495) RESPONSE to Motion re: #5490 MOTION for Leave to File Petition and Objection. To The PEC's And PSC's Motion For Counsel Fees And Reimbursement Of Expenses. Document filed by Plaintiffs' Executive Commitee. (Attachments: #1 Exhibit A)(Fineman, Steven) (Entered: 04/30/2009)",
                "textStructured": null
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2009-04-28T00:00:00+00:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2019-05-16T06:57:58+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [
                  {
                    "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgr45196c84f3ff/docketEntries?pageNumber=1&docketNumber=5494",
                    "docketNumber": 5494,
                    "object": "ReferencedDocketNumber"
                  }
                ],
                "sortOrder": 5889,
                "text": "Transmission to Attorney Admissions Clerk. Transmitted re: #5494 Memo Endorsement, to the Attorney Admissions Clerk for updating of Attorney Information. (tro) (Entered: 04/28/2009)",
                "textStructured": null
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2009-04-28T00:00:00+00:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdgf62b7cf445eb",
                      "childDocumentIdArray": [],
                      "description": null,
                      "documentFiledDate": "2009-04-28T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:57:57+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5494",
                      "object": "CaseDocument",
                      "pages": 2,
                      "parentDocumentId": null,
                      "previewDocument": null,
                      "price": 0.2,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    }
                  ],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 1,
                  "totalCount": 1,
                  "totalPages": 1
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": 5494,
                "lastFetchDate": "2019-05-16T06:57:58+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [
                  {
                    "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgr45196c84f3ff/docketEntries?pageNumber=1&docketNumber=5493",
                    "docketNumber": 5493,
                    "object": "ReferencedDocketNumber"
                  }
                ],
                "sortOrder": 5888,
                "text": "(#5494) MEMO ENDORSEMENT on re: #5493 MOTION for Zoe Littlepage to Appear Pro Hac Vice filed by Plaintiffs' Executive Committee. ENDORSEMENT: Granted. (Signed by Judge Lewis A. Kaplan on 4/26/09) (tro) (Entered: 04/28/2009)",
                "textStructured": null
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2009-04-22T00:00:00+00:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdg4b45cd25f7d8",
                      "childDocumentIdArray": [],
                      "description": null,
                      "documentFiledDate": "2009-04-22T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:57:57+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5493",
                      "object": "CaseDocument",
                      "pages": 14,
                      "parentDocumentId": null,
                      "previewDocument": null,
                      "price": 1.4,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    }
                  ],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 1,
                  "totalCount": 1,
                  "totalPages": 1
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": 5493,
                "lastFetchDate": "2019-05-16T06:57:57+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 5887,
                "text": "(#5493) MOTION for an Order, pursuant to Rule 1.3(c) of the Local Rules of the U.S.D.C. for the S.D.N.Y. for Zoe Littlepage to Appear Pro Hac Vice. Document filed by Plaintiffs (Plaintiffs' Executive Committee) in Master File 1:00-cv-2843(LAK). (tro) (Entered: 04/23/2009)",
                "textStructured": null
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2009-04-22T00:00:00+00:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdg97c5a94cfb25",
                      "childDocumentIdArray": [],
                      "description": null,
                      "documentFiledDate": "2009-04-22T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:57:56+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5492",
                      "object": "CaseDocument",
                      "pages": 1,
                      "parentDocumentId": null,
                      "previewDocument": null,
                      "price": 0.1,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    }
                  ],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 1,
                  "totalCount": 1,
                  "totalPages": 1
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": 5492,
                "lastFetchDate": "2019-05-16T06:57:56+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 5886,
                "text": "(#5492) NOTICE OF APPEARANCE by Eleanor Louise Polimeni on behalf of Plaintiffs' Executive Commitee (Polimeni, Eleanor) (Entered: 04/22/2009)",
                "textStructured": null
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2009-04-17T00:00:00+00:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdg36297d43e46d",
                      "childDocumentIdArray": [
                        "CDOCdg58f618bad58c",
                        "CDOCdg858c72226efc",
                        "CDOCdg022c43e206e9",
                        "CDOCdg3642cc9bc329",
                        "CDOCdg528d3e5aeeca",
                        "CDOCdg0c562aa60aa5",
                        "CDOCdgffa6cb503bdb",
                        "CDOCdg6d20d8c5e21b",
                        "CDOCdgce9c55fc1279",
                        "CDOCdgf8f2aae9b76b",
                        "CDOCdg2874b6b5c0e0",
                        "CDOCdg596900b8c5fe",
                        "CDOCdgddcc05d5304b",
                        "CDOCdg80358b9320aa",
                        "CDOCdge9bf98f515cf",
                        "CDOCdg0de971b5f2f3",
                        "CDOCdg3d188e756cd6",
                        "CDOCdg9ca6d257d50c",
                        "CDOCdg257506ff4e50",
                        "CDOCdgaf170c6358a7",
                        "CDOCdg7803eb718c30",
                        "CDOCdg06f939808a0e",
                        "CDOCdg745e37dadb9e",
                        "CDOCdg3267443ad742",
                        "CDOCdg7c017720171e",
                        "CDOCdg9f6fc865775d",
                        "CDOCdg96a3fac48c34",
                        "CDOCdg31b70d41dc19",
                        "CDOCdgace900374a30",
                        "CDOCdgb8c54e576881",
                        "CDOCdgb8af8c63d5ba",
                        "CDOCdg2c0777e6f0d7",
                        "CDOCdgdb3e667a6793",
                        "CDOCdge0c49bf24757",
                        "CDOCdg2c9cd2601ffd",
                        "CDOCdga4ee4c8a7f51",
                        "CDOCdg0de15dcd89f2",
                        "CDOCdg067bcc453efe",
                        "CDOCdgf280bf06556b",
                        "CDOCdgdf8e033d2261",
                        "CDOCdg2a7c308f1a2d",
                        "CDOCdge99060f8b62b",
                        "CDOCdg8eefab5f1a49",
                        "CDOCdg670595dbae9b",
                        "CDOCdgf50cf560f06e",
                        "CDOCdgda4b18fee4c2",
                        "CDOCdg64260a489c43",
                        "CDOCdgbc8da08986ee",
                        "CDOCdgef476c9e5624",
                        "CDOCdg1e7991ad0229",
                        "CDOCdg141940f03a4d",
                        "CDOCdg33bb412e397d",
                        "CDOCdg24d4c6fe67b0",
                        "CDOCdg1d15455db5f6",
                        "CDOCdg41b4ac0ac78e",
                        "CDOCdgbf56a1a43659",
                        "CDOCdge4397921fece",
                        "CDOCdg9022dacfe175",
                        "CDOCdgb2fd9917be02",
                        "CDOCdgeaf3c16d54ef",
                        "CDOCdg36207cb92f99",
                        "CDOCdgb28d85fb7fa9",
                        "CDOCdg1b85bb97a5b7",
                        "CDOCdge591c2b9645b",
                        "CDOCdg7de79bd32cc7"
                      ],
                      "description": null,
                      "documentFiledDate": "2009-04-17T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:57:54+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5491",
                      "object": "CaseDocument",
                      "pages": 4,
                      "parentDocumentId": null,
                      "previewDocument": null,
                      "price": 0.4,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    }
                  ],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 1,
                  "totalCount": 1,
                  "totalPages": 1
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdg64260a489c43",
                      "childDocumentIdArray": [],
                      "description": "Exhibit A2 part 1",
                      "documentFiledDate": "2009-04-17T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:57:54+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5491 #5",
                      "object": "CaseDocument",
                      "pages": 30,
                      "parentDocumentId": "CDOCdg36297d43e46d",
                      "previewDocument": null,
                      "price": 3,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    },
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdg41b4ac0ac78e",
                      "childDocumentIdArray": [],
                      "description": "Exhibit A2 part 10",
                      "documentFiledDate": "2009-04-17T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:57:54+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5491 #14",
                      "object": "CaseDocument",
                      "pages": 91,
                      "parentDocumentId": "CDOCdg36297d43e46d",
                      "previewDocument": null,
                      "price": 3,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    },
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdgbf56a1a43659",
                      "childDocumentIdArray": [],
                      "description": "Exhibit A2 part 22",
                      "documentFiledDate": "2009-04-17T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:57:54+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5491 #26",
                      "object": "CaseDocument",
                      "pages": 28,
                      "parentDocumentId": "CDOCdg36297d43e46d",
                      "previewDocument": null,
                      "price": 2.8,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    },
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdge4397921fece",
                      "childDocumentIdArray": [],
                      "description": "Exhibit B",
                      "documentFiledDate": "2009-04-17T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:57:54+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5491 #33",
                      "object": "CaseDocument",
                      "pages": 9,
                      "parentDocumentId": "CDOCdg36297d43e46d",
                      "previewDocument": null,
                      "price": 0.9,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    },
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdg9022dacfe175",
                      "childDocumentIdArray": [],
                      "description": "Exhibit A2 part 13",
                      "documentFiledDate": "2009-04-17T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:57:54+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5491 #17",
                      "object": "CaseDocument",
                      "pages": 3,
                      "parentDocumentId": "CDOCdg36297d43e46d",
                      "previewDocument": null,
                      "price": 0.3,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    },
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdgb2fd9917be02",
                      "childDocumentIdArray": [],
                      "description": "Exhibit A2 part 2",
                      "documentFiledDate": "2009-04-17T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:57:54+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5491 #6",
                      "object": "CaseDocument",
                      "pages": 2,
                      "parentDocumentId": "CDOCdg36297d43e46d",
                      "previewDocument": null,
                      "price": 0.2,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    },
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdgeaf3c16d54ef",
                      "childDocumentIdArray": [],
                      "description": "Exhibit A2 part 19",
                      "documentFiledDate": "2009-04-17T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:57:54+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5491 #23",
                      "object": "CaseDocument",
                      "pages": 13,
                      "parentDocumentId": "CDOCdg36297d43e46d",
                      "previewDocument": null,
                      "price": 1.3,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    },
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdg36207cb92f99",
                      "childDocumentIdArray": [],
                      "description": "Errata B4 part 25",
                      "documentFiledDate": "2009-04-17T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:57:54+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5491 #62",
                      "object": "CaseDocument",
                      "pages": 3,
                      "parentDocumentId": "CDOCdg36297d43e46d",
                      "previewDocument": null,
                      "price": 0.3,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    },
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdgb28d85fb7fa9",
                      "childDocumentIdArray": [],
                      "description": "Exhibit B4 part 4",
                      "documentFiledDate": "2009-04-17T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:57:54+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5491 #41",
                      "object": "CaseDocument",
                      "pages": 5,
                      "parentDocumentId": "CDOCdg36297d43e46d",
                      "previewDocument": null,
                      "price": 0.5,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    },
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdg1b85bb97a5b7",
                      "childDocumentIdArray": [],
                      "description": "Exhibit B7",
                      "documentFiledDate": "2009-04-17T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:57:54+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5491 #65",
                      "object": "CaseDocument",
                      "pages": 4,
                      "parentDocumentId": "CDOCdg36297d43e46d",
                      "previewDocument": null,
                      "price": 0.4,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    },
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdge591c2b9645b",
                      "childDocumentIdArray": [],
                      "description": "Exhibit B4 part 14",
                      "documentFiledDate": "2009-04-17T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:57:54+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5491 #51",
                      "object": "CaseDocument",
                      "pages": 3,
                      "parentDocumentId": "CDOCdg36297d43e46d",
                      "previewDocument": null,
                      "price": 0.3,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    },
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdg7de79bd32cc7",
                      "childDocumentIdArray": [],
                      "description": "Exhibit A2 part 23",
                      "documentFiledDate": "2009-04-17T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:57:54+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5491 #27",
                      "object": "CaseDocument",
                      "pages": 3,
                      "parentDocumentId": "CDOCdg36297d43e46d",
                      "previewDocument": null,
                      "price": 0.3,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    },
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdg58f618bad58c",
                      "childDocumentIdArray": [],
                      "description": "Exhibit A4",
                      "documentFiledDate": "2009-04-17T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:57:54+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5491 #31",
                      "object": "CaseDocument",
                      "pages": 12,
                      "parentDocumentId": "CDOCdg36297d43e46d",
                      "previewDocument": null,
                      "price": 1.2,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    },
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdg858c72226efc",
                      "childDocumentIdArray": [],
                      "description": "Errata A2 part 4",
                      "documentFiledDate": "2009-04-17T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:57:54+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5491 #8",
                      "object": "CaseDocument",
                      "pages": 5,
                      "parentDocumentId": "CDOCdg36297d43e46d",
                      "previewDocument": null,
                      "price": 0.5,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    },
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdg022c43e206e9",
                      "childDocumentIdArray": [],
                      "description": "Exhibit B2",
                      "documentFiledDate": "2009-04-17T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:57:54+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5491 #35",
                      "object": "CaseDocument",
                      "pages": 2,
                      "parentDocumentId": "CDOCdg36297d43e46d",
                      "previewDocument": null,
                      "price": 0.2,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    },
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdg3642cc9bc329",
                      "childDocumentIdArray": [],
                      "description": "Exhibit B4 part 24",
                      "documentFiledDate": "2009-04-17T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:57:54+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5491 #61",
                      "object": "CaseDocument",
                      "pages": 2,
                      "parentDocumentId": "CDOCdg36297d43e46d",
                      "previewDocument": null,
                      "price": 0.2,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    },
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdg528d3e5aeeca",
                      "childDocumentIdArray": [],
                      "description": "Exhibit A2 part 8",
                      "documentFiledDate": "2009-04-17T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:57:54+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5491 #12",
                      "object": "CaseDocument",
                      "pages": 50,
                      "parentDocumentId": "CDOCdg36297d43e46d",
                      "previewDocument": null,
                      "price": 3,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    },
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdg0c562aa60aa5",
                      "childDocumentIdArray": [],
                      "description": "Exhibit A2 part 20",
                      "documentFiledDate": "2009-04-17T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:57:54+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5491 #24",
                      "object": "CaseDocument",
                      "pages": 4,
                      "parentDocumentId": "CDOCdg36297d43e46d",
                      "previewDocument": null,
                      "price": 0.4,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    },
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdgffa6cb503bdb",
                      "childDocumentIdArray": [],
                      "description": "Exhibit B4 part 11",
                      "documentFiledDate": "2009-04-17T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:57:54+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5491 #48",
                      "object": "CaseDocument",
                      "pages": 3,
                      "parentDocumentId": "CDOCdg36297d43e46d",
                      "previewDocument": null,
                      "price": 0.3,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    },
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdg6d20d8c5e21b",
                      "childDocumentIdArray": [],
                      "description": "Exhibit B4 part 5",
                      "documentFiledDate": "2009-04-17T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:57:54+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5491 #42",
                      "object": "CaseDocument",
                      "pages": 4,
                      "parentDocumentId": "CDOCdg36297d43e46d",
                      "previewDocument": null,
                      "price": 0.4,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    },
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdgce9c55fc1279",
                      "childDocumentIdArray": [],
                      "description": "Exhibit B4 part 10",
                      "documentFiledDate": "2009-04-17T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:57:54+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5491 #47",
                      "object": "CaseDocument",
                      "pages": 91,
                      "parentDocumentId": "CDOCdg36297d43e46d",
                      "previewDocument": null,
                      "price": 3,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    },
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdgf8f2aae9b76b",
                      "childDocumentIdArray": [],
                      "description": "Errata B4 part 20",
                      "documentFiledDate": "2009-04-17T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:57:54+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5491 #57",
                      "object": "CaseDocument",
                      "pages": 4,
                      "parentDocumentId": "CDOCdg36297d43e46d",
                      "previewDocument": null,
                      "price": 0.4,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    },
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdg2874b6b5c0e0",
                      "childDocumentIdArray": [],
                      "description": "Exhibit B1",
                      "documentFiledDate": "2009-04-17T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:57:54+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5491 #34",
                      "object": "CaseDocument",
                      "pages": 3,
                      "parentDocumentId": "CDOCdg36297d43e46d",
                      "previewDocument": null,
                      "price": 0.3,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    },
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdg596900b8c5fe",
                      "childDocumentIdArray": [],
                      "description": "Exhibit B4 part 16",
                      "documentFiledDate": "2009-04-17T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:57:54+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5491 #53",
                      "object": "CaseDocument",
                      "pages": 70,
                      "parentDocumentId": "CDOCdg36297d43e46d",
                      "previewDocument": null,
                      "price": 3,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    },
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdgddcc05d5304b",
                      "childDocumentIdArray": [],
                      "description": "Exhibit A2 part 7",
                      "documentFiledDate": "2009-04-17T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:57:54+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5491 #11",
                      "object": "CaseDocument",
                      "pages": 9,
                      "parentDocumentId": "CDOCdg36297d43e46d",
                      "previewDocument": null,
                      "price": 0.9,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    },
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdg80358b9320aa",
                      "childDocumentIdArray": [],
                      "description": "Exhibit B4 part 19",
                      "documentFiledDate": "2009-04-17T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:57:54+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5491 #56",
                      "object": "CaseDocument",
                      "pages": 13,
                      "parentDocumentId": "CDOCdg36297d43e46d",
                      "previewDocument": null,
                      "price": 1.3,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    },
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdge9bf98f515cf",
                      "childDocumentIdArray": [],
                      "description": "Exhibit A2 part 5",
                      "documentFiledDate": "2009-04-17T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:57:54+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5491 #9",
                      "object": "CaseDocument",
                      "pages": 4,
                      "parentDocumentId": "CDOCdg36297d43e46d",
                      "previewDocument": null,
                      "price": 0.4,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    },
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdg0de971b5f2f3",
                      "childDocumentIdArray": [],
                      "description": "Exhibit B4 part 3",
                      "documentFiledDate": "2009-04-17T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:57:54+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5491 #40",
                      "object": "CaseDocument",
                      "pages": 14,
                      "parentDocumentId": "CDOCdg36297d43e46d",
                      "previewDocument": null,
                      "price": 1.4,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    },
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdg3d188e756cd6",
                      "childDocumentIdArray": [],
                      "description": "Exhibit A2 part 21",
                      "documentFiledDate": "2009-04-17T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:57:54+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5491 #25",
                      "object": "CaseDocument",
                      "pages": 2,
                      "parentDocumentId": "CDOCdg36297d43e46d",
                      "previewDocument": null,
                      "price": 0.2,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    },
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdg9ca6d257d50c",
                      "childDocumentIdArray": [],
                      "description": "Exhibit A2 part 25",
                      "documentFiledDate": "2009-04-17T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:57:54+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5491 #29",
                      "object": "CaseDocument",
                      "pages": 3,
                      "parentDocumentId": "CDOCdg36297d43e46d",
                      "previewDocument": null,
                      "price": 0.3,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    },
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdg257506ff4e50",
                      "childDocumentIdArray": [],
                      "description": "Exhibit B4 part 17",
                      "documentFiledDate": "2009-04-17T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:57:54+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5491 #54",
                      "object": "CaseDocument",
                      "pages": 4,
                      "parentDocumentId": "CDOCdg36297d43e46d",
                      "previewDocument": null,
                      "price": 0.4,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    },
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdgaf170c6358a7",
                      "childDocumentIdArray": [],
                      "description": "Exhibit B4 part 21",
                      "documentFiledDate": "2009-04-17T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:57:54+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5491 #58",
                      "object": "CaseDocument",
                      "pages": 2,
                      "parentDocumentId": "CDOCdg36297d43e46d",
                      "previewDocument": null,
                      "price": 0.2,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    },
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdg7803eb718c30",
                      "childDocumentIdArray": [],
                      "description": "Exhibit A2 part 15",
                      "documentFiledDate": "2009-04-17T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:57:54+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5491 #19",
                      "object": "CaseDocument",
                      "pages": 6,
                      "parentDocumentId": "CDOCdg36297d43e46d",
                      "previewDocument": null,
                      "price": 0.6,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    },
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdg06f939808a0e",
                      "childDocumentIdArray": [],
                      "description": "Exhibit B4 part 9",
                      "documentFiledDate": "2009-04-17T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:57:54+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5491 #46",
                      "object": "CaseDocument",
                      "pages": 3,
                      "parentDocumentId": "CDOCdg36297d43e46d",
                      "previewDocument": null,
                      "price": 0.3,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    },
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdg745e37dadb9e",
                      "childDocumentIdArray": [],
                      "description": "Exhibit C",
                      "documentFiledDate": "2009-04-17T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:57:54+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5491 #66",
                      "object": "CaseDocument",
                      "pages": 3,
                      "parentDocumentId": "CDOCdg36297d43e46d",
                      "previewDocument": null,
                      "price": 0.3,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    },
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdg3267443ad742",
                      "childDocumentIdArray": [],
                      "description": "Exhibit B5",
                      "documentFiledDate": "2009-04-17T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:57:54+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5491 #63",
                      "object": "CaseDocument",
                      "pages": 3,
                      "parentDocumentId": "CDOCdg36297d43e46d",
                      "previewDocument": null,
                      "price": 0.3,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    },
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdg7c017720171e",
                      "childDocumentIdArray": [],
                      "description": "Errata B4 part 6",
                      "documentFiledDate": "2009-04-17T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:57:54+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5491 #43",
                      "object": "CaseDocument",
                      "pages": 50,
                      "parentDocumentId": "CDOCdg36297d43e46d",
                      "previewDocument": null,
                      "price": 3,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    },
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdg9f6fc865775d",
                      "childDocumentIdArray": [],
                      "description": "Exhibit A2 part 14",
                      "documentFiledDate": "2009-04-17T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:57:54+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5491 #18",
                      "object": "CaseDocument",
                      "pages": 3,
                      "parentDocumentId": "CDOCdg36297d43e46d",
                      "previewDocument": null,
                      "price": 0.3,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    },
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdg96a3fac48c34",
                      "childDocumentIdArray": [],
                      "description": "Exhibit A2 part 17",
                      "documentFiledDate": "2009-04-17T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:57:54+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5491 #21",
                      "object": "CaseDocument",
                      "pages": 4,
                      "parentDocumentId": "CDOCdg36297d43e46d",
                      "previewDocument": null,
                      "price": 0.4,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    },
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdg31b70d41dc19",
                      "childDocumentIdArray": [],
                      "description": "Exhibit B4 part 12",
                      "documentFiledDate": "2009-04-17T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:57:54+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5491 #49",
                      "object": "CaseDocument",
                      "pages": 14,
                      "parentDocumentId": "CDOCdg36297d43e46d",
                      "previewDocument": null,
                      "price": 1.4,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    },
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdgace900374a30",
                      "childDocumentIdArray": [],
                      "description": "Exhibit B4 part 23",
                      "documentFiledDate": "2009-04-17T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:57:54+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5491 #60",
                      "object": "CaseDocument",
                      "pages": 3,
                      "parentDocumentId": "CDOCdg36297d43e46d",
                      "previewDocument": null,
                      "price": 0.3,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    },
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdgb8c54e576881",
                      "childDocumentIdArray": [],
                      "description": "Exhibit B4 part 1",
                      "documentFiledDate": "2009-04-17T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:57:54+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5491 #38",
                      "object": "CaseDocument",
                      "pages": 30,
                      "parentDocumentId": "CDOCdg36297d43e46d",
                      "previewDocument": null,
                      "price": 3,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    },
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdgb8af8c63d5ba",
                      "childDocumentIdArray": [],
                      "description": "Exhibit B4 part 7",
                      "documentFiledDate": "2009-04-17T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:57:54+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5491 #44",
                      "object": "CaseDocument",
                      "pages": 9,
                      "parentDocumentId": "CDOCdg36297d43e46d",
                      "previewDocument": null,
                      "price": 0.9,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    },
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdg2c0777e6f0d7",
                      "childDocumentIdArray": [],
                      "description": "Exhibit A2 part 6",
                      "documentFiledDate": "2009-04-17T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:57:54+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5491 #10",
                      "object": "CaseDocument",
                      "pages": 50,
                      "parentDocumentId": "CDOCdg36297d43e46d",
                      "previewDocument": null,
                      "price": 3,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    },
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdgdb3e667a6793",
                      "childDocumentIdArray": [],
                      "description": "Exhibit A2 part 11",
                      "documentFiledDate": "2009-04-17T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:57:54+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5491 #15",
                      "object": "CaseDocument",
                      "pages": 3,
                      "parentDocumentId": "CDOCdg36297d43e46d",
                      "previewDocument": null,
                      "price": 0.3,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    },
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdge0c49bf24757",
                      "childDocumentIdArray": [],
                      "description": "Exhibit A1",
                      "documentFiledDate": "2009-04-17T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:57:54+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5491 #3",
                      "object": "CaseDocument",
                      "pages": 30,
                      "parentDocumentId": "CDOCdg36297d43e46d",
                      "previewDocument": null,
                      "price": 3,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    },
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdg2c9cd2601ffd",
                      "childDocumentIdArray": [],
                      "description": "Exhibit A",
                      "documentFiledDate": "2009-04-17T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:57:54+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5491 #2",
                      "object": "CaseDocument",
                      "pages": 7,
                      "parentDocumentId": "CDOCdg36297d43e46d",
                      "previewDocument": null,
                      "price": 0.7,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    },
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdga4ee4c8a7f51",
                      "childDocumentIdArray": [],
                      "description": "Exhibit B4 part 13",
                      "documentFiledDate": "2009-04-17T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:57:54+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5491 #50",
                      "object": "CaseDocument",
                      "pages": 3,
                      "parentDocumentId": "CDOCdg36297d43e46d",
                      "previewDocument": null,
                      "price": 0.3,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    },
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdg0de15dcd89f2",
                      "childDocumentIdArray": [],
                      "description": "Exhibit A3",
                      "documentFiledDate": "2009-04-17T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:57:54+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5491 #30",
                      "object": "CaseDocument",
                      "pages": 3,
                      "parentDocumentId": "CDOCdg36297d43e46d",
                      "previewDocument": null,
                      "price": 0.3,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    },
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdg067bcc453efe",
                      "childDocumentIdArray": [],
                      "description": "Exhibit A2 part 3",
                      "documentFiledDate": "2009-04-17T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:57:54+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5491 #7",
                      "object": "CaseDocument",
                      "pages": 14,
                      "parentDocumentId": "CDOCdg36297d43e46d",
                      "previewDocument": null,
                      "price": 1.4,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    },
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdgf280bf06556b",
                      "childDocumentIdArray": [],
                      "description": "Exhibit B4 part 22",
                      "documentFiledDate": "2009-04-17T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:57:54+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5491 #59",
                      "object": "CaseDocument",
                      "pages": 28,
                      "parentDocumentId": "CDOCdg36297d43e46d",
                      "previewDocument": null,
                      "price": 2.8,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    },
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdgdf8e033d2261",
                      "childDocumentIdArray": [],
                      "description": "Exhibit A2",
                      "documentFiledDate": "2009-04-17T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:57:54+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5491 #4",
                      "object": "CaseDocument",
                      "pages": 10,
                      "parentDocumentId": "CDOCdg36297d43e46d",
                      "previewDocument": null,
                      "price": 1,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    },
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdg2a7c308f1a2d",
                      "childDocumentIdArray": [],
                      "description": "Exhibit B6",
                      "documentFiledDate": "2009-04-17T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:57:54+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5491 #64",
                      "object": "CaseDocument",
                      "pages": 12,
                      "parentDocumentId": "CDOCdg36297d43e46d",
                      "previewDocument": null,
                      "price": 1.2,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    },
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdge99060f8b62b",
                      "childDocumentIdArray": [],
                      "description": "Exhibit B4 part 8",
                      "documentFiledDate": "2009-04-17T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:57:54+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5491 #45",
                      "object": "CaseDocument",
                      "pages": 106,
                      "parentDocumentId": "CDOCdg36297d43e46d",
                      "previewDocument": null,
                      "price": 3,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    },
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdg8eefab5f1a49",
                      "childDocumentIdArray": [],
                      "description": "Exhibit A2 part 9",
                      "documentFiledDate": "2009-04-17T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:57:54+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5491 #13",
                      "object": "CaseDocument",
                      "pages": 3,
                      "parentDocumentId": "CDOCdg36297d43e46d",
                      "previewDocument": null,
                      "price": 0.3,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    },
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdg670595dbae9b",
                      "childDocumentIdArray": [],
                      "description": "Exhibit A2 part 18",
                      "documentFiledDate": "2009-04-17T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:57:54+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5491 #22",
                      "object": "CaseDocument",
                      "pages": 3,
                      "parentDocumentId": "CDOCdg36297d43e46d",
                      "previewDocument": null,
                      "price": 0.3,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    },
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdgf50cf560f06e",
                      "childDocumentIdArray": [],
                      "description": "Exhibit B4 part 18",
                      "documentFiledDate": "2009-04-17T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:57:54+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5491 #55",
                      "object": "CaseDocument",
                      "pages": 3,
                      "parentDocumentId": "CDOCdg36297d43e46d",
                      "previewDocument": null,
                      "price": 0.3,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    },
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdgda4b18fee4c2",
                      "childDocumentIdArray": [],
                      "description": "Exhibit A2 part 12",
                      "documentFiledDate": "2009-04-17T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:57:54+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5491 #16",
                      "object": "CaseDocument",
                      "pages": 14,
                      "parentDocumentId": "CDOCdg36297d43e46d",
                      "previewDocument": null,
                      "price": 1.4,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    },
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdgbc8da08986ee",
                      "childDocumentIdArray": [],
                      "description": "Exhibit B4",
                      "documentFiledDate": "2009-04-17T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:57:54+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5491 #37",
                      "object": "CaseDocument",
                      "pages": 10,
                      "parentDocumentId": "CDOCdg36297d43e46d",
                      "previewDocument": null,
                      "price": 1,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    },
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdgef476c9e5624",
                      "childDocumentIdArray": [],
                      "description": "Exhibit B3",
                      "documentFiledDate": "2009-04-17T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:57:54+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5491 #36",
                      "object": "CaseDocument",
                      "pages": 30,
                      "parentDocumentId": "CDOCdg36297d43e46d",
                      "previewDocument": null,
                      "price": 3,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    },
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdg1e7991ad0229",
                      "childDocumentIdArray": [],
                      "description": "Exhibit A5",
                      "documentFiledDate": "2009-04-17T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:57:54+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5491 #32",
                      "object": "CaseDocument",
                      "pages": 4,
                      "parentDocumentId": "CDOCdg36297d43e46d",
                      "previewDocument": null,
                      "price": 0.4,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    },
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdg141940f03a4d",
                      "childDocumentIdArray": [],
                      "description": "Exhibit A2 part 16",
                      "documentFiledDate": "2009-04-17T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:57:54+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5491 #20",
                      "object": "CaseDocument",
                      "pages": 70,
                      "parentDocumentId": "CDOCdg36297d43e46d",
                      "previewDocument": null,
                      "price": 3,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    },
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdg33bb412e397d",
                      "childDocumentIdArray": [],
                      "description": "Exhibit A2 part 24",
                      "documentFiledDate": "2009-04-17T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:57:54+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5491 #28",
                      "object": "CaseDocument",
                      "pages": 2,
                      "parentDocumentId": "CDOCdg36297d43e46d",
                      "previewDocument": null,
                      "price": 0.2,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    },
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdg24d4c6fe67b0",
                      "childDocumentIdArray": [],
                      "description": "Exhibit B4 part 2",
                      "documentFiledDate": "2009-04-17T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:57:54+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5491 #39",
                      "object": "CaseDocument",
                      "pages": 2,
                      "parentDocumentId": "CDOCdg36297d43e46d",
                      "previewDocument": null,
                      "price": 0.2,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    },
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdg1d15455db5f6",
                      "childDocumentIdArray": [],
                      "description": "Exhibit B4 part 15",
                      "documentFiledDate": "2009-04-17T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:57:54+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5491 #52",
                      "object": "CaseDocument",
                      "pages": 6,
                      "parentDocumentId": "CDOCdg36297d43e46d",
                      "previewDocument": null,
                      "price": 0.6,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    }
                  ],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 1,
                  "totalCount": 65,
                  "totalPages": 1
                },
                "docketNumber": 5491,
                "lastFetchDate": "2019-05-16T06:57:56+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [
                  {
                    "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgr45196c84f3ff/docketEntries?pageNumber=1&docketNumber=5490",
                    "docketNumber": 5490,
                    "object": "ReferencedDocketNumber"
                  }
                ],
                "sortOrder": 5885,
                "text": "(#5491) MEMORANDUM OF LAW in Support re: #5490 MOTION for Leave to File Petition and Objection.. Document filed by Plaintiffs' Executive Commitee. (Attachments: #1 Exhibit A, #2 Exhibit A1, #3 Exhibit A2, #4 Exhibit A2 part 1, #5 Exhibit A2 part 2, #6 Exhibit A2 part 3, #7 Errata A2 part 4, #8 Exhibit A2 part 5, #9 Exhibit A2 part 6, #10 Exhibit A2 part 7, #11 Exhibit A2 part 8, #12 Exhibit A2 part 9, #13 Exhibit A2 part 10, #14 Exhibit A2 part 11, #15 Exhibit A2 part 12, #16 Exhibit A2 part 13, #17 Exhibit A2 part 14, #18 Exhibit A2 part 15, #19 Exhibit A2 part 16, #20 Exhibit A2 part 17, #21 Exhibit A2 part 18, #22 Exhibit A2 part 19, #23 Exhibit A2 part 20, #24 Exhibit A2 part 21, #25 Exhibit A2 part 22, #26 Exhibit A2 part 23, #27 Exhibit A2 part 24, #28 Exhibit A2 part 25, #29 Exhibit A3, #30 Exhibit A4, #31 Exhibit A5, #32 Exhibit B, #33 Exhibit B1, #34 Exhibit B2, #35 Exhibit B3, #36 Exhibit B4, #37 Exhibit B4 part 1, #38 Exhibit B4 part 2, #39 Exhibit B4 part 3, #40 Exhibit B4 part 4, #41 Exhibit B4 part 5, #42 Errata B4 part 6, #43 Exhibit B4 part 7, #44 Exhibit B4 part 8, #45 Exhibit B4 part 9, #46 Exhibit B4 part 10, #47 Exhibit B4 part 11, #48 Exhibit B4 part 12, #49 Exhibit B4 part 13, #50 Exhibit B4 part 14, #51 Exhibit B4 part 15, #52 Exhibit B4 part 16, #53 Exhibit B4 part 17, #54 Exhibit B4 part 18, #55 Exhibit B4 part 19, #56 Errata B4 part 20, #57 Exhibit B4 part 21, #58 Exhibit B4 part 22, #59 Exhibit B4 part 23, #60 Exhibit B4 part 24, #61 Errata B4 part 25, #62 Exhibit B5, #63 Exhibit B6, #64 Exhibit B7, #65 Exhibit C)(Littlepage, Zoe) (Entered: 04/17/2009)",
                "textStructured": null
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2009-04-17T00:00:00+00:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdg0473dd721566",
                      "childDocumentIdArray": [],
                      "description": null,
                      "documentFiledDate": "2009-04-17T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:57:53+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5490",
                      "object": "CaseDocument",
                      "pages": 2,
                      "parentDocumentId": null,
                      "previewDocument": null,
                      "price": 0.2,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    }
                  ],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 1,
                  "totalCount": 1,
                  "totalPages": 1
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": 5490,
                "lastFetchDate": "2019-05-16T06:57:53+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 5884,
                "text": "(#5490) MOTION for Leave to File Petition and Objection. Document filed by Plaintiffs' Executive Commitee.(Littlepage, Zoe) (Entered: 04/17/2009)",
                "textStructured": null
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2009-04-13T00:00:00+00:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2019-05-16T06:57:52+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 5883,
                "text": "Set Deadlines/Hearings: Motions due by 4/20/2009. (tro) (Entered: 04/14/2009)",
                "textStructured": null
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2009-04-13T00:00:00+00:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdg2d8d08343796",
                      "childDocumentIdArray": [],
                      "description": null,
                      "documentFiledDate": "2009-04-13T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:57:52+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5489",
                      "object": "CaseDocument",
                      "pages": 1,
                      "parentDocumentId": null,
                      "previewDocument": null,
                      "price": 0.1,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    }
                  ],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 1,
                  "totalCount": 1,
                  "totalPages": 1
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": 5489,
                "lastFetchDate": "2019-05-16T06:57:52+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 5882,
                "text": "(#5489) PRETRIAL ORDER 465: On February 10, 2009, the Court designated this as an ECF case and directed that all future pleadings be filed in accordance with ECF rules. Pretrial Order No. 464. It has come to the Court's attention that the Littlepage firm on or about March 27, 2009 attempted to file paper objections to the PEC-PSC motion for counsel fees and other relief and a fee petition of its own, both of which were rejected properly by the Clerk because they failed to comply with the ECF designation. The time for filing both of the Littlepage pleadings has expired. The Court nevertheless will entertain a motion by the Littlepage firm to file those documents out of time on a showing that it was justifiably unaware of Pretrial Order No. 464. Any such motion, together with the objections and the petition that were rejected by the Clerk, shall be electronically filed no later than April 20, 2009. (Signed by Judge Lewis A. Kaplan on 4/13/09) Filed In Associated Cases: 1:00-cv-02843-LAK-GWG et al.(tro) (Entered: 04/13/2009)",
                "textStructured": null
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2009-03-27T00:00:00+00:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2019-05-16T06:57:51+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 5881,
                "text": "***REJECTION OF ATTEMPTED PAPER FILING IN ECF CASE. The following document(s) Littlepages's Objection to the PEC's and PSC's Motion for counsel fees and reimbursement of expenses, was rejected by the Clerk's Office and must be FILED ELECTRONICALLY on the Court's ECF System. Attempted filing by Zoe B. Littlepage. (mro) (Entered: 03/27/2009)",
                "textStructured": null
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2009-03-27T00:00:00+00:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2019-05-16T06:57:51+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 5880,
                "text": "***REJECTION OF ATTEMPTED PAPER FILING IN ECF CASE. The following document(s) Petition for an award of common benefit attorney fees and costs, was rejected by the Clerk's Office and must be FILED ELECTRONICALLY on the Court's ECF System. Attempted filing by Zoe B. Littlepage. (mro) (Entered: 03/27/2009)",
                "textStructured": null
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2009-03-20T00:00:00+00:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": 5485,
                "lastFetchDate": "2019-05-16T06:57:51+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 5879,
                "text": "(#5485) SEALED DOCUMENT placed in vault.(jri) (Entered: 03/20/2009)",
                "textStructured": null
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2009-03-20T00:00:00+00:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdgadd58a52521a",
                      "childDocumentIdArray": [
                        "CDOCdgfa3a03231b24",
                        "CDOCdga4a0fe72f60f",
                        "CDOCdg5c660c069f0f"
                      ],
                      "description": null,
                      "documentFiledDate": "2009-03-20T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:57:51+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5484",
                      "object": "CaseDocument",
                      "pages": 2,
                      "parentDocumentId": null,
                      "previewDocument": null,
                      "price": 0.2,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    }
                  ],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 1,
                  "totalCount": 1,
                  "totalPages": 1
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdgfa3a03231b24",
                      "childDocumentIdArray": [],
                      "description": "Exhibit A - Special Master's March 11, 2009 Letter to Court",
                      "documentFiledDate": "2009-03-20T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:57:51+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5484 #2",
                      "object": "CaseDocument",
                      "pages": 3,
                      "parentDocumentId": "CDOCdgadd58a52521a",
                      "previewDocument": null,
                      "price": 0.3,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    },
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdg5c660c069f0f",
                      "childDocumentIdArray": [],
                      "description": "Certificate of Service",
                      "documentFiledDate": "2009-03-20T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:57:51+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5484 #4",
                      "object": "CaseDocument",
                      "pages": 2,
                      "parentDocumentId": "CDOCdgadd58a52521a",
                      "previewDocument": null,
                      "price": 0.2,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    },
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdga4a0fe72f60f",
                      "childDocumentIdArray": [],
                      "description": "Exhibit B",
                      "documentFiledDate": "2009-03-20T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:57:51+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5484 #3",
                      "object": "CaseDocument",
                      "pages": 6,
                      "parentDocumentId": "CDOCdgadd58a52521a",
                      "previewDocument": null,
                      "price": 0.6,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    }
                  ],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 1,
                  "totalCount": 3,
                  "totalPages": 1
                },
                "docketNumber": 5484,
                "lastFetchDate": "2019-05-16T06:57:51+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [
                  {
                    "docketEntriesAPI": "https://enterpriseapi.unicourt.com/case/CASEgr45196c84f3ff/docketEntries?pageNumber=1&docketNumber=5483",
                    "docketNumber": 5483,
                    "object": "ReferencedDocketNumber"
                  }
                ],
                "sortOrder": 5878,
                "text": "(#5484) AFFIDAVIT of SPECIAL MASTER (EXHIBIT A UNDER SEAL) re: 5481 Transcript, #5483 Protective Order,. Document filed by Pfizer, Inc., Warner Lambert Company, Parke-Davis. (Attachments: #1 Exhibit A - Special Master's March 11, 2009 Letter to Court, #2 Exhibit B, #3 Certificate of Service)(Boston, Sheila) (Entered: 03/20/2009)",
                "textStructured": null
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2009-03-19T00:00:00+00:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2019-05-16T06:57:50+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 5877,
                "text": "Transmission to Sealed Records Clerk. Transmitted re: (5483 in 1:00-cv-02843, -LAK-GWG, et al.) Protective Order, to the Sealed Records Clerk for the sealing or unsealing of document or case. Filed In Associated Cases: 1:00-cv-02843-LAK-GWG et al.(tro) (Entered: 03/20/2009)",
                "textStructured": null
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2009-03-18T00:00:00+00:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": 5488,
                "lastFetchDate": "2019-05-16T06:57:50+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 5876,
                "text": "(#5488) MEMORANDUM in Support re: (5486 in 1:00-cv-02843-LAK-GWG) MOTION to Approve payment of the Special Master and an award of counsel fees and reimbursement of expenses. Document filed by Plaintiffs' Executive Commitee. Filed In Associated Cases: 1:00-cv-02843-LAK-GWG et al. Original document filed under civil case no. 00-cv-2843, document # 5488.(kkc) (Entered: 03/26/2009)",
                "textStructured": null
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2009-03-18T00:00:00+00:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": 5487,
                "lastFetchDate": "2019-05-16T06:57:50+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 5875,
                "text": "(#5487) AFFIDAVIT of Arnold Levin in Support re: (5486 in 1:00-cv-02843-LAK-GWG) MOTION to Approve payment of the Special Master and an award of counsel fees and reimbursement of expenses. Document filed by Plaintiffs' Executive Commitee. Filed In Associated Cases: 1:00-cv-02843-LAK-GWG et al. Original document filed under civil case no. 00-cv-2843, document # 5487.(kkc) (Entered: 03/26/2009)",
                "textStructured": null
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2009-03-18T00:00:00+00:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": 5486,
                "lastFetchDate": "2019-05-16T06:57:50+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 5874,
                "text": "(#5486) NOTICE OF MOTION for an Order approving payment of the Special Master and an award of counsel fees and reimbursement of expenses. Document filed by Plaintiffs' Executive Committee. Affidavit of Robert P. Enderele in support of Plaintiffs' Executive Committee's Motion for Counsel Fees and Reimbursement of Expenses Attached. Filed In Associated Cases: 1:00-cv-02843-LAK-GWG et al. (tro) *Accepted for filing along with supporting documents on 3/19/09 by the Chambers of the Honorable Judge Kaplan. (Entered: 03/24/2009)",
                "textStructured": null
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2009-03-18T00:00:00+00:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdgf94e49adec5a",
                      "childDocumentIdArray": [],
                      "description": null,
                      "documentFiledDate": "2009-03-18T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:57:50+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5482",
                      "object": "CaseDocument",
                      "pages": 1,
                      "parentDocumentId": null,
                      "previewDocument": null,
                      "price": 0.1,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    }
                  ],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 1,
                  "totalCount": 1,
                  "totalPages": 1
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": 5482,
                "lastFetchDate": "2019-05-16T06:57:50+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 5873,
                "text": "(#5482) PRETRIAL ORDER NO. 463: No responses to Pretrial Order No. 457 have been filed in these cases. Accordingly, the Clerk shall close all of them. (Signed by Judge Lewis A. Kaplan on 1/8/09) Filed in associated Civil Case Nos. 01-cv-05762, 02-cv-03109, 03-cv-02516, and 03-cv-06387. Copies Mailed By Chambers. (tro) (Entered: 03/18/2009)",
                "textStructured": null
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2009-03-17T00:00:00+00:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdg7b9522fdd04e",
                      "childDocumentIdArray": [],
                      "description": null,
                      "documentFiledDate": "2009-03-17T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:57:50+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5483",
                      "object": "CaseDocument",
                      "pages": 2,
                      "parentDocumentId": null,
                      "previewDocument": null,
                      "price": 0.2,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    }
                  ],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 1,
                  "totalCount": 1,
                  "totalPages": 1
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": 5483,
                "lastFetchDate": "2019-05-16T06:57:50+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 5872,
                "text": "(#5483) STIPULATED PROTECTIVE ORDER...regarding procedures to be followed that shall govern the handling of confidential material....Accordingly, IT IS HEREBY ORDERED: Exhibit A of the Special Master's affidavit may be filed under seal. (Signed by Judge Lewis A. Kaplan on 3/17/09) Filed In Associated Cases: 1:00-cv-02843-LAK-GWG et al.(tro) (Entered: 03/19/2009)",
                "textStructured": null
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2009-02-11T00:00:00+00:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdg28757105f700",
                      "childDocumentIdArray": [],
                      "description": null,
                      "documentFiledDate": "2009-02-11T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:57:48+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5480",
                      "object": "CaseDocument",
                      "pages": 1,
                      "parentDocumentId": null,
                      "previewDocument": null,
                      "price": 0.1,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    }
                  ],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 1,
                  "totalCount": 1,
                  "totalPages": 1
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": 5480,
                "lastFetchDate": "2019-05-16T06:57:48+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 5871,
                "text": "(#5480) STIPULATION AND ORDER OF DISMISSAL WITH PREJUDICE: All claims by or on behalf of Linda Sherman and Stanley Sherman are dismissed with prejudice as to all defendants named in this action. When approved, this Stipulation of Dismissal will close this case in its entirety. Each party shall bear its own costs and attorneys' fees. (Signed by Judge Lewis A. Kaplan on 1/27/09) (tro) (Entered: 02/11/2009)",
                "textStructured": null
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2009-02-11T00:00:00+00:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdg935c1c6278f0",
                      "childDocumentIdArray": [],
                      "description": null,
                      "documentFiledDate": "2009-02-11T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:57:48+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5479",
                      "object": "CaseDocument",
                      "pages": 2,
                      "parentDocumentId": null,
                      "previewDocument": null,
                      "price": 0.2,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    }
                  ],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 1,
                  "totalCount": 1,
                  "totalPages": 1
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": 5479,
                "lastFetchDate": "2019-05-16T06:57:48+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 5870,
                "text": "(#5479) STIPULATION AND ORDER OF DISMISSAL WITH PREJUDICE: All claims by plaintiffs identified herein are dismissed with prejudice as to all defendants in this action. When approved, this Stipulation of Dismissal will close this case in its entirety. Each party shall bear its own costs and attorneys' fees. (Signed by Judge Lewis A. Kaplan on 1/27/09) (tro) (Entered: 02/11/2009)",
                "textStructured": null
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2009-02-11T00:00:00+00:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdg0394e313e30a",
                      "childDocumentIdArray": [],
                      "description": null,
                      "documentFiledDate": "2009-02-11T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:57:47+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5478",
                      "object": "CaseDocument",
                      "pages": 1,
                      "parentDocumentId": null,
                      "previewDocument": null,
                      "price": 0.1,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    }
                  ],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 1,
                  "totalCount": 1,
                  "totalPages": 1
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": 5478,
                "lastFetchDate": "2019-05-16T06:57:47+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 5869,
                "text": "(#5478) STIPULATION AND ORDER OF DISMISSAL WITH PREJUDICE: All claims by Kimberly Kent, personal representative of the estate of Virginia Kent, and Emmett Kent are dismissed with prejudice as to all defendants named in this action. When approved, this Stipulation of Dismissal will close this case in its entirety. Each party shall bear its own costs and attorneys' fees. (Signed by Judge Lewis A. Kaplan on 1/27/09) Filed In Associated Cases: 1:00-cv-02843-LAK-GWG, 1:00-cv-05117-LAK(tro) (Entered: 02/11/2009)",
                "textStructured": null
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2009-02-11T00:00:00+00:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2019-05-16T06:57:46+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 5868,
                "text": "Case Designated ECF. (tro) (Entered: 02/11/2009)",
                "textStructured": null
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2009-02-11T00:00:00+00:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdgb41c16ce28b8",
                      "childDocumentIdArray": [],
                      "description": null,
                      "documentFiledDate": "2009-02-11T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:57:46+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5477",
                      "object": "CaseDocument",
                      "pages": 1,
                      "parentDocumentId": null,
                      "previewDocument": null,
                      "price": 0.1,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    }
                  ],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 1,
                  "totalCount": 1,
                  "totalPages": 1
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": 5477,
                "lastFetchDate": "2019-05-16T06:57:46+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 5867,
                "text": "(#5477) PRETRIAL ORDER 464: This case is now designated as an ECF Case. All future pleadings must be filed in accordance with ECF rules. (Signed by Judge Lewis A. Kaplan on 2/10/09) (tro) (Entered: 02/11/2009)",
                "textStructured": null
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2009-01-26T00:00:00+00:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": 5481,
                "lastFetchDate": "2019-05-16T06:57:46+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 5866,
                "text": "(#5481) TRANSCRIPT of proceedings held on 1/16/2009 before Judge Lewis A. Kaplan. (dnd) (Entered: 02/26/2009)",
                "textStructured": null
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2009-01-22T00:00:00+00:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": 5476,
                "lastFetchDate": "2019-05-16T06:57:46+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 5865,
                "text": "(#5476) ENDORSED LETTER addressed to Judge Lewis A. Kaplan from Arnold Levin dated 1/19/09 re: Counsel requests Your Honor's permission for leave of court to file plaintiffs' fee petition with the supporting time and expense records submitted on CD or DVD ROM. ENDORSEMENT: The proposed notice shall require the filing of any response to the motion within 21 days of the date of the notice. (Signed by Judge Lewis A. Kaplan on 1/21/09) (tro) (Entered: 01/23/2009)",
                "textStructured": null
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2009-01-22T00:00:00+00:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": 5475,
                "lastFetchDate": "2019-05-16T06:57:46+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 5864,
                "text": "(#5475) ORDER: At the 1/16/09 Status Conference, plaintiffs' counsel sought leave of Court to file a proposed petition for attorney's fees and reimbursements of expenses. Of particular concern to the Plaintiffs' Steering Committee (PSC) was the method by which filing of voluminous exhibits could be accomplished. After due consideration, leave is hereby GRANTED to the PSC to file said petition after notice from defendants that the four remaining actions are resolved and the Special Master provides her final report accounting for the balances in the CRIS I and CRIS II account. The Court further GRANTS that PSC leave to file their exhibits to their petition of the supporting time and expense records submitted on CD or DVD ROM with the Clerk's office. This Order shall be filed with the Clerk's office forthwith. (Signed by Judge Lewis A. Kaplan on 1/21/09) Filed In Associated Cases: 1:00-cv-02843-LAK-GWG et al. Original document filed under case no. 00-cv-2843, document # 5475. (tro) (Entered: 01/23/2009)",
                "textStructured": null
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2009-01-22T00:00:00+00:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": 5474,
                "lastFetchDate": "2019-05-16T06:57:46+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 5863,
                "text": "(#5474) NOTICE OF SERVICE. Notice is hereby given that the Plaintiffs' Executive Committee and Plaintiffs' Steering Committee have filed on this date a Motion for Counsel's Fees and Reimbursement of Expenses supported by the Affidavit of Arnold Levin and the Affidavit of Robert P. Enderle. Both Affidavits submit supporting documents as exhibits on CD or DVD Rom which have been filed of record with the Clerk of Court. Counsel are advised that copies of these CD or DVD Rom exhibits are available upon request from Fred S. Longer, Levin, Fishbein, Sedran & Berman, 510 Walnut Street, Ste. 500, Philadelphia, PA 19106 Document filed by Plaintiffs' Executive Committee and Plaintiffs' Steering Committee. Filed In Associated Cases: 1:00-cv-02843-LAK-GWG et al. Original document filed under case # 00-cv-2843, document #5473.(tro) (Entered: 01/22/2009)",
                "textStructured": null
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2009-01-16T00:00:00+00:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2019-05-16T06:57:46+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 5862,
                "text": "Minute Entry for proceedings held before Judge Lewis A. Kaplan: Pretrial Conference held on 1/16/2009. Court Reporter Rebecca Foreman present. (mro) (Entered: 01/21/2009)",
                "textStructured": null
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2009-01-06T00:00:00+00:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": 5472,
                "lastFetchDate": "2019-05-16T06:57:46+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 5861,
                "text": "(#5472) JOINT STATUS REPORT OF THE PEC AND WARNER-LAMBERT DEFENDANTS. Document filed by Plaintiffs' Executive Commitee and Warner-Lambert Defendants.Associated Cases: 1:00-cv-02843-LAK-GWG et al. (tro) (Entered: 01/08/2009)",
                "textStructured": null
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2008-12-29T00:00:00+00:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdg06d00f9a9f8d",
                      "childDocumentIdArray": [
                        "CDOCdg05b9ae471704"
                      ],
                      "description": null,
                      "documentFiledDate": "2008-12-29T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:57:45+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5471",
                      "object": "CaseDocument",
                      "pages": 1,
                      "parentDocumentId": null,
                      "previewDocument": null,
                      "price": 0.1,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    }
                  ],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 1,
                  "totalCount": 1,
                  "totalPages": 1
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [
                    {
                      "addedToLibraryDate": null,
                      "caseDocumentId": "CDOCdg05b9ae471704",
                      "childDocumentIdArray": [],
                      "description": "notice of right to appeal",
                      "documentFiledDate": "2008-12-29T00:00:00+00:00",
                      "downloadAPI": null,
                      "estimatedOrderDuration": "withinMinutes",
                      "firstFetchDate": "2019-05-16T06:57:45+00:00",
                      "inLibrary": false,
                      "isPreviewAvailable": false,
                      "name": "5471 #2",
                      "object": "CaseDocument",
                      "pages": 5,
                      "parentDocumentId": "CDOCdg06d00f9a9f8d",
                      "previewDocument": null,
                      "price": 0.5,
                      "sortOrder": null,
                      "sourceDataStatus": null
                    }
                  ],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 1,
                  "totalCount": 1,
                  "totalPages": 1
                },
                "docketNumber": 5471,
                "lastFetchDate": "2019-05-16T06:57:46+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 5860,
                "text": "(#5471) CLERK'S JUDGMENT That for the reasons stated in the Court's Order dated December 8, 2008, the motions to dismiss, which are unopposed, are granted. (Signed by J. Michael McMahon, clerk on 12/29/08) (Attachments: #1 notice of right to appeal)Filed In Associated Cases: 1:00-cv-02843-LAK-GWG, 1:01-cv-00049-LAK, 1:03-cv-02729-LAK(ml) (Entered: 12/29/2008)",
                "textStructured": null
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2008-12-23T00:00:00+00:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": 5470,
                "lastFetchDate": "2019-05-16T06:57:45+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 5859,
                "text": "(#5470) ORDER: This Court hereby authorizes Michele Rosenberg, appointed as special master pursuant to PTO 130, to disburse from one or both of the CRIS accounts payment of $76,350 payable to the U.S. Treasury for U.S. federal income taxes. (Signed by Judge Lewis A. Kaplan on 12/15/08) Original document filed under case no. 00-cv-2843, document # 5470.Filed In Associated Cases: 1:00-cv-02843-LAK-GWG et al.(tro) (Entered: 12/23/2008)",
                "textStructured": null
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2008-12-15T00:00:00+00:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": 5469,
                "lastFetchDate": "2019-05-16T06:57:45+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 5858,
                "text": "(#5469) PRETRIAL ORDER NO. 462: The Court will conduct a status conference preparatory to winding up this MDL on 1/9/09 at 9:30 a.m. in Courtroom 12D. Counsel shall submit a joint status report in the usual form no later than 1/6/09. It is ORDERED that counsel to whom this Order is sent is responsible for faxing a copy to counsel and retaining verification of such in the case file. Do not fax verification to Chambers. (Signed by Judge Lewis A. Kaplan on 12/12/08) Copies Mailed By Chambers. Filed In Associated Cases: 1:00-cv-02843-LAK-GWG et al.(tro) (Entered: 12/16/2008)",
                "textStructured": null
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2008-12-09T00:00:00+00:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": 5468,
                "lastFetchDate": "2019-05-16T06:57:45+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 5857,
                "text": "(#5468) PRETRIAL ORDER NO. 461: Defendants' motions to dismiss these action as to plaintiffs Charlotte Blancher (No. 01 Civ. 0049) and Chanda Bell and Plez Little III (No. 03 Civ. 2729) [00 Civ. 2843 docket items 5464, 5466], which are unopposed, are granted. Motions terminated: 5464 MOTION to Dismiss filed by Warner-Lambert Company, Warner Lambert Company, 5466 MOTION to Dismiss filed by Warner-Lambert Co., Warner Lambert Company. (Signed by Judge Lewis A. Kaplan on 12/8/08) Copies Mailed By Chambers. Filed in associated cases 01-cv-49, 03-cv-2729. (tro) (Entered: 12/10/2008)",
                "textStructured": null
              }
            ],
            "nextPageAPI": "https://enterpriseapi.unicourt.com/case/CASEgr45196c84f3ff/docketEntries?pageNumber=2",
            "object": "DocketEntries",
            "pageNumber": 1,
            "totalCount": 5956,
            "totalPages": 60
          },
          "exportAPI": "https://enterpriseapi.unicourt.com/caseExport/CASEgr45196c84f3ff",
          "filedDate": "2000-04-13T00:00:00+00:00",
          "firstFetchDate": "2019-05-16T06:55:54+00:00",
          "hasDocumentsWithPreview": false,
          "hasOnlyMetaInfo": false,
          "hearings": {
            "hearingArray": [],
            "nextPageAPI": null,
            "object": "Hearings",
            "pageNumber": 0,
            "totalCount": 0,
            "totalPages": 0
          },
          "judges": {
            "judgeArray": [
              {
                "contact": {
                  "addressArray": [],
                  "emailArray": [],
                  "object": "Contact",
                  "phoneNumberArray": []
                },
                "firstFetchDate": "2019-05-16T06:56:25+00:00",
                "firstName": "Gabriel",
                "isVisible": true,
                "judgeId": "JUDGgr1007d0056da8",
                "judgeType": {
                  "createdDate": "2022-03-28T04:59:06+00:00",
                  "judgeTypeId": "JGTPhBqG2hQ2exXUwG",
                  "name": "Referral Judge",
                  "object": "JudgeType"
                },
                "lastFetchDate": "2019-05-16T06:56:25+00:00",
                "lastName": "Gorenstein",
                "middleName": "W",
                "name": "Gabriel W. Gorenstein",
                "namePrefix": null,
                "nameSuffix": null,
                "object": "Judge",
                "possibleNormJudgeArray": [
                  {
                    "associatedNormAttorneysAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUD22222222222222/associatedNormParties?pageNumber=1",
                    "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUD22222222222222/associatedNormLawFirms?pageNumber=1",
                    "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUD22222222222222/associatedNormJudges?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUD22222222222222/caseCountAnalyticsByNormJudge?pageNumber=1",
                    "confidenceScore": 0.5,
                    "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUD22222222222222",
                    "normJudgeId": "NJUD22222222222222",
                    "normJudgeName": "CINDY C AGUIRRE",
                    "object": "PossibleNormJudge",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.69,
                      "otherPotentialNormJudges": 0,
                      "phone": "Not_Provided_By_Data_Source"
                    }
                  }
                ],
                "sourceJudgeType": "REFERRAL"
              },
              {
                "contact": {
                  "addressArray": [],
                  "emailArray": [],
                  "object": "Contact",
                  "phoneNumberArray": []
                },
                "firstFetchDate": "2019-05-16T06:56:25+00:00",
                "firstName": "Lewis",
                "isVisible": true,
                "judgeId": "JUDGgra9205ba9e385",
                "judgeType": {
                  "createdDate": "2022-03-28T04:59:06+00:00",
                  "judgeTypeId": "JGTPSZBRSRcT94vpaA",
                  "name": "Presiding Judge",
                  "object": "JudgeType"
                },
                "lastFetchDate": "2019-05-16T06:56:25+00:00",
                "lastName": "Kaplan",
                "middleName": "A",
                "name": "Lewis A. Kaplan",
                "namePrefix": null,
                "nameSuffix": null,
                "object": "Judge",
                "possibleNormJudgeArray": [
                  {
                    "associatedNormAttorneysAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUD22222222222222/associatedNormParties?pageNumber=1",
                    "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUD22222222222222/associatedNormLawFirms?pageNumber=1",
                    "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUD22222222222222/associatedNormJudges?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUD22222222222222/caseCountAnalyticsByNormJudge?pageNumber=1",
                    "confidenceScore": 0.5,
                    "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUD22222222222222",
                    "normJudgeId": "NJUD22222222222222",
                    "normJudgeName": "CINDY C AGUIRRE",
                    "object": "PossibleNormJudge",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.69,
                      "otherPotentialNormJudges": 0,
                      "phone": "Not_Provided_By_Data_Source"
                    }
                  }
                ],
                "sourceJudgeType": "PRESIDING"
              }
            ],
            "nextPageAPI": null,
            "object": "Judges",
            "pageNumber": 1,
            "totalCount": 2,
            "totalPages": 1
          },
          "lastFetchDate": "2022-07-23T20:49:51+00:00",
          "lastFetchDateWithUpdates": "2019-10-31T06:06:02+00:00",
          "object": "Case",
          "participantsLastFetchDate": "2019-10-31T06:06:02+00:00",
          "parties": {
            "nextPageAPI": "https://enterpriseapi.unicourt.com/case/CASEgr45196c84f3ff/parties?pageNumber=2",
            "object": "Parties",
            "pageNumber": 1,
            "partyArray": [
              {
                "attorneyRepresentationType": {
                  "attorneyRepresentationTypeId": "ATRPDTy7Tqdwk974XC",
                  "createdDate": "2022-03-28T04:59:20+00:00",
                  "name": "Attorney Represented",
                  "object": "AttorneyRepresentationType"
                },
                "contact": {
                  "addressArray": [],
                  "emailArray": [],
                  "object": "Contact",
                  "phoneNumberArray": []
                },
                "firstFetchDate": "2019-05-16T06:55:57+00:00",
                "firstName": "Pfizer, Inc.",
                "isVisible": true,
                "lastFetchDate": "2019-05-16T06:55:57+00:00",
                "lastName": null,
                "middleName": null,
                "name": "Pfizer, Inc.",
                "namePrefix": null,
                "nameSuffix": null,
                "object": "Party",
                "partyAttorneyAssociations": {
                  "nextPageAPI": null,
                  "object": "PartyAttorneyAssociations",
                  "pageNumber": 1,
                  "partyAttorneyAssociationArray": [
                    {
                      "attorneyId": "ATTYgr77f3e1b7cc04",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgre4a236e87f02",
                      "partyId": "PRTYgr6ffa683e764b"
                    },
                    {
                      "attorneyId": "ATTYgrf3ac67b60053",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgr8eebb437439a",
                      "partyId": "PRTYgr6ffa683e764b"
                    },
                    {
                      "attorneyId": "ATTYgr7c79972f157e",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgr66402f22fb9b",
                      "partyId": "PRTYgr6ffa683e764b"
                    },
                    {
                      "attorneyId": "ATTYgr576d09e968e3",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgrec2cd641f6d7",
                      "partyId": "PRTYgr6ffa683e764b"
                    },
                    {
                      "attorneyId": "ATTYgrfd9bc8a360c8",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgre5e45c74d4b0",
                      "partyId": "PRTYgr6ffa683e764b"
                    },
                    {
                      "attorneyId": "ATTYgr34c176accc22",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgr4906c4f08e70",
                      "partyId": "PRTYgr6ffa683e764b"
                    },
                    {
                      "attorneyId": "ATTYgr587f982cc214",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgr480523f29e17",
                      "partyId": "PRTYgr6ffa683e764b"
                    },
                    {
                      "attorneyId": "ATTYgr38ccaf2075d2",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgrbf7501236282",
                      "partyId": "PRTYgr6ffa683e764b"
                    },
                    {
                      "attorneyId": "ATTYgraab312eed46c",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgr7fcce9fd97e0",
                      "partyId": "PRTYgr6ffa683e764b"
                    },
                    {
                      "attorneyId": "ATTYgr526ccdfd71e8",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgr3e75d5bf41df",
                      "partyId": "PRTYgr6ffa683e764b"
                    },
                    {
                      "attorneyId": "ATTYgr5a96befe0bd1",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgrde52571017f3",
                      "partyId": "PRTYgr6ffa683e764b"
                    },
                    {
                      "attorneyId": "ATTYgre585a1260a35",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgr08414daf8183",
                      "partyId": "PRTYgr6ffa683e764b"
                    },
                    {
                      "attorneyId": "ATTYgrbbf129f8fcad",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgrae0095e44580",
                      "partyId": "PRTYgr6ffa683e764b"
                    },
                    {
                      "attorneyId": "ATTYgr17ad61e6fe76",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgr469ac058403a",
                      "partyId": "PRTYgr6ffa683e764b"
                    },
                    {
                      "attorneyId": "ATTYgrf40ee2ef1c5a",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgrb68033709323",
                      "partyId": "PRTYgr6ffa683e764b"
                    }
                  ],
                  "totalCount": 15,
                  "totalPages": 1
                },
                "partyClassificationType": "COMPANY",
                "partyId": "PRTYgr6ffa683e764b",
                "partyRole": {
                  "createdDate": "2022-05-27T00:50:33+00:00",
                  "description": null,
                  "name": "Defendant",
                  "object": "PartyRole",
                  "partyRoleGroup": "Party Defensive",
                  "partyRoleGroupId": "PTYG73uQdgJdpA3ebc",
                  "partyRoleId": "PTYRKo8tkTBFvJdCQp"
                },
                "possibleNormPartyArray": [
                  {
                    "associatedNormAttorneysAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormParties?pageNumber=1",
                    "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormJudges?pageNumber=1",
                    "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormLawFirms?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/caseCountAnalyticsByNormParty?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/caseCountAnalyticsByOpposingNormParty?pageNumber=1",
                    "confidenceScore": 0.5,
                    "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222",
                    "normPartyId": "NPTY22222222222222",
                    "normPartyName": "DAAZ PROPERTIES, L.L.C.",
                    "object": "PossibleNormParty",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.69,
                      "otherPotentialNormParties": 0,
                      "phone": "Not_Provided_By_Data_Source",
                      "secretaryOfStateId": "Not_Provided_By_Data_Source"
                    }
                  }
                ],
                "sourcePartyRole": "DEFENDANT"
              },
              {
                "attorneyRepresentationType": {
                  "attorneyRepresentationTypeId": "ATRP2jCCwDRNaP97DX",
                  "createdDate": "2022-03-28T04:59:20+00:00",
                  "name": "Unrepresented",
                  "object": "AttorneyRepresentationType"
                },
                "contact": {
                  "addressArray": [],
                  "emailArray": [],
                  "object": "Contact",
                  "phoneNumberArray": []
                },
                "firstFetchDate": "2019-05-16T06:55:58+00:00",
                "firstName": "Scott & White Memorial Hospital",
                "isVisible": true,
                "lastFetchDate": "2019-05-16T06:55:58+00:00",
                "lastName": null,
                "middleName": null,
                "name": "Scott & White Memorial Hospital",
                "namePrefix": null,
                "nameSuffix": null,
                "object": "Party",
                "partyAttorneyAssociations": {
                  "nextPageAPI": null,
                  "object": "PartyAttorneyAssociations",
                  "pageNumber": 1,
                  "partyAttorneyAssociationArray": [
                    {
                      "attorneyId": "ATTYgraa3989949b2d",
                      "isVisible": false,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgr271bbb2da13f",
                      "partyId": "PRTYgr79b5e1bf10a4"
                    },
                    {
                      "attorneyId": "ATTYgr06af1cb8e272",
                      "isVisible": false,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgrf302fc866d46",
                      "partyId": "PRTYgr79b5e1bf10a4"
                    }
                  ],
                  "totalCount": 2,
                  "totalPages": 1
                },
                "partyClassificationType": "COMPANY",
                "partyId": "PRTYgr79b5e1bf10a4",
                "partyRole": {
                  "createdDate": "2022-05-27T00:50:33+00:00",
                  "description": null,
                  "name": "Petitioner",
                  "object": "PartyRole",
                  "partyRoleGroup": "Party Offensive",
                  "partyRoleGroupId": "PTYGBnjxbx6tKNfVEP",
                  "partyRoleId": "PTYR9F4zbteyj7ehmi"
                },
                "possibleNormPartyArray": [
                  {
                    "associatedNormAttorneysAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormParties?pageNumber=1",
                    "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormJudges?pageNumber=1",
                    "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormLawFirms?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/caseCountAnalyticsByNormParty?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/caseCountAnalyticsByOpposingNormParty?pageNumber=1",
                    "confidenceScore": 0.5,
                    "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222",
                    "normPartyId": "NPTY22222222222222",
                    "normPartyName": "DAAZ PROPERTIES, L.L.C.",
                    "object": "PossibleNormParty",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.69,
                      "otherPotentialNormParties": 0,
                      "phone": "Not_Provided_By_Data_Source",
                      "secretaryOfStateId": "Not_Provided_By_Data_Source"
                    }
                  }
                ],
                "sourcePartyRole": "MOVANT"
              },
              {
                "attorneyRepresentationType": {
                  "attorneyRepresentationTypeId": "ATRP2jCCwDRNaP97DX",
                  "createdDate": "2022-03-28T04:59:20+00:00",
                  "name": "Unrepresented",
                  "object": "AttorneyRepresentationType"
                },
                "contact": {
                  "addressArray": [],
                  "emailArray": [],
                  "object": "Contact",
                  "phoneNumberArray": []
                },
                "firstFetchDate": "2019-05-16T06:55:58+00:00",
                "firstName": "Joe",
                "isVisible": true,
                "lastFetchDate": "2019-05-16T06:55:58+00:00",
                "lastName": "Fischer",
                "middleName": null,
                "name": "Joe Fischer",
                "namePrefix": null,
                "nameSuffix": null,
                "object": "Party",
                "partyAttorneyAssociations": {
                  "nextPageAPI": null,
                  "object": "PartyAttorneyAssociations",
                  "pageNumber": 0,
                  "partyAttorneyAssociationArray": [],
                  "totalCount": 0,
                  "totalPages": 0
                },
                "partyClassificationType": "INDIVIDUAL",
                "partyId": "PRTYgr5c062a92014f",
                "partyRole": null,
                "possibleNormPartyArray": [
                  {
                    "associatedNormAttorneysAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormParties?pageNumber=1",
                    "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormJudges?pageNumber=1",
                    "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormLawFirms?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/caseCountAnalyticsByNormParty?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/caseCountAnalyticsByOpposingNormParty?pageNumber=1",
                    "confidenceScore": 0.5,
                    "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222",
                    "normPartyId": "NPTY22222222222222",
                    "normPartyName": "DAAZ PROPERTIES, L.L.C.",
                    "object": "PossibleNormParty",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.69,
                      "otherPotentialNormParties": 0,
                      "phone": "Not_Provided_By_Data_Source",
                      "secretaryOfStateId": "Not_Provided_By_Data_Source"
                    }
                  }
                ],
                "sourcePartyRole": "CONSOLIDATED DEFENDANT"
              },
              {
                "attorneyRepresentationType": {
                  "attorneyRepresentationTypeId": "ATRPDTy7Tqdwk974XC",
                  "createdDate": "2022-03-28T04:59:20+00:00",
                  "name": "Attorney Represented",
                  "object": "AttorneyRepresentationType"
                },
                "contact": {
                  "addressArray": [],
                  "emailArray": [],
                  "object": "Contact",
                  "phoneNumberArray": []
                },
                "firstFetchDate": "2019-05-16T06:55:58+00:00",
                "firstName": "Lee",
                "isVisible": false,
                "lastFetchDate": "2019-05-16T06:55:58+00:00",
                "lastName": "Miers",
                "middleName": null,
                "name": "Lee Miers, III",
                "namePrefix": null,
                "nameSuffix": "III",
                "object": "Party",
                "partyAttorneyAssociations": {
                  "nextPageAPI": null,
                  "object": "PartyAttorneyAssociations",
                  "pageNumber": 1,
                  "partyAttorneyAssociationArray": [
                    {
                      "attorneyId": "ATTYgr918da275b536",
                      "isVisible": false,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgrea6de929af3a",
                      "partyId": "PRTYgr739b89c74d9c"
                    }
                  ],
                  "totalCount": 1,
                  "totalPages": 1
                },
                "partyClassificationType": "INDIVIDUAL",
                "partyId": "PRTYgr739b89c74d9c",
                "partyRole": {
                  "createdDate": "2022-05-27T00:50:33+00:00",
                  "description": null,
                  "name": "Defendant",
                  "object": "PartyRole",
                  "partyRoleGroup": "Party Defensive",
                  "partyRoleGroupId": "PTYG73uQdgJdpA3ebc",
                  "partyRoleId": "PTYRKo8tkTBFvJdCQp"
                },
                "possibleNormPartyArray": [
                  {
                    "associatedNormAttorneysAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormParties?pageNumber=1",
                    "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormJudges?pageNumber=1",
                    "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormLawFirms?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/caseCountAnalyticsByNormParty?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/caseCountAnalyticsByOpposingNormParty?pageNumber=1",
                    "confidenceScore": 0.5,
                    "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222",
                    "normPartyId": "NPTY22222222222222",
                    "normPartyName": "DAAZ PROPERTIES, L.L.C.",
                    "object": "PossibleNormParty",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.69,
                      "otherPotentialNormParties": 0,
                      "phone": "Not_Provided_By_Data_Source",
                      "secretaryOfStateId": "Not_Provided_By_Data_Source"
                    }
                  }
                ],
                "sourcePartyRole": "DEFENDANT"
              },
              {
                "attorneyRepresentationType": {
                  "attorneyRepresentationTypeId": "ATRPDTy7Tqdwk974XC",
                  "createdDate": "2022-03-28T04:59:20+00:00",
                  "name": "Attorney Represented",
                  "object": "AttorneyRepresentationType"
                },
                "contact": {
                  "addressArray": [],
                  "emailArray": [],
                  "object": "Contact",
                  "phoneNumberArray": []
                },
                "firstFetchDate": "2019-05-16T06:55:58+00:00",
                "firstName": "James",
                "isVisible": true,
                "lastFetchDate": "2019-05-16T06:55:58+00:00",
                "lastName": "Polk",
                "middleName": null,
                "name": "M.D. James Polk",
                "namePrefix": "MD",
                "nameSuffix": null,
                "object": "Party",
                "partyAttorneyAssociations": {
                  "nextPageAPI": null,
                  "object": "PartyAttorneyAssociations",
                  "pageNumber": 1,
                  "partyAttorneyAssociationArray": [
                    {
                      "attorneyId": "ATTYgrcc3b24904812",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgrb921b70d672b",
                      "partyId": "PRTYgr686ff272e6b6"
                    },
                    {
                      "attorneyId": "ATTYgrdee5abe1724e",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgr5d36837745f1",
                      "partyId": "PRTYgr686ff272e6b6"
                    }
                  ],
                  "totalCount": 2,
                  "totalPages": 1
                },
                "partyClassificationType": "INDIVIDUAL",
                "partyId": "PRTYgr686ff272e6b6",
                "partyRole": {
                  "createdDate": "2022-05-27T00:50:33+00:00",
                  "description": null,
                  "name": "Petitioner",
                  "object": "PartyRole",
                  "partyRoleGroup": "Party Offensive",
                  "partyRoleGroupId": "PTYGBnjxbx6tKNfVEP",
                  "partyRoleId": "PTYR9F4zbteyj7ehmi"
                },
                "possibleNormPartyArray": [
                  {
                    "associatedNormAttorneysAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormParties?pageNumber=1",
                    "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormJudges?pageNumber=1",
                    "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormLawFirms?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/caseCountAnalyticsByNormParty?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/caseCountAnalyticsByOpposingNormParty?pageNumber=1",
                    "confidenceScore": 0.5,
                    "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222",
                    "normPartyId": "NPTY22222222222222",
                    "normPartyName": "DAAZ PROPERTIES, L.L.C.",
                    "object": "PossibleNormParty",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.69,
                      "otherPotentialNormParties": 0,
                      "phone": "Not_Provided_By_Data_Source",
                      "secretaryOfStateId": "Not_Provided_By_Data_Source"
                    }
                  }
                ],
                "sourcePartyRole": "MOVANT"
              },
              {
                "attorneyRepresentationType": {
                  "attorneyRepresentationTypeId": "ATRPDTy7Tqdwk974XC",
                  "createdDate": "2022-03-28T04:59:20+00:00",
                  "name": "Attorney Represented",
                  "object": "AttorneyRepresentationType"
                },
                "contact": {
                  "addressArray": [],
                  "emailArray": [],
                  "object": "Contact",
                  "phoneNumberArray": []
                },
                "firstFetchDate": "2019-05-16T06:55:57+00:00",
                "firstName": "James",
                "isVisible": true,
                "lastFetchDate": "2019-05-16T06:55:57+00:00",
                "lastName": "Gilmore",
                "middleName": null,
                "name": "M.D. James Gilmore",
                "namePrefix": "MD",
                "nameSuffix": null,
                "object": "Party",
                "partyAttorneyAssociations": {
                  "nextPageAPI": null,
                  "object": "PartyAttorneyAssociations",
                  "pageNumber": 1,
                  "partyAttorneyAssociationArray": [
                    {
                      "attorneyId": "ATTYgrdb506826e65a",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgr50d0f6b91020",
                      "partyId": "PRTYgrc1283e7c376d"
                    },
                    {
                      "attorneyId": "ATTYgrca403711f7a2",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgrd1534377f20d",
                      "partyId": "PRTYgrc1283e7c376d"
                    }
                  ],
                  "totalCount": 2,
                  "totalPages": 1
                },
                "partyClassificationType": "INDIVIDUAL",
                "partyId": "PRTYgrc1283e7c376d",
                "partyRole": {
                  "createdDate": "2022-05-27T00:50:33+00:00",
                  "description": null,
                  "name": "Petitioner",
                  "object": "PartyRole",
                  "partyRoleGroup": "Party Offensive",
                  "partyRoleGroupId": "PTYGBnjxbx6tKNfVEP",
                  "partyRoleId": "PTYR9F4zbteyj7ehmi"
                },
                "possibleNormPartyArray": [
                  {
                    "associatedNormAttorneysAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormParties?pageNumber=1",
                    "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormJudges?pageNumber=1",
                    "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormLawFirms?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/caseCountAnalyticsByNormParty?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/caseCountAnalyticsByOpposingNormParty?pageNumber=1",
                    "confidenceScore": 0.5,
                    "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222",
                    "normPartyId": "NPTY22222222222222",
                    "normPartyName": "DAAZ PROPERTIES, L.L.C.",
                    "object": "PossibleNormParty",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.69,
                      "otherPotentialNormParties": 0,
                      "phone": "Not_Provided_By_Data_Source",
                      "secretaryOfStateId": "Not_Provided_By_Data_Source"
                    }
                  }
                ],
                "sourcePartyRole": "MOVANT"
              },
              {
                "attorneyRepresentationType": {
                  "attorneyRepresentationTypeId": "ATRP2jCCwDRNaP97DX",
                  "createdDate": "2022-03-28T04:59:20+00:00",
                  "name": "Unrepresented",
                  "object": "AttorneyRepresentationType"
                },
                "contact": {
                  "addressArray": [],
                  "emailArray": [],
                  "object": "Contact",
                  "phoneNumberArray": []
                },
                "firstFetchDate": "2019-05-16T06:55:58+00:00",
                "firstName": "Shirley",
                "isVisible": true,
                "lastFetchDate": "2019-05-16T06:55:58+00:00",
                "lastName": "Rosen",
                "middleName": null,
                "name": "Shirley Rosen",
                "namePrefix": null,
                "nameSuffix": null,
                "object": "Party",
                "partyAttorneyAssociations": {
                  "nextPageAPI": null,
                  "object": "PartyAttorneyAssociations",
                  "pageNumber": 0,
                  "partyAttorneyAssociationArray": [],
                  "totalCount": 0,
                  "totalPages": 0
                },
                "partyClassificationType": "INDIVIDUAL",
                "partyId": "PRTYgr0dc073541b10",
                "partyRole": null,
                "possibleNormPartyArray": [
                  {
                    "associatedNormAttorneysAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormParties?pageNumber=1",
                    "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormJudges?pageNumber=1",
                    "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormLawFirms?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/caseCountAnalyticsByNormParty?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/caseCountAnalyticsByOpposingNormParty?pageNumber=1",
                    "confidenceScore": 0.5,
                    "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222",
                    "normPartyId": "NPTY22222222222222",
                    "normPartyName": "DAAZ PROPERTIES, L.L.C.",
                    "object": "PossibleNormParty",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.69,
                      "otherPotentialNormParties": 0,
                      "phone": "Not_Provided_By_Data_Source",
                      "secretaryOfStateId": "Not_Provided_By_Data_Source"
                    }
                  }
                ],
                "sourcePartyRole": "CONSOLIDATED PLAINTIFF"
              },
              {
                "attorneyRepresentationType": {
                  "attorneyRepresentationTypeId": "ATRPDTy7Tqdwk974XC",
                  "createdDate": "2022-03-28T04:59:20+00:00",
                  "name": "Attorney Represented",
                  "object": "AttorneyRepresentationType"
                },
                "contact": {
                  "addressArray": [],
                  "emailArray": [],
                  "object": "Contact",
                  "phoneNumberArray": []
                },
                "firstFetchDate": "2019-05-16T06:55:58+00:00",
                "firstName": "Claude",
                "isVisible": true,
                "lastFetchDate": "2019-05-16T06:55:58+00:00",
                "lastName": "Fortenberry",
                "middleName": "H",
                "name": "Claude H. Fortenberry",
                "namePrefix": null,
                "nameSuffix": null,
                "object": "Party",
                "partyAttorneyAssociations": {
                  "nextPageAPI": null,
                  "object": "PartyAttorneyAssociations",
                  "pageNumber": 1,
                  "partyAttorneyAssociationArray": [
                    {
                      "attorneyId": "ATTYgr384a345ad3a9",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgrd348c32e69fb",
                      "partyId": "PRTYgrad6029634c48"
                    }
                  ],
                  "totalCount": 1,
                  "totalPages": 1
                },
                "partyClassificationType": "INDIVIDUAL",
                "partyId": "PRTYgrad6029634c48",
                "partyRole": {
                  "createdDate": "2022-05-27T00:50:33+00:00",
                  "description": null,
                  "name": "Petitioner",
                  "object": "PartyRole",
                  "partyRoleGroup": "Party Offensive",
                  "partyRoleGroupId": "PTYGBnjxbx6tKNfVEP",
                  "partyRoleId": "PTYR9F4zbteyj7ehmi"
                },
                "possibleNormPartyArray": [
                  {
                    "associatedNormAttorneysAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormParties?pageNumber=1",
                    "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormJudges?pageNumber=1",
                    "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormLawFirms?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/caseCountAnalyticsByNormParty?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/caseCountAnalyticsByOpposingNormParty?pageNumber=1",
                    "confidenceScore": 0.5,
                    "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222",
                    "normPartyId": "NPTY22222222222222",
                    "normPartyName": "DAAZ PROPERTIES, L.L.C.",
                    "object": "PossibleNormParty",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.69,
                      "otherPotentialNormParties": 0,
                      "phone": "Not_Provided_By_Data_Source",
                      "secretaryOfStateId": "Not_Provided_By_Data_Source"
                    }
                  }
                ],
                "sourcePartyRole": "MOVANT"
              },
              {
                "attorneyRepresentationType": {
                  "attorneyRepresentationTypeId": "ATRPDTy7Tqdwk974XC",
                  "createdDate": "2022-03-28T04:59:20+00:00",
                  "name": "Attorney Represented",
                  "object": "AttorneyRepresentationType"
                },
                "contact": {
                  "addressArray": [],
                  "emailArray": [],
                  "object": "Contact",
                  "phoneNumberArray": []
                },
                "firstFetchDate": "2019-05-16T06:55:58+00:00",
                "firstName": "Mark",
                "isVisible": true,
                "lastFetchDate": "2019-05-16T06:55:58+00:00",
                "lastName": "Shepherd",
                "middleName": "D",
                "name": "M.D. Mark D. Shepherd",
                "namePrefix": "MD",
                "nameSuffix": null,
                "object": "Party",
                "partyAttorneyAssociations": {
                  "nextPageAPI": null,
                  "object": "PartyAttorneyAssociations",
                  "pageNumber": 1,
                  "partyAttorneyAssociationArray": [
                    {
                      "attorneyId": "ATTYgrb6fda22a1862",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgr281a454951d8",
                      "partyId": "PRTYgr5e0bbe260bd3"
                    },
                    {
                      "attorneyId": "ATTYgr9d6b454d3873",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgra686d940e2a5",
                      "partyId": "PRTYgr5e0bbe260bd3"
                    },
                    {
                      "attorneyId": "ATTYgr3ae043d84ebc",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgrddd23ce0c695",
                      "partyId": "PRTYgr5e0bbe260bd3"
                    }
                  ],
                  "totalCount": 3,
                  "totalPages": 1
                },
                "partyClassificationType": "INDIVIDUAL",
                "partyId": "PRTYgr5e0bbe260bd3",
                "partyRole": {
                  "createdDate": "2022-05-27T00:50:33+00:00",
                  "description": null,
                  "name": "Petitioner",
                  "object": "PartyRole",
                  "partyRoleGroup": "Party Offensive",
                  "partyRoleGroupId": "PTYGBnjxbx6tKNfVEP",
                  "partyRoleId": "PTYR9F4zbteyj7ehmi"
                },
                "possibleNormPartyArray": [
                  {
                    "associatedNormAttorneysAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormParties?pageNumber=1",
                    "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormJudges?pageNumber=1",
                    "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormLawFirms?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/caseCountAnalyticsByNormParty?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/caseCountAnalyticsByOpposingNormParty?pageNumber=1",
                    "confidenceScore": 0.5,
                    "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222",
                    "normPartyId": "NPTY22222222222222",
                    "normPartyName": "DAAZ PROPERTIES, L.L.C.",
                    "object": "PossibleNormParty",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.69,
                      "otherPotentialNormParties": 0,
                      "phone": "Not_Provided_By_Data_Source",
                      "secretaryOfStateId": "Not_Provided_By_Data_Source"
                    }
                  }
                ],
                "sourcePartyRole": "MOVANT"
              },
              {
                "attorneyRepresentationType": {
                  "attorneyRepresentationTypeId": "ATRPDTy7Tqdwk974XC",
                  "createdDate": "2022-03-28T04:59:20+00:00",
                  "name": "Attorney Represented",
                  "object": "AttorneyRepresentationType"
                },
                "contact": {
                  "addressArray": [],
                  "emailArray": [],
                  "object": "Contact",
                  "phoneNumberArray": []
                },
                "firstFetchDate": "2019-05-16T06:55:58+00:00",
                "firstName": "Mae",
                "isVisible": true,
                "lastFetchDate": "2019-05-16T06:55:58+00:00",
                "lastName": "Zellis",
                "middleName": null,
                "name": "Mae Zellis",
                "namePrefix": null,
                "nameSuffix": null,
                "object": "Party",
                "partyAttorneyAssociations": {
                  "nextPageAPI": null,
                  "object": "PartyAttorneyAssociations",
                  "pageNumber": 1,
                  "partyAttorneyAssociationArray": [
                    {
                      "attorneyId": "ATTYgrdfd313067e69",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgrfc3cd13c37ab",
                      "partyId": "PRTYgr5df5c682cc48"
                    },
                    {
                      "attorneyId": "ATTYgrc1d48aea13e9",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgrffc084e3e1b6",
                      "partyId": "PRTYgr5df5c682cc48"
                    }
                  ],
                  "totalCount": 2,
                  "totalPages": 1
                },
                "partyClassificationType": "INDIVIDUAL",
                "partyId": "PRTYgr5df5c682cc48",
                "partyRole": {
                  "createdDate": "2022-05-27T00:50:33+00:00",
                  "description": null,
                  "name": "Petitioner",
                  "object": "PartyRole",
                  "partyRoleGroup": "Party Offensive",
                  "partyRoleGroupId": "PTYGBnjxbx6tKNfVEP",
                  "partyRoleId": "PTYR9F4zbteyj7ehmi"
                },
                "possibleNormPartyArray": [
                  {
                    "associatedNormAttorneysAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormParties?pageNumber=1",
                    "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormJudges?pageNumber=1",
                    "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormLawFirms?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/caseCountAnalyticsByNormParty?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/caseCountAnalyticsByOpposingNormParty?pageNumber=1",
                    "confidenceScore": 0.5,
                    "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222",
                    "normPartyId": "NPTY22222222222222",
                    "normPartyName": "DAAZ PROPERTIES, L.L.C.",
                    "object": "PossibleNormParty",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.69,
                      "otherPotentialNormParties": 0,
                      "phone": "Not_Provided_By_Data_Source",
                      "secretaryOfStateId": "Not_Provided_By_Data_Source"
                    }
                  }
                ],
                "sourcePartyRole": "MOVANT"
              },
              {
                "attorneyRepresentationType": {
                  "attorneyRepresentationTypeId": "ATRPDTy7Tqdwk974XC",
                  "createdDate": "2022-03-28T04:59:20+00:00",
                  "name": "Attorney Represented",
                  "object": "AttorneyRepresentationType"
                },
                "contact": {
                  "addressArray": [],
                  "emailArray": [],
                  "object": "Contact",
                  "phoneNumberArray": []
                },
                "firstFetchDate": "2019-05-16T06:55:57+00:00",
                "firstName": "Charles",
                "isVisible": true,
                "lastFetchDate": "2019-05-16T06:55:57+00:00",
                "lastName": "Tedesco",
                "middleName": null,
                "name": "Charles Tedesco, Sr.",
                "namePrefix": null,
                "nameSuffix": "Sr",
                "object": "Party",
                "partyAttorneyAssociations": {
                  "nextPageAPI": null,
                  "object": "PartyAttorneyAssociations",
                  "pageNumber": 1,
                  "partyAttorneyAssociationArray": [
                    {
                      "attorneyId": "ATTYgrdfd313067e69",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgr3d78c282cd3d",
                      "partyId": "PRTYgr536ee2311289"
                    }
                  ],
                  "totalCount": 1,
                  "totalPages": 1
                },
                "partyClassificationType": "INDIVIDUAL",
                "partyId": "PRTYgr536ee2311289",
                "partyRole": {
                  "createdDate": "2022-05-27T00:50:33+00:00",
                  "description": null,
                  "name": "Petitioner",
                  "object": "PartyRole",
                  "partyRoleGroup": "Party Offensive",
                  "partyRoleGroupId": "PTYGBnjxbx6tKNfVEP",
                  "partyRoleId": "PTYR9F4zbteyj7ehmi"
                },
                "possibleNormPartyArray": [
                  {
                    "associatedNormAttorneysAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormParties?pageNumber=1",
                    "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormJudges?pageNumber=1",
                    "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormLawFirms?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/caseCountAnalyticsByNormParty?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/caseCountAnalyticsByOpposingNormParty?pageNumber=1",
                    "confidenceScore": 0.5,
                    "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222",
                    "normPartyId": "NPTY22222222222222",
                    "normPartyName": "DAAZ PROPERTIES, L.L.C.",
                    "object": "PossibleNormParty",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.69,
                      "otherPotentialNormParties": 0,
                      "phone": "Not_Provided_By_Data_Source",
                      "secretaryOfStateId": "Not_Provided_By_Data_Source"
                    }
                  }
                ],
                "sourcePartyRole": "MOVANT"
              },
              {
                "attorneyRepresentationType": {
                  "attorneyRepresentationTypeId": "ATRPDTy7Tqdwk974XC",
                  "createdDate": "2022-03-28T04:59:20+00:00",
                  "name": "Attorney Represented",
                  "object": "AttorneyRepresentationType"
                },
                "contact": {
                  "addressArray": [],
                  "emailArray": [],
                  "object": "Contact",
                  "phoneNumberArray": []
                },
                "firstFetchDate": "2019-05-16T06:55:58+00:00",
                "firstName": "Donald",
                "isVisible": true,
                "lastFetchDate": "2019-05-16T06:55:58+00:00",
                "lastName": "Conerly",
                "middleName": "V",
                "name": "M.D. Donald V. Conerly",
                "namePrefix": "MD",
                "nameSuffix": null,
                "object": "Party",
                "partyAttorneyAssociations": {
                  "nextPageAPI": null,
                  "object": "PartyAttorneyAssociations",
                  "pageNumber": 1,
                  "partyAttorneyAssociationArray": [
                    {
                      "attorneyId": "ATTYgrdee5abe1724e",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgrb672204b8a74",
                      "partyId": "PRTYgref4184f9a2f5"
                    }
                  ],
                  "totalCount": 1,
                  "totalPages": 1
                },
                "partyClassificationType": "INDIVIDUAL",
                "partyId": "PRTYgref4184f9a2f5",
                "partyRole": {
                  "createdDate": "2022-05-27T00:50:33+00:00",
                  "description": null,
                  "name": "Petitioner",
                  "object": "PartyRole",
                  "partyRoleGroup": "Party Offensive",
                  "partyRoleGroupId": "PTYGBnjxbx6tKNfVEP",
                  "partyRoleId": "PTYR9F4zbteyj7ehmi"
                },
                "possibleNormPartyArray": [
                  {
                    "associatedNormAttorneysAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormParties?pageNumber=1",
                    "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormJudges?pageNumber=1",
                    "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormLawFirms?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/caseCountAnalyticsByNormParty?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/caseCountAnalyticsByOpposingNormParty?pageNumber=1",
                    "confidenceScore": 0.5,
                    "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222",
                    "normPartyId": "NPTY22222222222222",
                    "normPartyName": "DAAZ PROPERTIES, L.L.C.",
                    "object": "PossibleNormParty",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.69,
                      "otherPotentialNormParties": 0,
                      "phone": "Not_Provided_By_Data_Source",
                      "secretaryOfStateId": "Not_Provided_By_Data_Source"
                    }
                  }
                ],
                "sourcePartyRole": "MOVANT"
              },
              {
                "attorneyRepresentationType": {
                  "attorneyRepresentationTypeId": "ATRP2jCCwDRNaP97DX",
                  "createdDate": "2022-03-28T04:59:20+00:00",
                  "name": "Unrepresented",
                  "object": "AttorneyRepresentationType"
                },
                "contact": {
                  "addressArray": [],
                  "emailArray": [],
                  "object": "Contact",
                  "phoneNumberArray": []
                },
                "firstFetchDate": "2019-05-16T06:55:58+00:00",
                "firstName": "Harold",
                "isVisible": true,
                "lastFetchDate": "2019-05-16T06:55:58+00:00",
                "lastName": "Coleman",
                "middleName": null,
                "name": "Harold Coleman",
                "namePrefix": null,
                "nameSuffix": null,
                "object": "Party",
                "partyAttorneyAssociations": {
                  "nextPageAPI": null,
                  "object": "PartyAttorneyAssociations",
                  "pageNumber": 1,
                  "partyAttorneyAssociationArray": [
                    {
                      "attorneyId": "ATTYgrf1c6a0d79cd8",
                      "isVisible": false,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgree3553d51bfa",
                      "partyId": "PRTYgr49c43fba3a27"
                    }
                  ],
                  "totalCount": 1,
                  "totalPages": 1
                },
                "partyClassificationType": "INDIVIDUAL",
                "partyId": "PRTYgr49c43fba3a27",
                "partyRole": {
                  "createdDate": "2022-05-27T00:50:33+00:00",
                  "description": null,
                  "name": "Petitioner",
                  "object": "PartyRole",
                  "partyRoleGroup": "Party Offensive",
                  "partyRoleGroupId": "PTYGBnjxbx6tKNfVEP",
                  "partyRoleId": "PTYR9F4zbteyj7ehmi"
                },
                "possibleNormPartyArray": [
                  {
                    "associatedNormAttorneysAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormParties?pageNumber=1",
                    "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormJudges?pageNumber=1",
                    "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormLawFirms?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/caseCountAnalyticsByNormParty?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/caseCountAnalyticsByOpposingNormParty?pageNumber=1",
                    "confidenceScore": 0.5,
                    "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222",
                    "normPartyId": "NPTY22222222222222",
                    "normPartyName": "DAAZ PROPERTIES, L.L.C.",
                    "object": "PossibleNormParty",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.69,
                      "otherPotentialNormParties": 0,
                      "phone": "Not_Provided_By_Data_Source",
                      "secretaryOfStateId": "Not_Provided_By_Data_Source"
                    }
                  }
                ],
                "sourcePartyRole": "MOVANT"
              },
              {
                "attorneyRepresentationType": {
                  "attorneyRepresentationTypeId": "ATRP2jCCwDRNaP97DX",
                  "createdDate": "2022-03-28T04:59:20+00:00",
                  "name": "Unrepresented",
                  "object": "AttorneyRepresentationType"
                },
                "contact": {
                  "addressArray": [],
                  "emailArray": [],
                  "object": "Contact",
                  "phoneNumberArray": []
                },
                "firstFetchDate": "2019-05-16T06:55:58+00:00",
                "firstName": "Kenneth",
                "isVisible": true,
                "lastFetchDate": "2019-05-16T06:55:58+00:00",
                "lastName": "Williams",
                "middleName": null,
                "name": "M.D. Kenneth Williams",
                "namePrefix": "MD",
                "nameSuffix": null,
                "object": "Party",
                "partyAttorneyAssociations": {
                  "nextPageAPI": null,
                  "object": "PartyAttorneyAssociations",
                  "pageNumber": 0,
                  "partyAttorneyAssociationArray": [],
                  "totalCount": 0,
                  "totalPages": 0
                },
                "partyClassificationType": "INDIVIDUAL",
                "partyId": "PRTYgre8cbd951e84f",
                "partyRole": {
                  "createdDate": "2022-05-27T00:50:33+00:00",
                  "description": null,
                  "name": "Petitioner",
                  "object": "PartyRole",
                  "partyRoleGroup": "Party Offensive",
                  "partyRoleGroupId": "PTYGBnjxbx6tKNfVEP",
                  "partyRoleId": "PTYR9F4zbteyj7ehmi"
                },
                "possibleNormPartyArray": [
                  {
                    "associatedNormAttorneysAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormParties?pageNumber=1",
                    "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormJudges?pageNumber=1",
                    "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormLawFirms?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/caseCountAnalyticsByNormParty?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/caseCountAnalyticsByOpposingNormParty?pageNumber=1",
                    "confidenceScore": 0.5,
                    "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222",
                    "normPartyId": "NPTY22222222222222",
                    "normPartyName": "DAAZ PROPERTIES, L.L.C.",
                    "object": "PossibleNormParty",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.69,
                      "otherPotentialNormParties": 0,
                      "phone": "Not_Provided_By_Data_Source",
                      "secretaryOfStateId": "Not_Provided_By_Data_Source"
                    }
                  }
                ],
                "sourcePartyRole": "MOVANT"
              },
              {
                "attorneyRepresentationType": {
                  "attorneyRepresentationTypeId": "ATRPDTy7Tqdwk974XC",
                  "createdDate": "2022-03-28T04:59:20+00:00",
                  "name": "Attorney Represented",
                  "object": "AttorneyRepresentationType"
                },
                "contact": {
                  "addressArray": [],
                  "emailArray": [],
                  "object": "Contact",
                  "phoneNumberArray": []
                },
                "firstFetchDate": "2019-05-16T06:55:58+00:00",
                "firstName": "Dorothy",
                "isVisible": false,
                "lastFetchDate": "2019-05-16T06:55:58+00:00",
                "lastName": "Humphrey",
                "middleName": null,
                "name": "Dorothy Humphrey",
                "namePrefix": null,
                "nameSuffix": null,
                "object": "Party",
                "partyAttorneyAssociations": {
                  "nextPageAPI": null,
                  "object": "PartyAttorneyAssociations",
                  "pageNumber": 1,
                  "partyAttorneyAssociationArray": [
                    {
                      "attorneyId": "ATTYgr3a3e74f107ea",
                      "isVisible": false,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgr330751ef9b83",
                      "partyId": "PRTYgr35691eff35d3"
                    }
                  ],
                  "totalCount": 1,
                  "totalPages": 1
                },
                "partyClassificationType": "INDIVIDUAL",
                "partyId": "PRTYgr35691eff35d3",
                "partyRole": {
                  "createdDate": "2022-05-27T00:50:33+00:00",
                  "description": null,
                  "name": "Petitioner",
                  "object": "PartyRole",
                  "partyRoleGroup": "Party Offensive",
                  "partyRoleGroupId": "PTYGBnjxbx6tKNfVEP",
                  "partyRoleId": "PTYR9F4zbteyj7ehmi"
                },
                "possibleNormPartyArray": [
                  {
                    "associatedNormAttorneysAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormParties?pageNumber=1",
                    "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormJudges?pageNumber=1",
                    "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormLawFirms?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/caseCountAnalyticsByNormParty?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/caseCountAnalyticsByOpposingNormParty?pageNumber=1",
                    "confidenceScore": 0.5,
                    "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222",
                    "normPartyId": "NPTY22222222222222",
                    "normPartyName": "DAAZ PROPERTIES, L.L.C.",
                    "object": "PossibleNormParty",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.69,
                      "otherPotentialNormParties": 0,
                      "phone": "Not_Provided_By_Data_Source",
                      "secretaryOfStateId": "Not_Provided_By_Data_Source"
                    }
                  }
                ],
                "sourcePartyRole": "MOVANT"
              },
              {
                "attorneyRepresentationType": {
                  "attorneyRepresentationTypeId": "ATRPDTy7Tqdwk974XC",
                  "createdDate": "2022-03-28T04:59:20+00:00",
                  "name": "Attorney Represented",
                  "object": "AttorneyRepresentationType"
                },
                "contact": {
                  "addressArray": [],
                  "emailArray": [],
                  "object": "Contact",
                  "phoneNumberArray": []
                },
                "firstFetchDate": "2019-05-16T06:55:58+00:00",
                "firstName": "Glenneth",
                "isVisible": true,
                "lastFetchDate": "2019-05-16T06:55:58+00:00",
                "lastName": "Berry",
                "middleName": null,
                "name": "Glenneth Berry",
                "namePrefix": null,
                "nameSuffix": null,
                "object": "Party",
                "partyAttorneyAssociations": {
                  "nextPageAPI": null,
                  "object": "PartyAttorneyAssociations",
                  "pageNumber": 1,
                  "partyAttorneyAssociationArray": [
                    {
                      "attorneyId": "ATTYgrea3f182836b9",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgr1e8c9471be4a",
                      "partyId": "PRTYgrf9032eff326a"
                    }
                  ],
                  "totalCount": 1,
                  "totalPages": 1
                },
                "partyClassificationType": "INDIVIDUAL",
                "partyId": "PRTYgrf9032eff326a",
                "partyRole": {
                  "createdDate": "2022-05-27T00:50:33+00:00",
                  "description": null,
                  "name": "Petitioner",
                  "object": "PartyRole",
                  "partyRoleGroup": "Party Offensive",
                  "partyRoleGroupId": "PTYGBnjxbx6tKNfVEP",
                  "partyRoleId": "PTYR9F4zbteyj7ehmi"
                },
                "possibleNormPartyArray": [
                  {
                    "associatedNormAttorneysAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormParties?pageNumber=1",
                    "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormJudges?pageNumber=1",
                    "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormLawFirms?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/caseCountAnalyticsByNormParty?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/caseCountAnalyticsByOpposingNormParty?pageNumber=1",
                    "confidenceScore": 0.5,
                    "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222",
                    "normPartyId": "NPTY22222222222222",
                    "normPartyName": "DAAZ PROPERTIES, L.L.C.",
                    "object": "PossibleNormParty",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.69,
                      "otherPotentialNormParties": 0,
                      "phone": "Not_Provided_By_Data_Source",
                      "secretaryOfStateId": "Not_Provided_By_Data_Source"
                    }
                  }
                ],
                "sourcePartyRole": "MOVANT"
              },
              {
                "attorneyRepresentationType": {
                  "attorneyRepresentationTypeId": "ATRPDTy7Tqdwk974XC",
                  "createdDate": "2022-03-28T04:59:20+00:00",
                  "name": "Attorney Represented",
                  "object": "AttorneyRepresentationType"
                },
                "contact": {
                  "addressArray": [],
                  "emailArray": [],
                  "object": "Contact",
                  "phoneNumberArray": []
                },
                "firstFetchDate": "2019-05-16T06:55:57+00:00",
                "firstName": "Jose",
                "isVisible": false,
                "lastFetchDate": "2019-05-16T06:55:57+00:00",
                "lastName": "Lozano",
                "middleName": "M",
                "name": "M.D. Jose M. Lozano",
                "namePrefix": "MD",
                "nameSuffix": null,
                "object": "Party",
                "partyAttorneyAssociations": {
                  "nextPageAPI": null,
                  "object": "PartyAttorneyAssociations",
                  "pageNumber": 1,
                  "partyAttorneyAssociationArray": [
                    {
                      "attorneyId": "ATTYgrd28e386faed6",
                      "isVisible": false,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgr73c85f55113b",
                      "partyId": "PRTYgr6b9a0ad58e49"
                    },
                    {
                      "attorneyId": "ATTYgr02071b50d88f",
                      "isVisible": false,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgr19de7588528f",
                      "partyId": "PRTYgr6b9a0ad58e49"
                    },
                    {
                      "attorneyId": "ATTYgra5c68c2b2a2f",
                      "isVisible": false,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgr1adcf6214715",
                      "partyId": "PRTYgr6b9a0ad58e49"
                    }
                  ],
                  "totalCount": 3,
                  "totalPages": 1
                },
                "partyClassificationType": "INDIVIDUAL",
                "partyId": "PRTYgr6b9a0ad58e49",
                "partyRole": {
                  "createdDate": "2022-05-27T00:50:33+00:00",
                  "description": null,
                  "name": "Petitioner",
                  "object": "PartyRole",
                  "partyRoleGroup": "Party Offensive",
                  "partyRoleGroupId": "PTYGBnjxbx6tKNfVEP",
                  "partyRoleId": "PTYR9F4zbteyj7ehmi"
                },
                "possibleNormPartyArray": [
                  {
                    "associatedNormAttorneysAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormParties?pageNumber=1",
                    "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormJudges?pageNumber=1",
                    "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormLawFirms?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/caseCountAnalyticsByNormParty?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/caseCountAnalyticsByOpposingNormParty?pageNumber=1",
                    "confidenceScore": 0.5,
                    "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222",
                    "normPartyId": "NPTY22222222222222",
                    "normPartyName": "DAAZ PROPERTIES, L.L.C.",
                    "object": "PossibleNormParty",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.69,
                      "otherPotentialNormParties": 0,
                      "phone": "Not_Provided_By_Data_Source",
                      "secretaryOfStateId": "Not_Provided_By_Data_Source"
                    }
                  }
                ],
                "sourcePartyRole": "MOVANT"
              },
              {
                "attorneyRepresentationType": {
                  "attorneyRepresentationTypeId": "ATRP2jCCwDRNaP97DX",
                  "createdDate": "2022-03-28T04:59:20+00:00",
                  "name": "Unrepresented",
                  "object": "AttorneyRepresentationType"
                },
                "contact": {
                  "addressArray": [],
                  "emailArray": [],
                  "object": "Contact",
                  "phoneNumberArray": []
                },
                "firstFetchDate": "2019-05-16T06:55:58+00:00",
                "firstName": "Era",
                "isVisible": true,
                "lastFetchDate": "2019-05-16T06:55:58+00:00",
                "lastName": "Denson",
                "middleName": null,
                "name": "Era Denson",
                "namePrefix": null,
                "nameSuffix": null,
                "object": "Party",
                "partyAttorneyAssociations": {
                  "nextPageAPI": null,
                  "object": "PartyAttorneyAssociations",
                  "pageNumber": 0,
                  "partyAttorneyAssociationArray": [],
                  "totalCount": 0,
                  "totalPages": 0
                },
                "partyClassificationType": "INDIVIDUAL",
                "partyId": "PRTYgr937837e705c1",
                "partyRole": null,
                "possibleNormPartyArray": [
                  {
                    "associatedNormAttorneysAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormParties?pageNumber=1",
                    "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormJudges?pageNumber=1",
                    "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormLawFirms?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/caseCountAnalyticsByNormParty?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/caseCountAnalyticsByOpposingNormParty?pageNumber=1",
                    "confidenceScore": 0.5,
                    "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222",
                    "normPartyId": "NPTY22222222222222",
                    "normPartyName": "DAAZ PROPERTIES, L.L.C.",
                    "object": "PossibleNormParty",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.69,
                      "otherPotentialNormParties": 0,
                      "phone": "Not_Provided_By_Data_Source",
                      "secretaryOfStateId": "Not_Provided_By_Data_Source"
                    }
                  }
                ],
                "sourcePartyRole": "CONSOLIDATED PLAINTIFF"
              },
              {
                "attorneyRepresentationType": {
                  "attorneyRepresentationTypeId": "ATRPDTy7Tqdwk974XC",
                  "createdDate": "2022-03-28T04:59:20+00:00",
                  "name": "Attorney Represented",
                  "object": "AttorneyRepresentationType"
                },
                "contact": {
                  "addressArray": [],
                  "emailArray": [],
                  "object": "Contact",
                  "phoneNumberArray": []
                },
                "firstFetchDate": "2019-05-16T06:55:58+00:00",
                "firstName": "Frederick",
                "isVisible": false,
                "lastFetchDate": "2019-05-16T06:55:58+00:00",
                "lastName": "Torio",
                "middleName": null,
                "name": "Dr. Frederick Torio",
                "namePrefix": "Dr",
                "nameSuffix": null,
                "object": "Party",
                "partyAttorneyAssociations": {
                  "nextPageAPI": null,
                  "object": "PartyAttorneyAssociations",
                  "pageNumber": 1,
                  "partyAttorneyAssociationArray": [
                    {
                      "attorneyId": "ATTYgr0d1a627ba6c6",
                      "isVisible": false,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgr3ac50682fd11",
                      "partyId": "PRTYgr5352c9f72f3e"
                    }
                  ],
                  "totalCount": 1,
                  "totalPages": 1
                },
                "partyClassificationType": "INDIVIDUAL",
                "partyId": "PRTYgr5352c9f72f3e",
                "partyRole": {
                  "createdDate": "2022-05-27T00:50:33+00:00",
                  "description": null,
                  "name": "Petitioner",
                  "object": "PartyRole",
                  "partyRoleGroup": "Party Offensive",
                  "partyRoleGroupId": "PTYGBnjxbx6tKNfVEP",
                  "partyRoleId": "PTYR9F4zbteyj7ehmi"
                },
                "possibleNormPartyArray": [
                  {
                    "associatedNormAttorneysAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormParties?pageNumber=1",
                    "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormJudges?pageNumber=1",
                    "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormLawFirms?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/caseCountAnalyticsByNormParty?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/caseCountAnalyticsByOpposingNormParty?pageNumber=1",
                    "confidenceScore": 0.5,
                    "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222",
                    "normPartyId": "NPTY22222222222222",
                    "normPartyName": "DAAZ PROPERTIES, L.L.C.",
                    "object": "PossibleNormParty",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.69,
                      "otherPotentialNormParties": 0,
                      "phone": "Not_Provided_By_Data_Source",
                      "secretaryOfStateId": "Not_Provided_By_Data_Source"
                    }
                  }
                ],
                "sourcePartyRole": "MOVANT"
              },
              {
                "attorneyRepresentationType": {
                  "attorneyRepresentationTypeId": "ATRPDTy7Tqdwk974XC",
                  "createdDate": "2022-03-28T04:59:20+00:00",
                  "name": "Attorney Represented",
                  "object": "AttorneyRepresentationType"
                },
                "contact": {
                  "addressArray": [],
                  "emailArray": [],
                  "object": "Contact",
                  "phoneNumberArray": []
                },
                "firstFetchDate": "2019-05-16T06:55:57+00:00",
                "firstName": "Nancy",
                "isVisible": false,
                "lastFetchDate": "2019-05-16T06:55:57+00:00",
                "lastName": "Smith",
                "middleName": null,
                "name": "Nancy Smith",
                "namePrefix": null,
                "nameSuffix": null,
                "object": "Party",
                "partyAttorneyAssociations": {
                  "nextPageAPI": null,
                  "object": "PartyAttorneyAssociations",
                  "pageNumber": 1,
                  "partyAttorneyAssociationArray": [
                    {
                      "attorneyId": "ATTYgrf21fa0930483",
                      "isVisible": false,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgr49a09c987e1a",
                      "partyId": "PRTYgr10ab4a3379c2"
                    },
                    {
                      "attorneyId": "ATTYgrc830f2c887dc",
                      "isVisible": false,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgr90ac8f9a4588",
                      "partyId": "PRTYgr10ab4a3379c2"
                    }
                  ],
                  "totalCount": 2,
                  "totalPages": 1
                },
                "partyClassificationType": "INDIVIDUAL",
                "partyId": "PRTYgr10ab4a3379c2",
                "partyRole": {
                  "createdDate": "2022-05-27T00:50:33+00:00",
                  "description": null,
                  "name": "Petitioner",
                  "object": "PartyRole",
                  "partyRoleGroup": "Party Offensive",
                  "partyRoleGroupId": "PTYGBnjxbx6tKNfVEP",
                  "partyRoleId": "PTYR9F4zbteyj7ehmi"
                },
                "possibleNormPartyArray": [
                  {
                    "associatedNormAttorneysAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormParties?pageNumber=1",
                    "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormJudges?pageNumber=1",
                    "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormLawFirms?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/caseCountAnalyticsByNormParty?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/caseCountAnalyticsByOpposingNormParty?pageNumber=1",
                    "confidenceScore": 0.5,
                    "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222",
                    "normPartyId": "NPTY22222222222222",
                    "normPartyName": "DAAZ PROPERTIES, L.L.C.",
                    "object": "PossibleNormParty",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.69,
                      "otherPotentialNormParties": 0,
                      "phone": "Not_Provided_By_Data_Source",
                      "secretaryOfStateId": "Not_Provided_By_Data_Source"
                    }
                  }
                ],
                "sourcePartyRole": "MOVANT"
              },
              {
                "attorneyRepresentationType": {
                  "attorneyRepresentationTypeId": "ATRP2jCCwDRNaP97DX",
                  "createdDate": "2022-03-28T04:59:20+00:00",
                  "name": "Unrepresented",
                  "object": "AttorneyRepresentationType"
                },
                "contact": {
                  "addressArray": [],
                  "emailArray": [],
                  "object": "Contact",
                  "phoneNumberArray": []
                },
                "firstFetchDate": "2019-05-16T06:55:58+00:00",
                "firstName": "Celeste",
                "isVisible": true,
                "lastFetchDate": "2019-05-16T06:55:58+00:00",
                "lastName": "Wagner",
                "middleName": "Eileen",
                "name": "Celeste Eileen Wagner",
                "namePrefix": null,
                "nameSuffix": null,
                "object": "Party",
                "partyAttorneyAssociations": {
                  "nextPageAPI": null,
                  "object": "PartyAttorneyAssociations",
                  "pageNumber": 0,
                  "partyAttorneyAssociationArray": [],
                  "totalCount": 0,
                  "totalPages": 0
                },
                "partyClassificationType": "INDIVIDUAL",
                "partyId": "PRTYgr115c2fad976f",
                "partyRole": null,
                "possibleNormPartyArray": [
                  {
                    "associatedNormAttorneysAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormParties?pageNumber=1",
                    "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormJudges?pageNumber=1",
                    "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormLawFirms?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/caseCountAnalyticsByNormParty?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/caseCountAnalyticsByOpposingNormParty?pageNumber=1",
                    "confidenceScore": 0.5,
                    "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222",
                    "normPartyId": "NPTY22222222222222",
                    "normPartyName": "DAAZ PROPERTIES, L.L.C.",
                    "object": "PossibleNormParty",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.69,
                      "otherPotentialNormParties": 0,
                      "phone": "Not_Provided_By_Data_Source",
                      "secretaryOfStateId": "Not_Provided_By_Data_Source"
                    }
                  }
                ],
                "sourcePartyRole": "CONSOLIDATED PLAINTIFF"
              },
              {
                "attorneyRepresentationType": {
                  "attorneyRepresentationTypeId": "ATRPDTy7Tqdwk974XC",
                  "createdDate": "2022-03-28T04:59:20+00:00",
                  "name": "Attorney Represented",
                  "object": "AttorneyRepresentationType"
                },
                "contact": {
                  "addressArray": [],
                  "emailArray": [],
                  "object": "Contact",
                  "phoneNumberArray": []
                },
                "firstFetchDate": "2019-05-16T06:55:57+00:00",
                "firstName": "Mary",
                "isVisible": true,
                "lastFetchDate": "2019-05-16T06:55:57+00:00",
                "lastName": "Garza",
                "middleName": null,
                "name": "Mary Garza",
                "namePrefix": null,
                "nameSuffix": null,
                "object": "Party",
                "partyAttorneyAssociations": {
                  "nextPageAPI": null,
                  "object": "PartyAttorneyAssociations",
                  "pageNumber": 1,
                  "partyAttorneyAssociationArray": [
                    {
                      "attorneyId": "ATTYgr776acd217b59",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgr83b8ed173e25",
                      "partyId": "PRTYgr98ef045f117d"
                    },
                    {
                      "attorneyId": "ATTYgr812f31f9869b",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgrf366bf9c3d6d",
                      "partyId": "PRTYgr98ef045f117d"
                    }
                  ],
                  "totalCount": 2,
                  "totalPages": 1
                },
                "partyClassificationType": "INDIVIDUAL",
                "partyId": "PRTYgr98ef045f117d",
                "partyRole": {
                  "createdDate": "2022-05-27T00:50:33+00:00",
                  "description": null,
                  "name": "Petitioner",
                  "object": "PartyRole",
                  "partyRoleGroup": "Party Offensive",
                  "partyRoleGroupId": "PTYGBnjxbx6tKNfVEP",
                  "partyRoleId": "PTYR9F4zbteyj7ehmi"
                },
                "possibleNormPartyArray": [
                  {
                    "associatedNormAttorneysAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormParties?pageNumber=1",
                    "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormJudges?pageNumber=1",
                    "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormLawFirms?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/caseCountAnalyticsByNormParty?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/caseCountAnalyticsByOpposingNormParty?pageNumber=1",
                    "confidenceScore": 0.5,
                    "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222",
                    "normPartyId": "NPTY22222222222222",
                    "normPartyName": "DAAZ PROPERTIES, L.L.C.",
                    "object": "PossibleNormParty",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.69,
                      "otherPotentialNormParties": 0,
                      "phone": "Not_Provided_By_Data_Source",
                      "secretaryOfStateId": "Not_Provided_By_Data_Source"
                    }
                  }
                ],
                "sourcePartyRole": "MOVANT"
              },
              {
                "attorneyRepresentationType": {
                  "attorneyRepresentationTypeId": "ATRPDTy7Tqdwk974XC",
                  "createdDate": "2022-03-28T04:59:20+00:00",
                  "name": "Attorney Represented",
                  "object": "AttorneyRepresentationType"
                },
                "contact": {
                  "addressArray": [],
                  "emailArray": [],
                  "object": "Contact",
                  "phoneNumberArray": []
                },
                "firstFetchDate": "2019-05-16T06:55:57+00:00",
                "firstName": "George",
                "isVisible": false,
                "lastFetchDate": "2019-05-16T06:55:57+00:00",
                "lastName": "Cantu",
                "middleName": null,
                "name": "MD George Cantu",
                "namePrefix": "MD",
                "nameSuffix": null,
                "object": "Party",
                "partyAttorneyAssociations": {
                  "nextPageAPI": null,
                  "object": "PartyAttorneyAssociations",
                  "pageNumber": 1,
                  "partyAttorneyAssociationArray": [
                    {
                      "attorneyId": "ATTYgr002d418c723b",
                      "isVisible": false,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgra353ef00eef1",
                      "partyId": "PRTYgr482cfeeb8c83"
                    },
                    {
                      "attorneyId": "ATTYgr7bc9427cf9ac",
                      "isVisible": false,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgre3f20d85287e",
                      "partyId": "PRTYgr482cfeeb8c83"
                    }
                  ],
                  "totalCount": 2,
                  "totalPages": 1
                },
                "partyClassificationType": "INDIVIDUAL",
                "partyId": "PRTYgr482cfeeb8c83",
                "partyRole": {
                  "createdDate": "2022-05-27T00:50:33+00:00",
                  "description": null,
                  "name": "Petitioner",
                  "object": "PartyRole",
                  "partyRoleGroup": "Party Offensive",
                  "partyRoleGroupId": "PTYGBnjxbx6tKNfVEP",
                  "partyRoleId": "PTYR9F4zbteyj7ehmi"
                },
                "possibleNormPartyArray": [
                  {
                    "associatedNormAttorneysAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormParties?pageNumber=1",
                    "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormJudges?pageNumber=1",
                    "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormLawFirms?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/caseCountAnalyticsByNormParty?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/caseCountAnalyticsByOpposingNormParty?pageNumber=1",
                    "confidenceScore": 0.5,
                    "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222",
                    "normPartyId": "NPTY22222222222222",
                    "normPartyName": "DAAZ PROPERTIES, L.L.C.",
                    "object": "PossibleNormParty",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.69,
                      "otherPotentialNormParties": 0,
                      "phone": "Not_Provided_By_Data_Source",
                      "secretaryOfStateId": "Not_Provided_By_Data_Source"
                    }
                  }
                ],
                "sourcePartyRole": "MOVANT"
              },
              {
                "attorneyRepresentationType": {
                  "attorneyRepresentationTypeId": "ATRP2jCCwDRNaP97DX",
                  "createdDate": "2022-03-28T04:59:20+00:00",
                  "name": "Unrepresented",
                  "object": "AttorneyRepresentationType"
                },
                "contact": {
                  "addressArray": [],
                  "emailArray": [],
                  "object": "Contact",
                  "phoneNumberArray": []
                },
                "firstFetchDate": "2019-05-16T06:55:58+00:00",
                "firstName": "Bert",
                "isVisible": true,
                "lastFetchDate": "2019-05-16T06:55:58+00:00",
                "lastName": "Stubbs",
                "middleName": null,
                "name": "Bert Stubbs",
                "namePrefix": null,
                "nameSuffix": null,
                "object": "Party",
                "partyAttorneyAssociations": {
                  "nextPageAPI": null,
                  "object": "PartyAttorneyAssociations",
                  "pageNumber": 0,
                  "partyAttorneyAssociationArray": [],
                  "totalCount": 0,
                  "totalPages": 0
                },
                "partyClassificationType": "INDIVIDUAL",
                "partyId": "PRTYgrbcb92d0f5423",
                "partyRole": null,
                "possibleNormPartyArray": [
                  {
                    "associatedNormAttorneysAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormParties?pageNumber=1",
                    "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormJudges?pageNumber=1",
                    "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormLawFirms?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/caseCountAnalyticsByNormParty?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/caseCountAnalyticsByOpposingNormParty?pageNumber=1",
                    "confidenceScore": 0.5,
                    "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222",
                    "normPartyId": "NPTY22222222222222",
                    "normPartyName": "DAAZ PROPERTIES, L.L.C.",
                    "object": "PossibleNormParty",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.69,
                      "otherPotentialNormParties": 0,
                      "phone": "Not_Provided_By_Data_Source",
                      "secretaryOfStateId": "Not_Provided_By_Data_Source"
                    }
                  }
                ],
                "sourcePartyRole": "CONSOLIDATED PLAINTIFF"
              },
              {
                "attorneyRepresentationType": {
                  "attorneyRepresentationTypeId": "ATRPDTy7Tqdwk974XC",
                  "createdDate": "2022-03-28T04:59:20+00:00",
                  "name": "Attorney Represented",
                  "object": "AttorneyRepresentationType"
                },
                "contact": {
                  "addressArray": [],
                  "emailArray": [],
                  "object": "Contact",
                  "phoneNumberArray": []
                },
                "firstFetchDate": "2019-05-16T06:55:58+00:00",
                "firstName": "Glen",
                "isVisible": false,
                "lastFetchDate": "2019-05-16T06:55:58+00:00",
                "lastName": "Pugh",
                "middleName": null,
                "name": "Glen Pugh",
                "namePrefix": null,
                "nameSuffix": null,
                "object": "Party",
                "partyAttorneyAssociations": {
                  "nextPageAPI": null,
                  "object": "PartyAttorneyAssociations",
                  "pageNumber": 1,
                  "partyAttorneyAssociationArray": [
                    {
                      "attorneyId": "ATTYgrf1b44f69da67",
                      "isVisible": false,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgrec9bdb2c10bc",
                      "partyId": "PRTYgrafb5cadb1f5b"
                    },
                    {
                      "attorneyId": "ATTYgrbe8552765bdc",
                      "isVisible": false,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMgr6615da7c13c6",
                      "partyId": "PRTYgrafb5cadb1f5b"
                    }
                  ],
                  "totalCount": 2,
                  "totalPages": 1
                },
                "partyClassificationType": "INDIVIDUAL",
                "partyId": "PRTYgrafb5cadb1f5b",
                "partyRole": {
                  "createdDate": "2022-05-27T00:50:33+00:00",
                  "description": null,
                  "name": "Petitioner",
                  "object": "PartyRole",
                  "partyRoleGroup": "Party Offensive",
                  "partyRoleGroupId": "PTYGBnjxbx6tKNfVEP",
                  "partyRoleId": "PTYR9F4zbteyj7ehmi"
                },
                "possibleNormPartyArray": [
                  {
                    "associatedNormAttorneysAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormParties?pageNumber=1",
                    "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormJudges?pageNumber=1",
                    "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormLawFirms?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/caseCountAnalyticsByNormParty?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/caseCountAnalyticsByOpposingNormParty?pageNumber=1",
                    "confidenceScore": 0.5,
                    "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222",
                    "normPartyId": "NPTY22222222222222",
                    "normPartyName": "DAAZ PROPERTIES, L.L.C.",
                    "object": "PossibleNormParty",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.69,
                      "otherPotentialNormParties": 0,
                      "phone": "Not_Provided_By_Data_Source",
                      "secretaryOfStateId": "Not_Provided_By_Data_Source"
                    }
                  }
                ],
                "sourcePartyRole": "MOVANT"
              }
            ],
            "totalCount": 810,
            "totalPages": 33
          },
          "relatedCases": {
            "nextPageAPI": null,
            "object": "RelatedCases",
            "pageNumber": 0,
            "relatedCaseArray": [],
            "totalCount": 0,
            "totalPages": 0
          },
          "sourceCaseData": {
            "natureOfSuitArray": [
              {
                "code": 365,
                "name": "Personal Inj. Prod. Liability",
                "object": "NatureOfSuit",
                "section": null,
                "sourceText": "365 Personal Inj. Prod. Liability"
              }
            ],
            "object": "SourceCaseData",
            "sourceCaseStatus": "CLOSED",
            "sourceCaseType": "365",
            "sourceCauseOfActionArray": [],
            "sourceChargeArray": [],
            "sourceCourt": "NYSDCE",
            "sourcePageData": []
          },
          "sourceDataStatus": null,
          "url": "https://unicourt.com/case/pc-db2-in-re-rezulin-products-liability-litigation-mdl-no-1348-26541"
        }
      },
      "CaseApiJudgeResponse": {
        "value": {
          "contact": {
            "addressArray": [],
            "emailArray": [],
            "object": "Contact",
            "phoneNumberArray": []
          },
          "firstFetchDate": "2021-07-29T19:05:57+00:00",
          "firstName": "Edgar",
          "isVisible": true,
          "judgeId": "JUDGbaf564ec55624a",
          "judgeType": {
            "createdDate": "2022-03-28T04:59:06+00:00",
            "judgeTypeId": "JGTPkwrfzkDJUvxpN9",
            "name": "Judge",
            "object": "JudgeType"
          },
          "lastFetchDate": "2021-07-29T19:05:57+00:00",
          "lastName": "Rutter",
          "middleName": "J",
          "name": "J. Edgar Rutter II",
          "namePrefix": null,
          "nameSuffix": "II",
          "object": "Judge",
          "possibleNormJudgeArray": [
            {
              "associatedNormAttorneysAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUD22222222222222/associatedNormAttorneys?pageNumber=1",
              "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUD22222222222222/associatedNormLawFirms?pageNumber=1",
              "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUD22222222222222/associatedNormParties?pageNumber=1",
              "bestMatch": true,
              "caseCountAnalyticsByNormJudgeAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByNormJudge?pageNumber=1&q=normJudgeId:NJUD22222222222222",
              "confidenceScore": 0.5,
              "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUD22222222222222",
              "normJudgeId": "NJUD22222222222222",
              "normJudgeName": "CINDY C AGUIRRE",
              "object": "PossibleNormJudge",
              "scoreConstituents": {
                "address": "Not_Provided_By_Data_Source",
                "email": "Not_Provided_By_Data_Source",
                "nameSimilarityScore": 0.69,
                "otherPotentialNormJudges": 0,
                "phone": "Not_Provided_By_Data_Source"
              }
            }
          ],
          "sourceJudgeType": "JUDGE"
        }
      },
      "CaseApiJudgesResponse": {
        "value": {
          "judgeArray": [
            {
              "contact": {
                "addressArray": [],
                "emailArray": [],
                "object": "Contact",
                "phoneNumberArray": []
              },
              "firstFetchDate": "2018-12-11T05:11:06+00:00",
              "firstName": "Karen",
              "isVisible": false,
              "judgeId": "JUDGgq3042866728df",
              "judgeType": {
                "createdDate": "2022-03-28T04:59:06+00:00",
                "judgeTypeId": "JGTPhBqG2hQ2exXUwG",
                "name": "Referral Judge",
                "object": "JudgeType"
              },
              "lastFetchDate": "2018-12-19T16:03:29+00:00",
              "lastName": "Crawford",
              "middleName": "S",
              "name": "Karen S. Crawford",
              "namePrefix": null,
              "nameSuffix": null,
              "object": "Judge",
              "possibleNormJudgeArray": [
                {
                  "associatedNormAttorneysAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUD22222222222222/associatedNormAttorneys?pageNumber=1",
                  "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUD22222222222222/associatedNormLawFirms?pageNumber=1",
                  "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUD22222222222222/associatedNormParties?pageNumber=1",
                  "bestMatch": true,
                  "caseCountAnalyticsByNormJudgeAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByNormJudge?pageNumber=1&q=normJudgeId:NJUD22222222222222",
                  "confidenceScore": 0.5,
                  "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUD22222222222222",
                  "normJudgeId": "NJUD22222222222222",
                  "normJudgeName": "CINDY C AGUIRRE",
                  "object": "PossibleNormJudge",
                  "scoreConstituents": {
                    "address": "Not_Provided_By_Data_Source",
                    "email": "Not_Provided_By_Data_Source",
                    "nameSimilarityScore": 0.69,
                    "otherPotentialNormJudges": 0,
                    "phone": "Not_Provided_By_Data_Source"
                  }
                }
              ],
              "sourceJudgeType": "REFERRAL"
            },
            {
              "contact": {
                "addressArray": [],
                "emailArray": [],
                "object": "Contact",
                "phoneNumberArray": []
              },
              "firstFetchDate": "2018-12-11T05:11:06+00:00",
              "firstName": "Marilyn",
              "isVisible": false,
              "judgeId": "JUDGgq4adf8f744abc",
              "judgeType": {
                "createdDate": "2022-03-28T04:59:06+00:00",
                "judgeTypeId": "JGTPSZBRSRcT94vpaA",
                "name": "Presiding Judge",
                "object": "JudgeType"
              },
              "lastFetchDate": "2018-12-19T16:03:29+00:00",
              "lastName": "Huff",
              "middleName": "L",
              "name": "Marilyn L. Huff",
              "namePrefix": null,
              "nameSuffix": null,
              "object": "Judge",
              "possibleNormJudgeArray": [
                {
                  "associatedNormAttorneysAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUD22222222222222/associatedNormAttorneys?pageNumber=1",
                  "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUD22222222222222/associatedNormLawFirms?pageNumber=1",
                  "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUD22222222222222/associatedNormParties?pageNumber=1",
                  "bestMatch": true,
                  "caseCountAnalyticsByNormJudgeAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByNormJudge?pageNumber=1&q=normJudgeId:NJUD22222222222222",
                  "confidenceScore": 0.5,
                  "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUD22222222222222",
                  "normJudgeId": "NJUD22222222222222",
                  "normJudgeName": "CINDY C AGUIRRE",
                  "object": "PossibleNormJudge",
                  "scoreConstituents": {
                    "address": "Not_Provided_By_Data_Source",
                    "email": "Not_Provided_By_Data_Source",
                    "nameSimilarityScore": 0.69,
                    "otherPotentialNormJudges": 0,
                    "phone": "Not_Provided_By_Data_Source"
                  }
                }
              ],
              "sourceJudgeType": "PRESIDING"
            },
            {
              "contact": {
                "addressArray": [],
                "emailArray": [],
                "object": "Contact",
                "phoneNumberArray": []
              },
              "firstFetchDate": "2020-02-07T16:40:30+00:00",
              "firstName": "Allison",
              "isVisible": true,
              "judgeId": "JUDGgq675e4cd55e03",
              "judgeType": {
                "createdDate": "2022-03-28T04:59:06+00:00",
                "judgeTypeId": "JGTPhBqG2hQ2exXUwG",
                "name": "Referral Judge",
                "object": "JudgeType"
              },
              "lastFetchDate": "2022-07-03T06:22:10+00:00",
              "lastName": "Goddard",
              "middleName": "H",
              "name": "Allison H. Goddard",
              "namePrefix": null,
              "nameSuffix": null,
              "object": "Judge",
              "possibleNormJudgeArray": [
                {
                  "associatedNormAttorneysAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUD22222222222222/associatedNormAttorneys?pageNumber=1",
                  "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUD22222222222222/associatedNormLawFirms?pageNumber=1",
                  "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUD22222222222222/associatedNormParties?pageNumber=1",
                  "bestMatch": true,
                  "caseCountAnalyticsByNormJudgeAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByNormJudge?pageNumber=1&q=normJudgeId:NJUD22222222222222",
                  "confidenceScore": 0.5,
                  "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUD22222222222222",
                  "normJudgeId": "NJUD22222222222222",
                  "normJudgeName": "CINDY C AGUIRRE",
                  "object": "PossibleNormJudge",
                  "scoreConstituents": {
                    "address": "Not_Provided_By_Data_Source",
                    "email": "Not_Provided_By_Data_Source",
                    "nameSimilarityScore": 0.69,
                    "otherPotentialNormJudges": 0,
                    "phone": "Not_Provided_By_Data_Source"
                  }
                }
              ],
              "sourceJudgeType": "REFERRAL"
            },
            {
              "contact": {
                "addressArray": [],
                "emailArray": [],
                "object": "Contact",
                "phoneNumberArray": []
              },
              "firstFetchDate": "2020-02-07T16:40:30+00:00",
              "firstName": "William",
              "isVisible": false,
              "judgeId": "JUDGgq282289c8e697",
              "judgeType": {
                "createdDate": "2022-03-28T04:59:06+00:00",
                "judgeTypeId": "JGTPSZBRSRcT94vpaA",
                "name": "Presiding Judge",
                "object": "JudgeType"
              },
              "lastFetchDate": "2020-07-03T16:03:19+00:00",
              "lastName": "Hayes",
              "middleName": "Q",
              "name": "William Q. Hayes",
              "namePrefix": null,
              "nameSuffix": null,
              "object": "Judge",
              "possibleNormJudgeArray": [
                {
                  "associatedNormAttorneysAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUD22222222222222/associatedNormAttorneys?pageNumber=1",
                  "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUD22222222222222/associatedNormLawFirms?pageNumber=1",
                  "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUD22222222222222/associatedNormParties?pageNumber=1",
                  "bestMatch": true,
                  "caseCountAnalyticsByNormJudgeAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByNormJudge?pageNumber=1&q=normJudgeId:NJUD22222222222222",
                  "confidenceScore": 0.5,
                  "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUD22222222222222",
                  "normJudgeId": "NJUD22222222222222",
                  "normJudgeName": "CINDY C AGUIRRE",
                  "object": "PossibleNormJudge",
                  "scoreConstituents": {
                    "address": "Not_Provided_By_Data_Source",
                    "email": "Not_Provided_By_Data_Source",
                    "nameSimilarityScore": 0.69,
                    "otherPotentialNormJudges": 0,
                    "phone": "Not_Provided_By_Data_Source"
                  }
                }
              ],
              "sourceJudgeType": "PRESIDING"
            },
            {
              "contact": {
                "addressArray": [],
                "emailArray": [],
                "object": "Contact",
                "phoneNumberArray": []
              },
              "firstFetchDate": "2020-09-24T16:26:51+00:00",
              "firstName": "Todd",
              "isVisible": false,
              "judgeId": "JUDGgq1292929f24c9",
              "judgeType": {
                "createdDate": "2022-03-28T04:59:06+00:00",
                "judgeTypeId": "JGTPSZBRSRcT94vpaA",
                "name": "Presiding Judge",
                "object": "JudgeType"
              },
              "lastFetchDate": "2021-11-18T07:04:05+00:00",
              "lastName": "Robinson",
              "middleName": "W",
              "name": "Todd W. Robinson",
              "namePrefix": null,
              "nameSuffix": null,
              "object": "Judge",
              "possibleNormJudgeArray": [
                {
                  "associatedNormAttorneysAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUD22222222222222/associatedNormAttorneys?pageNumber=1",
                  "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUD22222222222222/associatedNormLawFirms?pageNumber=1",
                  "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUD22222222222222/associatedNormParties?pageNumber=1",
                  "bestMatch": true,
                  "caseCountAnalyticsByNormJudgeAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByNormJudge?pageNumber=1&q=normJudgeId:NJUD22222222222222",
                  "confidenceScore": 0.5,
                  "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUD22222222222222",
                  "normJudgeId": "NJUD22222222222222",
                  "normJudgeName": "CINDY C AGUIRRE",
                  "object": "PossibleNormJudge",
                  "scoreConstituents": {
                    "address": "Not_Provided_By_Data_Source",
                    "email": "Not_Provided_By_Data_Source",
                    "nameSimilarityScore": 0.69,
                    "otherPotentialNormJudges": 0,
                    "phone": "Not_Provided_By_Data_Source"
                  }
                }
              ],
              "sourceJudgeType": "PRESIDING"
            },
            {
              "contact": {
                "addressArray": [],
                "emailArray": [],
                "object": "Contact",
                "phoneNumberArray": []
              },
              "firstFetchDate": "2022-01-08T09:01:49+00:00",
              "firstName": "Linda",
              "isVisible": false,
              "judgeId": "JUDGgq541d1ed3241b",
              "judgeType": {
                "createdDate": "2022-03-28T04:59:06+00:00",
                "judgeTypeId": "JGTPSZBRSRcT94vpaA",
                "name": "Presiding Judge",
                "object": "JudgeType"
              },
              "lastFetchDate": "2022-06-17T06:26:20+00:00",
              "lastName": "Lopez",
              "middleName": null,
              "name": "Linda Lopez",
              "namePrefix": null,
              "nameSuffix": null,
              "object": "Judge",
              "possibleNormJudgeArray": [
                {
                  "associatedNormAttorneysAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUD22222222222222/associatedNormAttorneys?pageNumber=1",
                  "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUD22222222222222/associatedNormLawFirms?pageNumber=1",
                  "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUD22222222222222/associatedNormParties?pageNumber=1",
                  "bestMatch": true,
                  "caseCountAnalyticsByNormJudgeAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByNormJudge?pageNumber=1&q=normJudgeId:NJUD22222222222222",
                  "confidenceScore": 0.5,
                  "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUD22222222222222",
                  "normJudgeId": "NJUD22222222222222",
                  "normJudgeName": "CINDY C AGUIRRE",
                  "object": "PossibleNormJudge",
                  "scoreConstituents": {
                    "address": "Not_Provided_By_Data_Source",
                    "email": "Not_Provided_By_Data_Source",
                    "nameSimilarityScore": 0.69,
                    "otherPotentialNormJudges": 0,
                    "phone": "Not_Provided_By_Data_Source"
                  }
                }
              ],
              "sourceJudgeType": "PRESIDING"
            },
            {
              "contact": {
                "addressArray": [],
                "emailArray": [],
                "object": "Contact",
                "phoneNumberArray": []
              },
              "firstFetchDate": "2022-06-25T06:26:03+00:00",
              "firstName": "Robert",
              "isVisible": true,
              "judgeId": "JUDGgq8533ab76ac63",
              "judgeType": {
                "createdDate": "2022-03-28T04:59:06+00:00",
                "judgeTypeId": "JGTPSZBRSRcT94vpaA",
                "name": "Presiding Judge",
                "object": "JudgeType"
              },
              "lastFetchDate": "2022-07-03T06:22:10+00:00",
              "lastName": "Huie",
              "middleName": "S",
              "name": "Robert S. Huie",
              "namePrefix": null,
              "nameSuffix": null,
              "object": "Judge",
              "possibleNormJudgeArray": [
                {
                  "associatedNormAttorneysAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUD22222222222222/associatedNormAttorneys?pageNumber=1",
                  "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUD22222222222222/associatedNormLawFirms?pageNumber=1",
                  "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUD22222222222222/associatedNormParties?pageNumber=1",
                  "bestMatch": true,
                  "caseCountAnalyticsByNormJudgeAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByNormJudge?pageNumber=1&q=normJudgeId:NJUD22222222222222",
                  "confidenceScore": 0.5,
                  "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUD22222222222222",
                  "normJudgeId": "NJUD22222222222222",
                  "normJudgeName": "CINDY C AGUIRRE",
                  "object": "PossibleNormJudge",
                  "scoreConstituents": {
                    "address": "Not_Provided_By_Data_Source",
                    "email": "Not_Provided_By_Data_Source",
                    "nameSimilarityScore": 0.69,
                    "otherPotentialNormJudges": 0,
                    "phone": "Not_Provided_By_Data_Source"
                  }
                }
              ],
              "sourceJudgeType": "PRESIDING"
            }
          ],
          "nextPageAPI": null,
          "object": "Judges",
          "pageNumber": 1,
          "totalCount": 7,
          "totalPages": 1
        }
      },
      "CaseApiPartiesResponse": {
        "value": {
          "nextPageAPI": null,
          "object": "Parties",
          "pageNumber": 1,
          "partyArray": [
            {
              "attorneyRepresentationType": {
                "attorneyRepresentationTypeId": "ATRPDTy7Tqdwk974XC",
                "createdDate": "2022-03-28T04:59:20+00:00",
                "name": "Attorney Represented",
                "object": "AttorneyRepresentationType"
              },
              "contact": {
                "addressArray": [],
                "emailArray": [],
                "object": "Contact",
                "phoneNumberArray": []
              },
              "firstFetchDate": "2018-10-19T05:42:57+00:00",
              "firstName": "Principal Life Insurance CO",
              "isVisible": false,
              "lastFetchDate": "2018-12-17T07:28:42+00:00",
              "lastName": null,
              "middleName": null,
              "name": "Principal Life Insurance Company",
              "namePrefix": null,
              "nameSuffix": null,
              "object": "Party",
              "partyAttorneyAssociations": {
                "nextPageAPI": null,
                "object": "PartyAttorneyAssociations",
                "pageNumber": 1,
                "partyAttorneyAssociationArray": [
                  {
                    "attorneyId": "ATTYgq0e46d1ee5cc2",
                    "isVisible": false,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgq9b386d09d943",
                    "partyId": "PRTYgq097d6bb5d3ca"
                  },
                  {
                    "attorneyId": "ATTYgq2ca7fa5affb6",
                    "isVisible": false,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgqba11e16aa58a",
                    "partyId": "PRTYgq097d6bb5d3ca"
                  }
                ],
                "totalCount": 2,
                "totalPages": 1
              },
              "partyClassificationType": "COMPANY",
              "partyId": "PRTYgq097d6bb5d3ca",
              "partyRole": {
                "createdDate": "2022-05-27T00:50:33+00:00",
                "description": null,
                "name": "Defendant",
                "object": "PartyRole",
                "partyRoleGroup": "Party Defensive",
                "partyRoleGroupId": "PTYG73uQdgJdpA3ebc",
                "partyRoleId": "PTYRKo8tkTBFvJdCQp"
              },
              "possibleNormPartyArray": [
                {
                  "associatedNormAttorneysAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormAttorneys?pageNumber=1",
                  "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormJudges?pageNumber=1",
                  "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormLawFirms?pageNumber=1",
                  "bestMatch": true,
                  "caseCountAnalyticsByNormPartyAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByNormParty?pageNumber=1&q=normPartyId:NPTY22222222222222",
                  "caseCountAnalyticsByOpposingNormPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/caseCountAnalyticsByOpposingNormParty?pageNumber=1",
                  "confidenceScore": 0.5,
                  "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222",
                  "normPartyId": "NPTY22222222222222",
                  "normPartyName": "DAAZ PROPERTIES, L.L.C.",
                  "object": "PossibleNormParty",
                  "scoreConstituents": {
                    "address": "Not_Provided_By_Data_Source",
                    "email": "Not_Provided_By_Data_Source",
                    "nameSimilarityScore": 0.69,
                    "otherPotentialNormParties": 0,
                    "phone": "Not_Provided_By_Data_Source",
                    "secretaryOfStateId": "Not_Provided_By_Data_Source"
                  }
                }
              ],
              "sourcePartyRole": "DEFENDANT"
            },
            {
              "attorneyRepresentationType": {
                "attorneyRepresentationTypeId": "ATRPDTy7Tqdwk974XC",
                "createdDate": "2022-03-28T04:59:20+00:00",
                "name": "Attorney Represented",
                "object": "AttorneyRepresentationType"
              },
              "contact": {
                "addressArray": [],
                "emailArray": [],
                "object": "Contact",
                "phoneNumberArray": []
              },
              "firstFetchDate": "2018-12-17T07:28:42+00:00",
              "firstName": "Bankers Life Insurance (formerly) Principle Life Insurance (currently)",
              "isVisible": true,
              "lastFetchDate": "2018-12-17T07:28:42+00:00",
              "lastName": null,
              "middleName": null,
              "name": "Bankers Life Insurance (formerly) Principle Life Insurance (currently)",
              "namePrefix": null,
              "nameSuffix": null,
              "object": "Party",
              "partyAttorneyAssociations": {
                "nextPageAPI": null,
                "object": "PartyAttorneyAssociations",
                "pageNumber": 1,
                "partyAttorneyAssociationArray": [
                  {
                    "attorneyId": "ATTYgq616032fba082",
                    "isVisible": true,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgq1a8799b9e93f",
                    "partyId": "PRTYgq5352bf8a6dfd"
                  },
                  {
                    "attorneyId": "ATTYgq0e46d1ee5cc2",
                    "isVisible": true,
                    "object": "PartyAttorneyAssociation",
                    "partyAttorneyAssociationId": "PATMgq2a2444507351",
                    "partyId": "PRTYgq5352bf8a6dfd"
                  }
                ],
                "totalCount": 2,
                "totalPages": 1
              },
              "partyClassificationType": "COMPANY",
              "partyId": "PRTYgq5352bf8a6dfd",
              "partyRole": {
                "createdDate": "2022-05-27T00:50:33+00:00",
                "description": null,
                "name": "Defendant",
                "object": "PartyRole",
                "partyRoleGroup": "Party Defensive",
                "partyRoleGroupId": "PTYG73uQdgJdpA3ebc",
                "partyRoleId": "PTYRKo8tkTBFvJdCQp"
              },
              "possibleNormPartyArray": [
                {
                  "associatedNormAttorneysAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormAttorneys?pageNumber=1",
                  "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormJudges?pageNumber=1",
                  "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormLawFirms?pageNumber=1",
                  "bestMatch": true,
                  "caseCountAnalyticsByNormPartyAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByNormParty?pageNumber=1&q=normPartyId:NPTY22222222222222",
                  "caseCountAnalyticsByOpposingNormPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/caseCountAnalyticsByOpposingNormParty?pageNumber=1",
                  "confidenceScore": 0.5,
                  "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222",
                  "normPartyId": "NPTY22222222222222",
                  "normPartyName": "DAAZ PROPERTIES, L.L.C.",
                  "object": "PossibleNormParty",
                  "scoreConstituents": {
                    "address": "Not_Provided_By_Data_Source",
                    "email": "Not_Provided_By_Data_Source",
                    "nameSimilarityScore": 0.69,
                    "otherPotentialNormParties": 0,
                    "phone": "Not_Provided_By_Data_Source",
                    "secretaryOfStateId": "Not_Provided_By_Data_Source"
                  }
                }
              ],
              "sourcePartyRole": "DEFENDANT"
            },
            {
              "attorneyRepresentationType": {
                "attorneyRepresentationTypeId": "ATRPYgPMGJufoCsR6Q",
                "createdDate": "2022-03-28T04:59:20+00:00",
                "name": "Self Represented",
                "object": "AttorneyRepresentationType"
              },
              "contact": {
                "addressArray": [
                  {
                    "city": "Jacksonville",
                    "countryCode": "USA",
                    "countryName": "United States of America",
                    "firstFetchDate": "2018-10-19T05:42:58+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2018-12-17T07:28:42+00:00",
                    "latitude": null,
                    "longitude": null,
                    "object": "Address",
                    "stateCode": "FL",
                    "stateName": "FLORIDA",
                    "streetAddress1": "7533 Ridgeway Road North",
                    "streetAddress2": null,
                    "zip": "32244",
                    "zip4": null
                  }
                ],
                "emailArray": [
                  {
                    "emailId": "123heichberger@gmail.com",
                    "firstFetchDate": "2018-10-19T05:42:58+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2018-12-17T07:28:42+00:00",
                    "object": "Email"
                  }
                ],
                "object": "Contact",
                "phoneNumberArray": [
                  {
                    "firstFetchDate": "2018-10-19T05:42:58+00:00",
                    "isVisible": true,
                    "lastFetchDate": "2018-12-17T07:28:42+00:00",
                    "object": "Phone",
                    "phoneNumber": "9043120769",
                    "phoneType": "DEFAULT"
                  }
                ]
              },
              "firstFetchDate": "2018-10-19T05:42:58+00:00",
              "firstName": "Albert",
              "isVisible": true,
              "lastFetchDate": "2018-12-17T07:28:42+00:00",
              "lastName": "Heichberger",
              "middleName": "N",
              "name": "Albert N. Heichberger",
              "namePrefix": null,
              "nameSuffix": null,
              "object": "Party",
              "partyAttorneyAssociations": {
                "nextPageAPI": null,
                "object": "PartyAttorneyAssociations",
                "pageNumber": 0,
                "partyAttorneyAssociationArray": [],
                "totalCount": 0,
                "totalPages": 0
              },
              "partyClassificationType": "INDIVIDUAL",
              "partyId": "PRTYgq13db415d210b",
              "partyRole": {
                "createdDate": "2022-05-27T00:50:33+00:00",
                "description": null,
                "name": "Plaintiff",
                "object": "PartyRole",
                "partyRoleGroup": "Party Offensive",
                "partyRoleGroupId": "PTYGBnjxbx6tKNfVEP",
                "partyRoleId": "PTYRiP8nMgPxBsPc5i"
              },
              "possibleNormPartyArray": [
                {
                  "associatedNormAttorneysAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormAttorneys?pageNumber=1",
                  "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormJudges?pageNumber=1",
                  "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormLawFirms?pageNumber=1",
                  "bestMatch": true,
                  "caseCountAnalyticsByNormPartyAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByNormParty?pageNumber=1&q=normPartyId:NPTY22222222222222",
                  "caseCountAnalyticsByOpposingNormPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/caseCountAnalyticsByOpposingNormParty?pageNumber=1",
                  "confidenceScore": 0.5,
                  "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222",
                  "normPartyId": "NPTY22222222222222",
                  "normPartyName": "DAAZ PROPERTIES, L.L.C.",
                  "object": "PossibleNormParty",
                  "scoreConstituents": {
                    "address": "Not_Provided_By_Data_Source",
                    "email": "Not_Provided_By_Data_Source",
                    "nameSimilarityScore": 0.69,
                    "otherPotentialNormParties": 0,
                    "phone": "Not_Provided_By_Data_Source",
                    "secretaryOfStateId": "Not_Provided_By_Data_Source"
                  }
                }
              ],
              "sourcePartyRole": "PLAINTIFF"
            }
          ],
          "totalCount": 3,
          "totalPages": 1
        }
      },
      "CaseApiPartyResponse": {
        "value": {
          "attorneyRepresentationType": {
            "attorneyRepresentationTypeId": "ATRPDTy7Tqdwk974XC",
            "createdDate": "2022-03-28T04:59:20+00:00",
            "name": "Attorney Represented",
            "object": "AttorneyRepresentationType"
          },
          "contact": {
            "addressArray": [
              {
                "city": "333 Clay Street",
                "countryCode": "USA",
                "countryName": "United States of America",
                "firstFetchDate": "2022-06-20T17:05:48+00:00",
                "isVisible": true,
                "lastFetchDate": "2022-06-20T17:05:48+00:00",
                "latitude": null,
                "longitude": null,
                "object": "Address",
                "stateCode": null,
                "stateName": "UNKNOWN",
                "streetAddress1": "Three Allen Center",
                "streetAddress2": null,
                "zip": "2900",
                "zip4": null
              }
            ],
            "emailArray": [],
            "object": "Contact",
            "phoneNumberArray": []
          },
          "firstFetchDate": "2022-06-20T17:05:47+00:00",
          "firstName": "Castex Energy IV, LLC, Reorganized Debtors",
          "isVisible": true,
          "lastFetchDate": "2022-06-20T17:05:47+00:00",
          "lastName": null,
          "middleName": null,
          "name": "Castex Energy IV, LLC, Reorganized Debtors",
          "namePrefix": null,
          "nameSuffix": null,
          "object": "Party",
          "partyAttorneyAssociations": {
            "nextPageAPI": null,
            "object": "PartyAttorneyAssociations",
            "pageNumber": 1,
            "partyAttorneyAssociationArray": [
              {
                "attorneyId": "ATTYgl5e6b16ef565f",
                "isVisible": true,
                "object": "PartyAttorneyAssociation",
                "partyAttorneyAssociationId": "PATMglb6ffa3e855a0",
                "partyId": "PRTYgla171a8952aed"
              },
              {
                "attorneyId": "ATTYgl58fd7d924dd9",
                "isVisible": true,
                "object": "PartyAttorneyAssociation",
                "partyAttorneyAssociationId": "PATMgl49011bd6255c",
                "partyId": "PRTYgla171a8952aed"
              },
              {
                "attorneyId": "ATTYgl1c596edbfe7d",
                "isVisible": true,
                "object": "PartyAttorneyAssociation",
                "partyAttorneyAssociationId": "PATMgl92242db374c0",
                "partyId": "PRTYgla171a8952aed"
              }
            ],
            "totalCount": 3,
            "totalPages": 1
          },
          "partyClassificationType": "COMPANY",
          "partyId": "PRTYgla171a8952aed",
          "partyRole": {
            "createdDate": "2022-05-27T00:50:33+00:00",
            "description": null,
            "name": "Defendant",
            "object": "PartyRole",
            "partyRoleGroup": "Party Defensive",
            "partyRoleGroupId": "PTYG73uQdgJdpA3ebc",
            "partyRoleId": "PTYRKo8tkTBFvJdCQp"
          },
          "possibleNormPartyArray": [
            {
              "associatedNormAttorneysAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormAttorneys?pageNumber=1",
              "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormJudges?pageNumber=1",
              "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormLawFirms?pageNumber=1",
              "bestMatch": true,
              "caseCountAnalyticsByNormPartyAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByNormParty?pageNumber=1&q=normPartyId:NPTY22222222222222",
              "caseCountAnalyticsByOpposingNormPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/caseCountAnalyticsByOpposingNormParty?pageNumber=1",
              "confidenceScore": 0.5,
              "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222",
              "normPartyId": "NPTY22222222222222",
              "normPartyName": "DAAZ PROPERTIES, L.L.C.",
              "object": "PossibleNormParty",
              "scoreConstituents": {
                "address": "Not_Provided_By_Data_Source",
                "email": "Not_Provided_By_Data_Source",
                "nameSimilarityScore": 0.69,
                "otherPotentialNormParties": 0,
                "phone": "Not_Provided_By_Data_Source",
                "secretaryOfStateId": "Not_Provided_By_Data_Source"
              }
            }
          ],
          "sourcePartyRole": "DEFENDANT"
        }
      },
      "CaseApiRelatedCasesResponse": {
        "value": {
          "nextPageAPI": null,
          "object": "RelatedCases",
          "pageNumber": 1,
          "relatedCaseArray": [
            {
              "additionalSourceData": {
                "extractedFields": {
                  "case_number": "RIC1513784",
                  "filing_date": "11/19/2015",
                  "is_lead_case": "No"
                },
                "rawOrderedDataArray": []
              },
              "caseAPI": "https://enterpriseapi.unicourt.com/case/CASEbab8f5d687e2bc",
              "caseId": "CASEbab8f5d687e2bc",
              "caseName": null,
              "caseNumber": "RIC1513784",
              "caseRelationshipType": {
                "caseRelationshipTypeId": "CRTPgkmnzpiBXstT3s",
                "createdDate": "2022-03-28T04:59:33+00:00",
                "name": "Child Case",
                "object": "CaseRelationshipType"
              },
              "isVisible": true,
              "object": "RelatedCase",
              "sourceCaseRelationshipType": "CHILD CASE"
            }
          ],
          "totalCount": 1,
          "totalPages": 1
        }
      },
      "CaseApiStateCaseResponse": {
        "value": {
          "attorneys": {
            "attorneyArray": [
              {
                "attorneyId": "ATTYar635ff45b4d46",
                "attorneyLawFirmArray": [],
                "attorneyType": {
                  "attorneyTypeId": "ATYPRPk3LNobYmtqwF",
                  "createdDate": "2022-03-28T04:59:12+00:00",
                  "name": "Attorney",
                  "object": "AttorneyType"
                },
                "barNumber": null,
                "contact": {
                  "addressArray": [],
                  "emailArray": [],
                  "object": "Contact",
                  "phoneNumberArray": []
                },
                "firstFetchDate": "2018-12-07T05:17:31+00:00",
                "firstName": "YASHA",
                "isVisible": true,
                "lastFetchDate": "2022-07-17T17:57:41+00:00",
                "lastName": "BRONSHTEYN",
                "middleName": null,
                "name": "BRONSHTEYN YASHA",
                "namePrefix": null,
                "nameSuffix": null,
                "object": "Attorney",
                "partyAttorneyAssociations": {
                  "nextPageAPI": null,
                  "object": "PartyAttorneyAssociations",
                  "pageNumber": 1,
                  "partyAttorneyAssociationArray": [
                    {
                      "attorneyId": "ATTYar635ff45b4d46",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar2784254f8675",
                      "partyId": "PRTYarfc6d1e88947a"
                    },
                    {
                      "attorneyId": "ATTYar635ff45b4d46",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar68754268399b",
                      "partyId": "PRTYar5ef1babdaa60"
                    },
                    {
                      "attorneyId": "ATTYar635ff45b4d46",
                      "isVisible": false,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar1e4486acbc0a",
                      "partyId": "PRTYar7e672c560550"
                    },
                    {
                      "attorneyId": "ATTYar635ff45b4d46",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMarb6b2e13aabc4",
                      "partyId": "PRTYar92ea99913e29"
                    }
                  ],
                  "totalCount": 4,
                  "totalPages": 1
                },
                "partyRoleGroupIdArray": [
                  "PTYGBnjxbx6tKNfVEP"
                ],
                "partyRoleIdArray": [
                  "PTYR9F4zbteyj7ehmi"
                ],
                "possibleNormAttorneyArray": [
                  {
                    "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormJudges?pageNumber=1",
                    "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormLawFirms?pageNumber=1",
                    "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormParties?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByNormAttorney?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByOpposingNormAttorney?pageNumber=1",
                    "confidenceScore": 0.5,
                    "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111",
                    "normAttorneyId": "NATY11111111111111",
                    "normAttorneyName": "ACOSTA S FERNANDO",
                    "object": "PossibleNormAttorney",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "barId": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "lawFirm": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.6,
                      "otherPotentialNormAttorneys": 0,
                      "phone": "Not_Provided_By_Data_Source"
                    }
                  }
                ],
                "possibleNormLawFirmArray": [
                  {
                    "associatedNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormAttorney?pageNumber=1",
                    "associatedNormJudgeAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormJudges?pageNumber=1",
                    "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormParties?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByNormLawFirm?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByOpposingNormLawFirm?pageNumber=1",
                    "confidenceScore": 0.66,
                    "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111",
                    "normLawFirmId": "NLAF11111111111111",
                    "normLawFirmName": "MidLand Funding LLC",
                    "object": "PossibleNormLawFirm",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.8,
                      "otherPotentialNormLawFirms": 0,
                      "phone": "Not_Provided_By_Data_Source",
                      "secretaryOfStateId": "Not_Provided_By_Data_Source"
                    },
                    "sourceDetails": {
                      "linkedNormAttorneyIdArray": [
                        "NATY11111111111111"
                      ],
                      "source": "Case_Attorney_Linked_In_Other_Cases"
                    }
                  }
                ],
                "sourceAttorneyType": "ATTORNEY FOR PETITIONER"
              },
              {
                "attorneyId": "ATTYare2c99eb41f9e",
                "attorneyLawFirmArray": [],
                "attorneyType": {
                  "attorneyTypeId": "ATYPRPk3LNobYmtqwF",
                  "createdDate": "2022-03-28T04:59:12+00:00",
                  "name": "Attorney",
                  "object": "AttorneyType"
                },
                "barNumber": null,
                "contact": {
                  "addressArray": [],
                  "emailArray": [],
                  "object": "Contact",
                  "phoneNumberArray": []
                },
                "firstFetchDate": "2019-01-06T05:35:07+00:00",
                "firstName": "RONALD",
                "isVisible": true,
                "lastFetchDate": "2022-07-17T17:57:41+00:00",
                "lastName": "BELSOME",
                "middleName": "LANCE",
                "name": "BELSOME RONALD LANCE",
                "namePrefix": null,
                "nameSuffix": null,
                "object": "Attorney",
                "partyAttorneyAssociations": {
                  "nextPageAPI": null,
                  "object": "PartyAttorneyAssociations",
                  "pageNumber": 1,
                  "partyAttorneyAssociationArray": [
                    {
                      "attorneyId": "ATTYare2c99eb41f9e",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar68cbcdea621a",
                      "partyId": "PRTYarfc6d1e88947a"
                    },
                    {
                      "attorneyId": "ATTYare2c99eb41f9e",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar75c96f6b3d09",
                      "partyId": "PRTYar5ef1babdaa60"
                    },
                    {
                      "attorneyId": "ATTYare2c99eb41f9e",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar7bc62fc16ca6",
                      "partyId": "PRTYar92ea99913e29"
                    },
                    {
                      "attorneyId": "ATTYare2c99eb41f9e",
                      "isVisible": false,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMara0df75e0ad8b",
                      "partyId": "PRTYar7e672c560550"
                    }
                  ],
                  "totalCount": 4,
                  "totalPages": 1
                },
                "partyRoleGroupIdArray": [
                  "PTYGBnjxbx6tKNfVEP"
                ],
                "partyRoleIdArray": [
                  "PTYR9F4zbteyj7ehmi"
                ],
                "possibleNormAttorneyArray": [
                  {
                    "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormJudges?pageNumber=1",
                    "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormLawFirms?pageNumber=1",
                    "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormParties?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByNormAttorney?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByOpposingNormAttorney?pageNumber=1",
                    "confidenceScore": 0.5,
                    "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111",
                    "normAttorneyId": "NATY11111111111111",
                    "normAttorneyName": "ACOSTA S FERNANDO",
                    "object": "PossibleNormAttorney",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "barId": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "lawFirm": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.6,
                      "otherPotentialNormAttorneys": 0,
                      "phone": "Not_Provided_By_Data_Source"
                    }
                  }
                ],
                "possibleNormLawFirmArray": [
                  {
                    "associatedNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormAttorney?pageNumber=1",
                    "associatedNormJudgeAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormJudges?pageNumber=1",
                    "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormParties?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByNormLawFirm?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByOpposingNormLawFirm?pageNumber=1",
                    "confidenceScore": 0.66,
                    "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111",
                    "normLawFirmId": "NLAF11111111111111",
                    "normLawFirmName": "MidLand Funding LLC",
                    "object": "PossibleNormLawFirm",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.8,
                      "otherPotentialNormLawFirms": 0,
                      "phone": "Not_Provided_By_Data_Source",
                      "secretaryOfStateId": "Not_Provided_By_Data_Source"
                    },
                    "sourceDetails": {
                      "linkedNormAttorneyIdArray": [
                        "NATY11111111111111"
                      ],
                      "source": "Case_Attorney_Linked_In_Other_Cases"
                    }
                  }
                ],
                "sourceAttorneyType": "ATTORNEY FOR PETITIONER"
              },
              {
                "attorneyId": "ATTYar44fe78ac16df",
                "attorneyLawFirmArray": [],
                "attorneyType": {
                  "attorneyTypeId": "ATYPRPk3LNobYmtqwF",
                  "createdDate": "2022-03-28T04:59:12+00:00",
                  "name": "Attorney",
                  "object": "AttorneyType"
                },
                "barNumber": null,
                "contact": {
                  "addressArray": [],
                  "emailArray": [],
                  "object": "Contact",
                  "phoneNumberArray": []
                },
                "firstFetchDate": "2019-01-09T01:09:45+00:00",
                "firstName": "RONALD",
                "isVisible": true,
                "lastFetchDate": "2022-07-17T17:57:41+00:00",
                "lastName": "BELSOME",
                "middleName": "LANCE",
                "name": "BELSOME RONALD LANCE",
                "namePrefix": null,
                "nameSuffix": null,
                "object": "Attorney",
                "partyAttorneyAssociations": {
                  "nextPageAPI": null,
                  "object": "PartyAttorneyAssociations",
                  "pageNumber": 1,
                  "partyAttorneyAssociationArray": [
                    {
                      "attorneyId": "ATTYar44fe78ac16df",
                      "isVisible": false,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMarb04d87c162d2",
                      "partyId": "PRTYar7e672c560550"
                    },
                    {
                      "attorneyId": "ATTYar44fe78ac16df",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar9e116198b4a7",
                      "partyId": "PRTYarfc6d1e88947a"
                    },
                    {
                      "attorneyId": "ATTYar44fe78ac16df",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMarc381f87a75db",
                      "partyId": "PRTYar92ea99913e29"
                    },
                    {
                      "attorneyId": "ATTYar44fe78ac16df",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar0c1ddd85ffd0",
                      "partyId": "PRTYar5ef1babdaa60"
                    }
                  ],
                  "totalCount": 4,
                  "totalPages": 1
                },
                "partyRoleGroupIdArray": [
                  "PTYGBnjxbx6tKNfVEP"
                ],
                "partyRoleIdArray": [
                  "PTYR9F4zbteyj7ehmi"
                ],
                "possibleNormAttorneyArray": [
                  {
                    "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormJudges?pageNumber=1",
                    "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormLawFirms?pageNumber=1",
                    "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormParties?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByNormAttorney?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByOpposingNormAttorney?pageNumber=1",
                    "confidenceScore": 0.5,
                    "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111",
                    "normAttorneyId": "NATY11111111111111",
                    "normAttorneyName": "ACOSTA S FERNANDO",
                    "object": "PossibleNormAttorney",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "barId": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "lawFirm": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.6,
                      "otherPotentialNormAttorneys": 0,
                      "phone": "Not_Provided_By_Data_Source"
                    }
                  }
                ],
                "possibleNormLawFirmArray": [
                  {
                    "associatedNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormAttorney?pageNumber=1",
                    "associatedNormJudgeAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormJudges?pageNumber=1",
                    "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormParties?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByNormLawFirm?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByOpposingNormLawFirm?pageNumber=1",
                    "confidenceScore": 0.66,
                    "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111",
                    "normLawFirmId": "NLAF11111111111111",
                    "normLawFirmName": "MidLand Funding LLC",
                    "object": "PossibleNormLawFirm",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.8,
                      "otherPotentialNormLawFirms": 0,
                      "phone": "Not_Provided_By_Data_Source",
                      "secretaryOfStateId": "Not_Provided_By_Data_Source"
                    },
                    "sourceDetails": {
                      "linkedNormAttorneyIdArray": [
                        "NATY11111111111111"
                      ],
                      "source": "Case_Attorney_Linked_In_Other_Cases"
                    }
                  }
                ],
                "sourceAttorneyType": "ATTORNEY FOR PETITIONER FOR PETITIONER"
              },
              {
                "attorneyId": "ATTYarb1f617bee9ac",
                "attorneyLawFirmArray": [],
                "attorneyType": {
                  "attorneyTypeId": "ATYPRPk3LNobYmtqwF",
                  "createdDate": "2022-03-28T04:59:12+00:00",
                  "name": "Attorney",
                  "object": "AttorneyType"
                },
                "barNumber": null,
                "contact": {
                  "addressArray": [],
                  "emailArray": [],
                  "object": "Contact",
                  "phoneNumberArray": []
                },
                "firstFetchDate": "2020-09-26T01:19:17+00:00",
                "firstName": "RONALD",
                "isVisible": true,
                "lastFetchDate": "2022-07-17T17:57:41+00:00",
                "lastName": "BELSOME",
                "middleName": "LANCE",
                "name": "BELSOME RONALD LANCE",
                "namePrefix": null,
                "nameSuffix": null,
                "object": "Attorney",
                "partyAttorneyAssociations": {
                  "nextPageAPI": null,
                  "object": "PartyAttorneyAssociations",
                  "pageNumber": 1,
                  "partyAttorneyAssociationArray": [
                    {
                      "attorneyId": "ATTYarb1f617bee9ac",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar6960fbbadeef",
                      "partyId": "PRTYar27730b3b4b31"
                    },
                    {
                      "attorneyId": "ATTYarb1f617bee9ac",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar14a308402684",
                      "partyId": "PRTYar14aa8794c4fe"
                    },
                    {
                      "attorneyId": "ATTYarb1f617bee9ac",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar2bdde68fb026",
                      "partyId": "PRTYard42f215877e8"
                    }
                  ],
                  "totalCount": 3,
                  "totalPages": 1
                },
                "partyRoleGroupIdArray": [
                  "PTYGBnjxbx6tKNfVEP"
                ],
                "partyRoleIdArray": [
                  "PTYR9F4zbteyj7ehmi"
                ],
                "possibleNormAttorneyArray": [
                  {
                    "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormJudges?pageNumber=1",
                    "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormLawFirms?pageNumber=1",
                    "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormParties?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByNormAttorney?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByOpposingNormAttorney?pageNumber=1",
                    "confidenceScore": 0.5,
                    "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111",
                    "normAttorneyId": "NATY11111111111111",
                    "normAttorneyName": "ACOSTA S FERNANDO",
                    "object": "PossibleNormAttorney",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "barId": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "lawFirm": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.6,
                      "otherPotentialNormAttorneys": 0,
                      "phone": "Not_Provided_By_Data_Source"
                    }
                  }
                ],
                "possibleNormLawFirmArray": [
                  {
                    "associatedNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormAttorney?pageNumber=1",
                    "associatedNormJudgeAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormJudges?pageNumber=1",
                    "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormParties?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByNormLawFirm?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByOpposingNormLawFirm?pageNumber=1",
                    "confidenceScore": 0.66,
                    "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111",
                    "normLawFirmId": "NLAF11111111111111",
                    "normLawFirmName": "MidLand Funding LLC",
                    "object": "PossibleNormLawFirm",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.8,
                      "otherPotentialNormLawFirms": 0,
                      "phone": "Not_Provided_By_Data_Source",
                      "secretaryOfStateId": "Not_Provided_By_Data_Source"
                    },
                    "sourceDetails": {
                      "linkedNormAttorneyIdArray": [
                        "NATY11111111111111"
                      ],
                      "source": "Case_Attorney_Linked_In_Other_Cases"
                    }
                  }
                ],
                "sourceAttorneyType": "ATTORNEY FOR PETITIONER FOR APPELLANT"
              },
              {
                "attorneyId": "ATTYar17d5a63460fc",
                "attorneyLawFirmArray": [],
                "attorneyType": {
                  "attorneyTypeId": "ATYPRPk3LNobYmtqwF",
                  "createdDate": "2022-03-28T04:59:12+00:00",
                  "name": "Attorney",
                  "object": "AttorneyType"
                },
                "barNumber": null,
                "contact": {
                  "addressArray": [],
                  "emailArray": [],
                  "object": "Contact",
                  "phoneNumberArray": []
                },
                "firstFetchDate": "2019-05-17T01:49:08+00:00",
                "firstName": "RONALD",
                "isVisible": true,
                "lastFetchDate": "2022-07-17T17:57:41+00:00",
                "lastName": "BELSOME",
                "middleName": "LANCE",
                "name": "BELSOME RONALD LANCE",
                "namePrefix": null,
                "nameSuffix": null,
                "object": "Attorney",
                "partyAttorneyAssociations": {
                  "nextPageAPI": null,
                  "object": "PartyAttorneyAssociations",
                  "pageNumber": 1,
                  "partyAttorneyAssociationArray": [
                    {
                      "attorneyId": "ATTYar17d5a63460fc",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar4ad618c2ae84",
                      "partyId": "PRTYar42f429bea98c"
                    }
                  ],
                  "totalCount": 1,
                  "totalPages": 1
                },
                "partyRoleGroupIdArray": [
                  "PTYGBnjxbx6tKNfVEP"
                ],
                "partyRoleIdArray": [
                  "PTYR9F4zbteyj7ehmi"
                ],
                "possibleNormAttorneyArray": [
                  {
                    "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormJudges?pageNumber=1",
                    "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormLawFirms?pageNumber=1",
                    "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormParties?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByNormAttorney?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByOpposingNormAttorney?pageNumber=1",
                    "confidenceScore": 0.5,
                    "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111",
                    "normAttorneyId": "NATY11111111111111",
                    "normAttorneyName": "ACOSTA S FERNANDO",
                    "object": "PossibleNormAttorney",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "barId": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "lawFirm": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.6,
                      "otherPotentialNormAttorneys": 0,
                      "phone": "Not_Provided_By_Data_Source"
                    }
                  }
                ],
                "possibleNormLawFirmArray": [
                  {
                    "associatedNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormAttorney?pageNumber=1",
                    "associatedNormJudgeAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormJudges?pageNumber=1",
                    "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormParties?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByNormLawFirm?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByOpposingNormLawFirm?pageNumber=1",
                    "confidenceScore": 0.66,
                    "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111",
                    "normLawFirmId": "NLAF11111111111111",
                    "normLawFirmName": "MidLand Funding LLC",
                    "object": "PossibleNormLawFirm",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.8,
                      "otherPotentialNormLawFirms": 0,
                      "phone": "Not_Provided_By_Data_Source",
                      "secretaryOfStateId": "Not_Provided_By_Data_Source"
                    },
                    "sourceDetails": {
                      "linkedNormAttorneyIdArray": [
                        "NATY11111111111111"
                      ],
                      "source": "Case_Attorney_Linked_In_Other_Cases"
                    }
                  }
                ],
                "sourceAttorneyType": "ATTORNEY FOR PETITIONER FOR CREDITOR"
              },
              {
                "attorneyId": "ATTYar3f7e41e96cb8",
                "attorneyLawFirmArray": [],
                "attorneyType": {
                  "attorneyTypeId": "ATYPRPk3LNobYmtqwF",
                  "createdDate": "2022-03-28T04:59:12+00:00",
                  "name": "Attorney",
                  "object": "AttorneyType"
                },
                "barNumber": null,
                "contact": {
                  "addressArray": [],
                  "emailArray": [],
                  "object": "Contact",
                  "phoneNumberArray": []
                },
                "firstFetchDate": "2019-05-17T01:49:08+00:00",
                "firstName": "RONALD",
                "isVisible": true,
                "lastFetchDate": "2022-07-17T17:57:41+00:00",
                "lastName": "BELSOME",
                "middleName": "LANCE",
                "name": "BELSOME RONALD LANCE",
                "namePrefix": null,
                "nameSuffix": null,
                "object": "Attorney",
                "partyAttorneyAssociations": {
                  "nextPageAPI": null,
                  "object": "PartyAttorneyAssociations",
                  "pageNumber": 1,
                  "partyAttorneyAssociationArray": [
                    {
                      "attorneyId": "ATTYar3f7e41e96cb8",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar462e8da2a629",
                      "partyId": "PRTYar42f429bea98c"
                    }
                  ],
                  "totalCount": 1,
                  "totalPages": 1
                },
                "partyRoleGroupIdArray": [
                  "PTYGBnjxbx6tKNfVEP"
                ],
                "partyRoleIdArray": [
                  "PTYR9F4zbteyj7ehmi"
                ],
                "possibleNormAttorneyArray": [
                  {
                    "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormJudges?pageNumber=1",
                    "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormLawFirms?pageNumber=1",
                    "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormParties?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByNormAttorney?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByOpposingNormAttorney?pageNumber=1",
                    "confidenceScore": 0.5,
                    "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111",
                    "normAttorneyId": "NATY11111111111111",
                    "normAttorneyName": "ACOSTA S FERNANDO",
                    "object": "PossibleNormAttorney",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "barId": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "lawFirm": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.6,
                      "otherPotentialNormAttorneys": 0,
                      "phone": "Not_Provided_By_Data_Source"
                    }
                  }
                ],
                "possibleNormLawFirmArray": [
                  {
                    "associatedNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormAttorney?pageNumber=1",
                    "associatedNormJudgeAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormJudges?pageNumber=1",
                    "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormParties?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByNormLawFirm?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByOpposingNormLawFirm?pageNumber=1",
                    "confidenceScore": 0.66,
                    "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111",
                    "normLawFirmId": "NLAF11111111111111",
                    "normLawFirmName": "MidLand Funding LLC",
                    "object": "PossibleNormLawFirm",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.8,
                      "otherPotentialNormLawFirms": 0,
                      "phone": "Not_Provided_By_Data_Source",
                      "secretaryOfStateId": "Not_Provided_By_Data_Source"
                    },
                    "sourceDetails": {
                      "linkedNormAttorneyIdArray": [
                        "NATY11111111111111"
                      ],
                      "source": "Case_Attorney_Linked_In_Other_Cases"
                    }
                  }
                ],
                "sourceAttorneyType": "ATTORNEY FOR CREDITOR"
              },
              {
                "attorneyId": "ATTYar9098453c5886",
                "attorneyLawFirmArray": [],
                "attorneyType": {
                  "attorneyTypeId": "ATYPRPk3LNobYmtqwF",
                  "createdDate": "2022-03-28T04:59:12+00:00",
                  "name": "Attorney",
                  "object": "AttorneyType"
                },
                "barNumber": null,
                "contact": {
                  "addressArray": [],
                  "emailArray": [],
                  "object": "Contact",
                  "phoneNumberArray": []
                },
                "firstFetchDate": "2020-09-26T01:19:16+00:00",
                "firstName": "RONALD",
                "isVisible": true,
                "lastFetchDate": "2022-07-17T17:57:41+00:00",
                "lastName": "BELSOME",
                "middleName": "LANCE",
                "name": "BELSOME RONALD LANCE",
                "namePrefix": null,
                "nameSuffix": null,
                "object": "Attorney",
                "partyAttorneyAssociations": {
                  "nextPageAPI": null,
                  "object": "PartyAttorneyAssociations",
                  "pageNumber": 1,
                  "partyAttorneyAssociationArray": [
                    {
                      "attorneyId": "ATTYar9098453c5886",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar412bb38c4e99",
                      "partyId": "PRTYar27730b3b4b31"
                    },
                    {
                      "attorneyId": "ATTYar9098453c5886",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar5e83d99730cf",
                      "partyId": "PRTYar14aa8794c4fe"
                    },
                    {
                      "attorneyId": "ATTYar9098453c5886",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar453b73d1cfc4",
                      "partyId": "PRTYard42f215877e8"
                    }
                  ],
                  "totalCount": 3,
                  "totalPages": 1
                },
                "partyRoleGroupIdArray": [
                  "PTYGBnjxbx6tKNfVEP"
                ],
                "partyRoleIdArray": [
                  "PTYR9F4zbteyj7ehmi"
                ],
                "possibleNormAttorneyArray": [
                  {
                    "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormJudges?pageNumber=1",
                    "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormLawFirms?pageNumber=1",
                    "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormParties?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByNormAttorney?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByOpposingNormAttorney?pageNumber=1",
                    "confidenceScore": 0.5,
                    "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111",
                    "normAttorneyId": "NATY11111111111111",
                    "normAttorneyName": "ACOSTA S FERNANDO",
                    "object": "PossibleNormAttorney",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "barId": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "lawFirm": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.6,
                      "otherPotentialNormAttorneys": 0,
                      "phone": "Not_Provided_By_Data_Source"
                    }
                  }
                ],
                "possibleNormLawFirmArray": [
                  {
                    "associatedNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormAttorney?pageNumber=1",
                    "associatedNormJudgeAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormJudges?pageNumber=1",
                    "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormParties?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByNormLawFirm?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByOpposingNormLawFirm?pageNumber=1",
                    "confidenceScore": 0.66,
                    "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111",
                    "normLawFirmId": "NLAF11111111111111",
                    "normLawFirmName": "MidLand Funding LLC",
                    "object": "PossibleNormLawFirm",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.8,
                      "otherPotentialNormLawFirms": 0,
                      "phone": "Not_Provided_By_Data_Source",
                      "secretaryOfStateId": "Not_Provided_By_Data_Source"
                    },
                    "sourceDetails": {
                      "linkedNormAttorneyIdArray": [
                        "NATY11111111111111"
                      ],
                      "source": "Case_Attorney_Linked_In_Other_Cases"
                    }
                  }
                ],
                "sourceAttorneyType": "ATTORNEY FOR APPELLANT"
              },
              {
                "attorneyId": "ATTYar3e331159d5c4",
                "attorneyLawFirmArray": [],
                "attorneyType": {
                  "attorneyTypeId": "ATYPRPk3LNobYmtqwF",
                  "createdDate": "2022-03-28T04:59:12+00:00",
                  "name": "Attorney",
                  "object": "AttorneyType"
                },
                "barNumber": null,
                "contact": {
                  "addressArray": [],
                  "emailArray": [],
                  "object": "Contact",
                  "phoneNumberArray": []
                },
                "firstFetchDate": "2020-09-26T01:19:17+00:00",
                "firstName": "RONALD",
                "isVisible": true,
                "lastFetchDate": "2022-07-17T17:57:41+00:00",
                "lastName": "BELSOME",
                "middleName": "LANCE",
                "name": "BELSOME RONALD LANCE",
                "namePrefix": null,
                "nameSuffix": null,
                "object": "Attorney",
                "partyAttorneyAssociations": {
                  "nextPageAPI": null,
                  "object": "PartyAttorneyAssociations",
                  "pageNumber": 1,
                  "partyAttorneyAssociationArray": [
                    {
                      "attorneyId": "ATTYar3e331159d5c4",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMarade4f659e5a3",
                      "partyId": "PRTYare90e11768ee3"
                    },
                    {
                      "attorneyId": "ATTYar3e331159d5c4",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar32e5b6930433",
                      "partyId": "PRTYar22ab4bc72b15"
                    }
                  ],
                  "totalCount": 2,
                  "totalPages": 1
                },
                "partyRoleGroupIdArray": [
                  "PTYGBnjxbx6tKNfVEP"
                ],
                "partyRoleIdArray": [
                  "PTYR9F4zbteyj7ehmi"
                ],
                "possibleNormAttorneyArray": [
                  {
                    "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormJudges?pageNumber=1",
                    "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormLawFirms?pageNumber=1",
                    "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormParties?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByNormAttorney?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByOpposingNormAttorney?pageNumber=1",
                    "confidenceScore": 0.5,
                    "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111",
                    "normAttorneyId": "NATY11111111111111",
                    "normAttorneyName": "ACOSTA S FERNANDO",
                    "object": "PossibleNormAttorney",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "barId": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "lawFirm": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.6,
                      "otherPotentialNormAttorneys": 0,
                      "phone": "Not_Provided_By_Data_Source"
                    }
                  }
                ],
                "possibleNormLawFirmArray": [
                  {
                    "associatedNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormAttorney?pageNumber=1",
                    "associatedNormJudgeAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormJudges?pageNumber=1",
                    "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormParties?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByNormLawFirm?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByOpposingNormLawFirm?pageNumber=1",
                    "confidenceScore": 0.66,
                    "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111",
                    "normLawFirmId": "NLAF11111111111111",
                    "normLawFirmName": "MidLand Funding LLC",
                    "object": "PossibleNormLawFirm",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.8,
                      "otherPotentialNormLawFirms": 0,
                      "phone": "Not_Provided_By_Data_Source",
                      "secretaryOfStateId": "Not_Provided_By_Data_Source"
                    },
                    "sourceDetails": {
                      "linkedNormAttorneyIdArray": [
                        "NATY11111111111111"
                      ],
                      "source": "Case_Attorney_Linked_In_Other_Cases"
                    }
                  }
                ],
                "sourceAttorneyType": "ATTORNEY FOR GUARDIAN AD LITEM"
              },
              {
                "attorneyId": "ATTYar190d6e7c6892",
                "attorneyLawFirmArray": [],
                "attorneyType": {
                  "attorneyTypeId": "ATYPRPk3LNobYmtqwF",
                  "createdDate": "2022-03-28T04:59:12+00:00",
                  "name": "Attorney",
                  "object": "AttorneyType"
                },
                "barNumber": null,
                "contact": {
                  "addressArray": [],
                  "emailArray": [],
                  "object": "Contact",
                  "phoneNumberArray": []
                },
                "firstFetchDate": "2020-09-26T01:19:16+00:00",
                "firstName": "LARRY",
                "isVisible": false,
                "lastFetchDate": "2021-04-19T12:52:11+00:00",
                "lastName": "DUSHKES",
                "middleName": "S",
                "name": "DUSHKES LARRY S.",
                "namePrefix": null,
                "nameSuffix": null,
                "object": "Attorney",
                "partyAttorneyAssociations": {
                  "nextPageAPI": null,
                  "object": "PartyAttorneyAssociations",
                  "pageNumber": 1,
                  "partyAttorneyAssociationArray": [
                    {
                      "attorneyId": "ATTYar190d6e7c6892",
                      "isVisible": false,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMardad5e61697d1",
                      "partyId": "PRTYar27730b3b4b31"
                    },
                    {
                      "attorneyId": "ATTYar190d6e7c6892",
                      "isVisible": false,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMarb981b9759716",
                      "partyId": "PRTYar14aa8794c4fe"
                    },
                    {
                      "attorneyId": "ATTYar190d6e7c6892",
                      "isVisible": false,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMarb9331bc3c1fa",
                      "partyId": "PRTYard42f215877e8"
                    }
                  ],
                  "totalCount": 3,
                  "totalPages": 1
                },
                "partyRoleGroupIdArray": [
                  "PTYGBnjxbx6tKNfVEP"
                ],
                "partyRoleIdArray": [
                  "PTYR9F4zbteyj7ehmi"
                ],
                "possibleNormAttorneyArray": [
                  {
                    "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormJudges?pageNumber=1",
                    "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormLawFirms?pageNumber=1",
                    "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormParties?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByNormAttorney?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByOpposingNormAttorney?pageNumber=1",
                    "confidenceScore": 0.5,
                    "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111",
                    "normAttorneyId": "NATY11111111111111",
                    "normAttorneyName": "ACOSTA S FERNANDO",
                    "object": "PossibleNormAttorney",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "barId": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "lawFirm": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.6,
                      "otherPotentialNormAttorneys": 0,
                      "phone": "Not_Provided_By_Data_Source"
                    }
                  }
                ],
                "possibleNormLawFirmArray": [
                  {
                    "associatedNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormAttorney?pageNumber=1",
                    "associatedNormJudgeAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormJudges?pageNumber=1",
                    "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormParties?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByNormLawFirm?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByOpposingNormLawFirm?pageNumber=1",
                    "confidenceScore": 0.66,
                    "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111",
                    "normLawFirmId": "NLAF11111111111111",
                    "normLawFirmName": "MidLand Funding LLC",
                    "object": "PossibleNormLawFirm",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.8,
                      "otherPotentialNormLawFirms": 0,
                      "phone": "Not_Provided_By_Data_Source",
                      "secretaryOfStateId": "Not_Provided_By_Data_Source"
                    },
                    "sourceDetails": {
                      "linkedNormAttorneyIdArray": [
                        "NATY11111111111111"
                      ],
                      "source": "Case_Attorney_Linked_In_Other_Cases"
                    }
                  }
                ],
                "sourceAttorneyType": "ASSOCIATED ATTORNEY FOR APPELLANT"
              },
              {
                "attorneyId": "ATTYar6a2c1d644433",
                "attorneyLawFirmArray": [],
                "attorneyType": {
                  "attorneyTypeId": "ATYPRPk3LNobYmtqwF",
                  "createdDate": "2022-03-28T04:59:12+00:00",
                  "name": "Attorney",
                  "object": "AttorneyType"
                },
                "barNumber": null,
                "contact": {
                  "addressArray": [],
                  "emailArray": [],
                  "object": "Contact",
                  "phoneNumberArray": []
                },
                "firstFetchDate": "2019-01-13T02:44:14+00:00",
                "firstName": "LARRY",
                "isVisible": false,
                "lastFetchDate": "2021-04-19T12:52:11+00:00",
                "lastName": "DUSHKES",
                "middleName": "S",
                "name": "DUSHKES LARRY S.",
                "namePrefix": null,
                "nameSuffix": null,
                "object": "Attorney",
                "partyAttorneyAssociations": {
                  "nextPageAPI": null,
                  "object": "PartyAttorneyAssociations",
                  "pageNumber": 1,
                  "partyAttorneyAssociationArray": [
                    {
                      "attorneyId": "ATTYar6a2c1d644433",
                      "isVisible": false,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar27d159cfb7b3",
                      "partyId": "PRTYar7e672c560550"
                    },
                    {
                      "attorneyId": "ATTYar6a2c1d644433",
                      "isVisible": false,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar540f2a0a6c9e",
                      "partyId": "PRTYarfc6d1e88947a"
                    },
                    {
                      "attorneyId": "ATTYar6a2c1d644433",
                      "isVisible": false,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMarc7a8e04b1a56",
                      "partyId": "PRTYar92ea99913e29"
                    },
                    {
                      "attorneyId": "ATTYar6a2c1d644433",
                      "isVisible": false,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar461b5e0ec067",
                      "partyId": "PRTYar5ef1babdaa60"
                    }
                  ],
                  "totalCount": 4,
                  "totalPages": 1
                },
                "partyRoleGroupIdArray": [
                  "PTYGBnjxbx6tKNfVEP"
                ],
                "partyRoleIdArray": [
                  "PTYR9F4zbteyj7ehmi"
                ],
                "possibleNormAttorneyArray": [
                  {
                    "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormJudges?pageNumber=1",
                    "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormLawFirms?pageNumber=1",
                    "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormParties?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByNormAttorney?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByOpposingNormAttorney?pageNumber=1",
                    "confidenceScore": 0.5,
                    "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111",
                    "normAttorneyId": "NATY11111111111111",
                    "normAttorneyName": "ACOSTA S FERNANDO",
                    "object": "PossibleNormAttorney",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "barId": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "lawFirm": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.6,
                      "otherPotentialNormAttorneys": 0,
                      "phone": "Not_Provided_By_Data_Source"
                    }
                  }
                ],
                "possibleNormLawFirmArray": [
                  {
                    "associatedNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormAttorney?pageNumber=1",
                    "associatedNormJudgeAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormJudges?pageNumber=1",
                    "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormParties?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByNormLawFirm?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByOpposingNormLawFirm?pageNumber=1",
                    "confidenceScore": 0.66,
                    "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111",
                    "normLawFirmId": "NLAF11111111111111",
                    "normLawFirmName": "MidLand Funding LLC",
                    "object": "PossibleNormLawFirm",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.8,
                      "otherPotentialNormLawFirms": 0,
                      "phone": "Not_Provided_By_Data_Source",
                      "secretaryOfStateId": "Not_Provided_By_Data_Source"
                    },
                    "sourceDetails": {
                      "linkedNormAttorneyIdArray": [
                        "NATY11111111111111"
                      ],
                      "source": "Case_Attorney_Linked_In_Other_Cases"
                    }
                  }
                ],
                "sourceAttorneyType": "ASSOCIATED ATTORNEY FOR PETITIONER"
              },
              {
                "attorneyId": "ATTYar307971da0049",
                "attorneyLawFirmArray": [],
                "attorneyType": {
                  "attorneyTypeId": "ATYPRPk3LNobYmtqwF",
                  "createdDate": "2022-03-28T04:59:12+00:00",
                  "name": "Attorney",
                  "object": "AttorneyType"
                },
                "barNumber": null,
                "contact": {
                  "addressArray": [],
                  "emailArray": [],
                  "object": "Contact",
                  "phoneNumberArray": []
                },
                "firstFetchDate": "2019-02-24T00:31:55+00:00",
                "firstName": "ROBERT",
                "isVisible": true,
                "lastFetchDate": "2022-07-17T17:57:41+00:00",
                "lastName": "SACKS",
                "middleName": "NEIL",
                "name": "SACKS ROBERT NEIL",
                "namePrefix": null,
                "nameSuffix": null,
                "object": "Attorney",
                "partyAttorneyAssociations": {
                  "nextPageAPI": null,
                  "object": "PartyAttorneyAssociations",
                  "pageNumber": 1,
                  "partyAttorneyAssociationArray": [
                    {
                      "attorneyId": "ATTYar307971da0049",
                      "isVisible": false,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMarda8bdc82a52c",
                      "partyId": "PRTYar7e672c560550"
                    },
                    {
                      "attorneyId": "ATTYar307971da0049",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMarc8b823770dcd",
                      "partyId": "PRTYarfc6d1e88947a"
                    },
                    {
                      "attorneyId": "ATTYar307971da0049",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMarfcecc7e84a3d",
                      "partyId": "PRTYar92ea99913e29"
                    },
                    {
                      "attorneyId": "ATTYar307971da0049",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMarafdbaf30b4d7",
                      "partyId": "PRTYar5ef1babdaa60"
                    }
                  ],
                  "totalCount": 4,
                  "totalPages": 1
                },
                "partyRoleGroupIdArray": [
                  "PTYGBnjxbx6tKNfVEP"
                ],
                "partyRoleIdArray": [
                  "PTYR9F4zbteyj7ehmi"
                ],
                "possibleNormAttorneyArray": [
                  {
                    "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormJudges?pageNumber=1",
                    "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormLawFirms?pageNumber=1",
                    "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormParties?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByNormAttorney?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByOpposingNormAttorney?pageNumber=1",
                    "confidenceScore": 0.5,
                    "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111",
                    "normAttorneyId": "NATY11111111111111",
                    "normAttorneyName": "ACOSTA S FERNANDO",
                    "object": "PossibleNormAttorney",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "barId": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "lawFirm": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.6,
                      "otherPotentialNormAttorneys": 0,
                      "phone": "Not_Provided_By_Data_Source"
                    }
                  }
                ],
                "possibleNormLawFirmArray": [
                  {
                    "associatedNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormAttorney?pageNumber=1",
                    "associatedNormJudgeAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormJudges?pageNumber=1",
                    "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormParties?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByNormLawFirm?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByOpposingNormLawFirm?pageNumber=1",
                    "confidenceScore": 0.66,
                    "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111",
                    "normLawFirmId": "NLAF11111111111111",
                    "normLawFirmName": "MidLand Funding LLC",
                    "object": "PossibleNormLawFirm",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.8,
                      "otherPotentialNormLawFirms": 0,
                      "phone": "Not_Provided_By_Data_Source",
                      "secretaryOfStateId": "Not_Provided_By_Data_Source"
                    },
                    "sourceDetails": {
                      "linkedNormAttorneyIdArray": [
                        "NATY11111111111111"
                      ],
                      "source": "Case_Attorney_Linked_In_Other_Cases"
                    }
                  }
                ],
                "sourceAttorneyType": "ASSOCIATED ATTORNEY FOR PETITIONER"
              },
              {
                "attorneyId": "ATTYar210991f576c7",
                "attorneyLawFirmArray": [],
                "attorneyType": {
                  "attorneyTypeId": "ATYPRPk3LNobYmtqwF",
                  "createdDate": "2022-03-28T04:59:12+00:00",
                  "name": "Attorney",
                  "object": "AttorneyType"
                },
                "barNumber": null,
                "contact": {
                  "addressArray": [],
                  "emailArray": [],
                  "object": "Contact",
                  "phoneNumberArray": []
                },
                "firstFetchDate": "2019-04-28T02:20:56+00:00",
                "firstName": "ERIC",
                "isVisible": false,
                "lastFetchDate": "2022-02-16T22:09:06+00:00",
                "lastName": "YAMAMOTO",
                "middleName": "ROBERT",
                "name": "YAMAMOTO ERIC ROBERT",
                "namePrefix": null,
                "nameSuffix": null,
                "object": "Attorney",
                "partyAttorneyAssociations": {
                  "nextPageAPI": null,
                  "object": "PartyAttorneyAssociations",
                  "pageNumber": 1,
                  "partyAttorneyAssociationArray": [
                    {
                      "attorneyId": "ATTYar210991f576c7",
                      "isVisible": false,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMaree5add7c6c9b",
                      "partyId": "PRTYar9f8ef656d301"
                    }
                  ],
                  "totalCount": 1,
                  "totalPages": 1
                },
                "partyRoleGroupIdArray": [
                  "PTYGBnjxbx6tKNfVEP"
                ],
                "partyRoleIdArray": [
                  "PTYR9F4zbteyj7ehmi"
                ],
                "possibleNormAttorneyArray": [
                  {
                    "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormJudges?pageNumber=1",
                    "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormLawFirms?pageNumber=1",
                    "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormParties?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByNormAttorney?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByOpposingNormAttorney?pageNumber=1",
                    "confidenceScore": 0.5,
                    "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111",
                    "normAttorneyId": "NATY11111111111111",
                    "normAttorneyName": "ACOSTA S FERNANDO",
                    "object": "PossibleNormAttorney",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "barId": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "lawFirm": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.6,
                      "otherPotentialNormAttorneys": 0,
                      "phone": "Not_Provided_By_Data_Source"
                    }
                  }
                ],
                "possibleNormLawFirmArray": [
                  {
                    "associatedNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormAttorney?pageNumber=1",
                    "associatedNormJudgeAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormJudges?pageNumber=1",
                    "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormParties?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByNormLawFirm?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByOpposingNormLawFirm?pageNumber=1",
                    "confidenceScore": 0.66,
                    "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111",
                    "normLawFirmId": "NLAF11111111111111",
                    "normLawFirmName": "MidLand Funding LLC",
                    "object": "PossibleNormLawFirm",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.8,
                      "otherPotentialNormLawFirms": 0,
                      "phone": "Not_Provided_By_Data_Source",
                      "secretaryOfStateId": "Not_Provided_By_Data_Source"
                    },
                    "sourceDetails": {
                      "linkedNormAttorneyIdArray": [
                        "NATY11111111111111"
                      ],
                      "source": "Case_Attorney_Linked_In_Other_Cases"
                    }
                  }
                ],
                "sourceAttorneyType": "ATTORNEY FOR SPECIAL ADMINSTRATOR"
              },
              {
                "attorneyId": "ATTYar90ba6d78ed02",
                "attorneyLawFirmArray": [],
                "attorneyType": {
                  "attorneyTypeId": "ATYPRPk3LNobYmtqwF",
                  "createdDate": "2022-03-28T04:59:12+00:00",
                  "name": "Attorney",
                  "object": "AttorneyType"
                },
                "barNumber": null,
                "contact": {
                  "addressArray": [],
                  "emailArray": [],
                  "object": "Contact",
                  "phoneNumberArray": []
                },
                "firstFetchDate": "2020-09-26T01:19:16+00:00",
                "firstName": "ERIC",
                "isVisible": false,
                "lastFetchDate": "2022-02-16T22:09:06+00:00",
                "lastName": "YAMAMOTO",
                "middleName": "ROBERT",
                "name": "YAMAMOTO ERIC ROBERT",
                "namePrefix": null,
                "nameSuffix": null,
                "object": "Attorney",
                "partyAttorneyAssociations": {
                  "nextPageAPI": null,
                  "object": "PartyAttorneyAssociations",
                  "pageNumber": 1,
                  "partyAttorneyAssociationArray": [
                    {
                      "attorneyId": "ATTYar90ba6d78ed02",
                      "isVisible": false,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar17426d94ea34",
                      "partyId": "PRTYar4a79142c8450"
                    },
                    {
                      "attorneyId": "ATTYar90ba6d78ed02",
                      "isVisible": false,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar4d1c0208a63d",
                      "partyId": "PRTYar32a3f289bd03"
                    },
                    {
                      "attorneyId": "ATTYar90ba6d78ed02",
                      "isVisible": false,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMarf02aeefd2cb2",
                      "partyId": "PRTYar2d32a26789ad"
                    },
                    {
                      "attorneyId": "ATTYar90ba6d78ed02",
                      "isVisible": false,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar469ffd9aa644",
                      "partyId": "PRTYare947bf8f10f0"
                    },
                    {
                      "attorneyId": "ATTYar90ba6d78ed02",
                      "isVisible": false,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMarf6afbfc8a2b1",
                      "partyId": "PRTYar2876f30368ee"
                    }
                  ],
                  "totalCount": 5,
                  "totalPages": 1
                },
                "partyRoleGroupIdArray": [
                  "PTYGBnjxbx6tKNfVEP"
                ],
                "partyRoleIdArray": [
                  "PTYR9F4zbteyj7ehmi"
                ],
                "possibleNormAttorneyArray": [
                  {
                    "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormJudges?pageNumber=1",
                    "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormLawFirms?pageNumber=1",
                    "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormParties?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByNormAttorney?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByOpposingNormAttorney?pageNumber=1",
                    "confidenceScore": 0.5,
                    "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111",
                    "normAttorneyId": "NATY11111111111111",
                    "normAttorneyName": "ACOSTA S FERNANDO",
                    "object": "PossibleNormAttorney",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "barId": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "lawFirm": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.6,
                      "otherPotentialNormAttorneys": 0,
                      "phone": "Not_Provided_By_Data_Source"
                    }
                  }
                ],
                "possibleNormLawFirmArray": [
                  {
                    "associatedNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormAttorney?pageNumber=1",
                    "associatedNormJudgeAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormJudges?pageNumber=1",
                    "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormParties?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByNormLawFirm?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByOpposingNormLawFirm?pageNumber=1",
                    "confidenceScore": 0.66,
                    "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111",
                    "normLawFirmId": "NLAF11111111111111",
                    "normLawFirmName": "MidLand Funding LLC",
                    "object": "PossibleNormLawFirm",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.8,
                      "otherPotentialNormLawFirms": 0,
                      "phone": "Not_Provided_By_Data_Source",
                      "secretaryOfStateId": "Not_Provided_By_Data_Source"
                    },
                    "sourceDetails": {
                      "linkedNormAttorneyIdArray": [
                        "NATY11111111111111"
                      ],
                      "source": "Case_Attorney_Linked_In_Other_Cases"
                    }
                  }
                ],
                "sourceAttorneyType": "ATTORNEY FOR RESPONDENT (TO APPEAL)"
              },
              {
                "attorneyId": "ATTYara860b72a11ac",
                "attorneyLawFirmArray": [],
                "attorneyType": {
                  "attorneyTypeId": "ATYPRPk3LNobYmtqwF",
                  "createdDate": "2022-03-28T04:59:12+00:00",
                  "name": "Attorney",
                  "object": "AttorneyType"
                },
                "barNumber": null,
                "contact": {
                  "addressArray": [],
                  "emailArray": [],
                  "object": "Contact",
                  "phoneNumberArray": []
                },
                "firstFetchDate": "2019-08-14T03:38:02+00:00",
                "firstName": "TODD",
                "isVisible": false,
                "lastFetchDate": "2021-10-05T23:23:44+00:00",
                "lastName": "BLOOMFIELD",
                "middleName": "JON",
                "name": "BLOOMFIELD TODD JON",
                "namePrefix": null,
                "nameSuffix": null,
                "object": "Attorney",
                "partyAttorneyAssociations": {
                  "nextPageAPI": null,
                  "object": "PartyAttorneyAssociations",
                  "pageNumber": 1,
                  "partyAttorneyAssociationArray": [
                    {
                      "attorneyId": "ATTYara860b72a11ac",
                      "isVisible": false,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMare9c4668c7e90",
                      "partyId": "PRTYar4a79142c8450"
                    },
                    {
                      "attorneyId": "ATTYara860b72a11ac",
                      "isVisible": false,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMarb2e6c6ebb62b",
                      "partyId": "PRTYar32a3f289bd03"
                    },
                    {
                      "attorneyId": "ATTYara860b72a11ac",
                      "isVisible": false,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar336b60a1e65a",
                      "partyId": "PRTYare947bf8f10f0"
                    },
                    {
                      "attorneyId": "ATTYara860b72a11ac",
                      "isVisible": false,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar5665949fcadd",
                      "partyId": "PRTYar2876f30368ee"
                    },
                    {
                      "attorneyId": "ATTYara860b72a11ac",
                      "isVisible": false,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar2a46e5cc06db",
                      "partyId": "PRTYar2d32a26789ad"
                    }
                  ],
                  "totalCount": 5,
                  "totalPages": 1
                },
                "partyRoleGroupIdArray": [
                  "PTYGBnjxbx6tKNfVEP"
                ],
                "partyRoleIdArray": [
                  "PTYR9F4zbteyj7ehmi"
                ],
                "possibleNormAttorneyArray": [
                  {
                    "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormJudges?pageNumber=1",
                    "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormLawFirms?pageNumber=1",
                    "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormParties?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByNormAttorney?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByOpposingNormAttorney?pageNumber=1",
                    "confidenceScore": 0.5,
                    "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111",
                    "normAttorneyId": "NATY11111111111111",
                    "normAttorneyName": "ACOSTA S FERNANDO",
                    "object": "PossibleNormAttorney",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "barId": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "lawFirm": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.6,
                      "otherPotentialNormAttorneys": 0,
                      "phone": "Not_Provided_By_Data_Source"
                    }
                  }
                ],
                "possibleNormLawFirmArray": [
                  {
                    "associatedNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormAttorney?pageNumber=1",
                    "associatedNormJudgeAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormJudges?pageNumber=1",
                    "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormParties?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByNormLawFirm?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByOpposingNormLawFirm?pageNumber=1",
                    "confidenceScore": 0.66,
                    "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111",
                    "normLawFirmId": "NLAF11111111111111",
                    "normLawFirmName": "MidLand Funding LLC",
                    "object": "PossibleNormLawFirm",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.8,
                      "otherPotentialNormLawFirms": 0,
                      "phone": "Not_Provided_By_Data_Source",
                      "secretaryOfStateId": "Not_Provided_By_Data_Source"
                    },
                    "sourceDetails": {
                      "linkedNormAttorneyIdArray": [
                        "NATY11111111111111"
                      ],
                      "source": "Case_Attorney_Linked_In_Other_Cases"
                    }
                  }
                ],
                "sourceAttorneyType": "ATTORNEY FOR RESPONDENT"
              },
              {
                "attorneyId": "ATTYar540f3795f94b",
                "attorneyLawFirmArray": [],
                "attorneyType": {
                  "attorneyTypeId": "ATYPRPk3LNobYmtqwF",
                  "createdDate": "2022-03-28T04:59:12+00:00",
                  "name": "Attorney",
                  "object": "AttorneyType"
                },
                "barNumber": null,
                "contact": {
                  "addressArray": [],
                  "emailArray": [],
                  "object": "Contact",
                  "phoneNumberArray": []
                },
                "firstFetchDate": "2020-09-26T01:19:17+00:00",
                "firstName": "ANDREA",
                "isVisible": true,
                "lastFetchDate": "2022-07-17T17:57:41+00:00",
                "lastName": "RICE",
                "middleName": "LYNN",
                "name": "RICE ANDREA LYNN",
                "namePrefix": null,
                "nameSuffix": null,
                "object": "Attorney",
                "partyAttorneyAssociations": {
                  "nextPageAPI": null,
                  "object": "PartyAttorneyAssociations",
                  "pageNumber": 1,
                  "partyAttorneyAssociationArray": [
                    {
                      "attorneyId": "ATTYar540f3795f94b",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMarcc83354889c3",
                      "partyId": "PRTYar4a79142c8450"
                    },
                    {
                      "attorneyId": "ATTYar540f3795f94b",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMard8389b107802",
                      "partyId": "PRTYar32a3f289bd03"
                    },
                    {
                      "attorneyId": "ATTYar540f3795f94b",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar75bb1f46d420",
                      "partyId": "PRTYar2d32a26789ad"
                    },
                    {
                      "attorneyId": "ATTYar540f3795f94b",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar6de57f4f9cb7",
                      "partyId": "PRTYare947bf8f10f0"
                    },
                    {
                      "attorneyId": "ATTYar540f3795f94b",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMarba657cf433b9",
                      "partyId": "PRTYar2876f30368ee"
                    }
                  ],
                  "totalCount": 5,
                  "totalPages": 1
                },
                "partyRoleGroupIdArray": [
                  "PTYGBnjxbx6tKNfVEP"
                ],
                "partyRoleIdArray": [
                  "PTYR9F4zbteyj7ehmi"
                ],
                "possibleNormAttorneyArray": [
                  {
                    "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormJudges?pageNumber=1",
                    "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormLawFirms?pageNumber=1",
                    "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormParties?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByNormAttorney?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByOpposingNormAttorney?pageNumber=1",
                    "confidenceScore": 0.5,
                    "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111",
                    "normAttorneyId": "NATY11111111111111",
                    "normAttorneyName": "ACOSTA S FERNANDO",
                    "object": "PossibleNormAttorney",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "barId": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "lawFirm": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.6,
                      "otherPotentialNormAttorneys": 0,
                      "phone": "Not_Provided_By_Data_Source"
                    }
                  }
                ],
                "possibleNormLawFirmArray": [
                  {
                    "associatedNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormAttorney?pageNumber=1",
                    "associatedNormJudgeAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormJudges?pageNumber=1",
                    "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormParties?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByNormLawFirm?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByOpposingNormLawFirm?pageNumber=1",
                    "confidenceScore": 0.66,
                    "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111",
                    "normLawFirmId": "NLAF11111111111111",
                    "normLawFirmName": "MidLand Funding LLC",
                    "object": "PossibleNormLawFirm",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.8,
                      "otherPotentialNormLawFirms": 0,
                      "phone": "Not_Provided_By_Data_Source",
                      "secretaryOfStateId": "Not_Provided_By_Data_Source"
                    },
                    "sourceDetails": {
                      "linkedNormAttorneyIdArray": [
                        "NATY11111111111111"
                      ],
                      "source": "Case_Attorney_Linked_In_Other_Cases"
                    }
                  }
                ],
                "sourceAttorneyType": "ASSOCIATED ATTORNEY FOR RESPONDENT (TO APPEAL)"
              },
              {
                "attorneyId": "ATTYar11c8eead1faf",
                "attorneyLawFirmArray": [],
                "attorneyType": {
                  "attorneyTypeId": "ATYPRPk3LNobYmtqwF",
                  "createdDate": "2022-03-28T04:59:12+00:00",
                  "name": "Attorney",
                  "object": "AttorneyType"
                },
                "barNumber": null,
                "contact": {
                  "addressArray": [],
                  "emailArray": [],
                  "object": "Contact",
                  "phoneNumberArray": []
                },
                "firstFetchDate": "2019-09-29T09:43:43+00:00",
                "firstName": "ANDREA",
                "isVisible": true,
                "lastFetchDate": "2022-07-17T17:57:41+00:00",
                "lastName": "RICE",
                "middleName": "LYNN",
                "name": "RICE ANDREA LYNN",
                "namePrefix": null,
                "nameSuffix": null,
                "object": "Attorney",
                "partyAttorneyAssociations": {
                  "nextPageAPI": null,
                  "object": "PartyAttorneyAssociations",
                  "pageNumber": 1,
                  "partyAttorneyAssociationArray": [
                    {
                      "attorneyId": "ATTYar11c8eead1faf",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar011ebc55da73",
                      "partyId": "PRTYar9f8ef656d301"
                    }
                  ],
                  "totalCount": 1,
                  "totalPages": 1
                },
                "partyRoleGroupIdArray": [
                  "PTYGBnjxbx6tKNfVEP"
                ],
                "partyRoleIdArray": [
                  "PTYR9F4zbteyj7ehmi"
                ],
                "possibleNormAttorneyArray": [
                  {
                    "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormJudges?pageNumber=1",
                    "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormLawFirms?pageNumber=1",
                    "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormParties?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByNormAttorney?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByOpposingNormAttorney?pageNumber=1",
                    "confidenceScore": 0.5,
                    "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111",
                    "normAttorneyId": "NATY11111111111111",
                    "normAttorneyName": "ACOSTA S FERNANDO",
                    "object": "PossibleNormAttorney",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "barId": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "lawFirm": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.6,
                      "otherPotentialNormAttorneys": 0,
                      "phone": "Not_Provided_By_Data_Source"
                    }
                  }
                ],
                "possibleNormLawFirmArray": [
                  {
                    "associatedNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormAttorney?pageNumber=1",
                    "associatedNormJudgeAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormJudges?pageNumber=1",
                    "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormParties?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByNormLawFirm?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByOpposingNormLawFirm?pageNumber=1",
                    "confidenceScore": 0.66,
                    "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111",
                    "normLawFirmId": "NLAF11111111111111",
                    "normLawFirmName": "MidLand Funding LLC",
                    "object": "PossibleNormLawFirm",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.8,
                      "otherPotentialNormLawFirms": 0,
                      "phone": "Not_Provided_By_Data_Source",
                      "secretaryOfStateId": "Not_Provided_By_Data_Source"
                    },
                    "sourceDetails": {
                      "linkedNormAttorneyIdArray": [
                        "NATY11111111111111"
                      ],
                      "source": "Case_Attorney_Linked_In_Other_Cases"
                    }
                  }
                ],
                "sourceAttorneyType": "ASSOCIATED ATTORNEY FOR SPECIAL ADMINSTRATOR"
              },
              {
                "attorneyId": "ATTYar1f7e4ec6c328",
                "attorneyLawFirmArray": [],
                "attorneyType": {
                  "attorneyTypeId": "ATYPRPk3LNobYmtqwF",
                  "createdDate": "2022-03-28T04:59:12+00:00",
                  "name": "Attorney",
                  "object": "AttorneyType"
                },
                "barNumber": null,
                "contact": {
                  "addressArray": [],
                  "emailArray": [],
                  "object": "Contact",
                  "phoneNumberArray": []
                },
                "firstFetchDate": "2020-09-26T01:19:17+00:00",
                "firstName": "SANDY",
                "isVisible": true,
                "lastFetchDate": "2022-07-17T17:57:41+00:00",
                "lastName": "CHUN",
                "middleName": "JULIA",
                "name": "CHUN SANDY JULIA",
                "namePrefix": null,
                "nameSuffix": null,
                "object": "Attorney",
                "partyAttorneyAssociations": {
                  "nextPageAPI": null,
                  "object": "PartyAttorneyAssociations",
                  "pageNumber": 1,
                  "partyAttorneyAssociationArray": [
                    {
                      "attorneyId": "ATTYar1f7e4ec6c328",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMarf1b50975b259",
                      "partyId": "PRTYar27730b3b4b31"
                    },
                    {
                      "attorneyId": "ATTYar1f7e4ec6c328",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar476e32cfeaa3",
                      "partyId": "PRTYar14aa8794c4fe"
                    },
                    {
                      "attorneyId": "ATTYar1f7e4ec6c328",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar69b1d311e2d5",
                      "partyId": "PRTYard42f215877e8"
                    }
                  ],
                  "totalCount": 3,
                  "totalPages": 1
                },
                "partyRoleGroupIdArray": [
                  "PTYGBnjxbx6tKNfVEP"
                ],
                "partyRoleIdArray": [
                  "PTYR9F4zbteyj7ehmi"
                ],
                "possibleNormAttorneyArray": [
                  {
                    "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormJudges?pageNumber=1",
                    "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormLawFirms?pageNumber=1",
                    "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormParties?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByNormAttorney?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByOpposingNormAttorney?pageNumber=1",
                    "confidenceScore": 0.5,
                    "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111",
                    "normAttorneyId": "NATY11111111111111",
                    "normAttorneyName": "ACOSTA S FERNANDO",
                    "object": "PossibleNormAttorney",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "barId": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "lawFirm": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.6,
                      "otherPotentialNormAttorneys": 0,
                      "phone": "Not_Provided_By_Data_Source"
                    }
                  }
                ],
                "possibleNormLawFirmArray": [
                  {
                    "associatedNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormAttorney?pageNumber=1",
                    "associatedNormJudgeAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormJudges?pageNumber=1",
                    "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormParties?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByNormLawFirm?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByOpposingNormLawFirm?pageNumber=1",
                    "confidenceScore": 0.66,
                    "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111",
                    "normLawFirmId": "NLAF11111111111111",
                    "normLawFirmName": "MidLand Funding LLC",
                    "object": "PossibleNormLawFirm",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.8,
                      "otherPotentialNormLawFirms": 0,
                      "phone": "Not_Provided_By_Data_Source",
                      "secretaryOfStateId": "Not_Provided_By_Data_Source"
                    },
                    "sourceDetails": {
                      "linkedNormAttorneyIdArray": [
                        "NATY11111111111111"
                      ],
                      "source": "Case_Attorney_Linked_In_Other_Cases"
                    }
                  }
                ],
                "sourceAttorneyType": "ATTORNEY FOR PETITIONER FOR APPELLANT"
              },
              {
                "attorneyId": "ATTYar3591f7835b2e",
                "attorneyLawFirmArray": [],
                "attorneyType": {
                  "attorneyTypeId": "ATYPRPk3LNobYmtqwF",
                  "createdDate": "2022-03-28T04:59:12+00:00",
                  "name": "Attorney",
                  "object": "AttorneyType"
                },
                "barNumber": null,
                "contact": {
                  "addressArray": [],
                  "emailArray": [],
                  "object": "Contact",
                  "phoneNumberArray": []
                },
                "firstFetchDate": "2020-02-03T11:59:02+00:00",
                "firstName": "SANDY",
                "isVisible": true,
                "lastFetchDate": "2022-07-17T17:57:41+00:00",
                "lastName": "CHUN",
                "middleName": "JULIA",
                "name": "CHUN SANDY JULIA",
                "namePrefix": null,
                "nameSuffix": null,
                "object": "Attorney",
                "partyAttorneyAssociations": {
                  "nextPageAPI": null,
                  "object": "PartyAttorneyAssociations",
                  "pageNumber": 1,
                  "partyAttorneyAssociationArray": [
                    {
                      "attorneyId": "ATTYar3591f7835b2e",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar0c9805fbf6a1",
                      "partyId": "PRTYar42f429bea98c"
                    }
                  ],
                  "totalCount": 1,
                  "totalPages": 1
                },
                "partyRoleGroupIdArray": [
                  "PTYGBnjxbx6tKNfVEP"
                ],
                "partyRoleIdArray": [
                  "PTYR9F4zbteyj7ehmi"
                ],
                "possibleNormAttorneyArray": [
                  {
                    "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormJudges?pageNumber=1",
                    "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormLawFirms?pageNumber=1",
                    "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormParties?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByNormAttorney?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByOpposingNormAttorney?pageNumber=1",
                    "confidenceScore": 0.5,
                    "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111",
                    "normAttorneyId": "NATY11111111111111",
                    "normAttorneyName": "ACOSTA S FERNANDO",
                    "object": "PossibleNormAttorney",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "barId": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "lawFirm": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.6,
                      "otherPotentialNormAttorneys": 0,
                      "phone": "Not_Provided_By_Data_Source"
                    }
                  }
                ],
                "possibleNormLawFirmArray": [
                  {
                    "associatedNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormAttorney?pageNumber=1",
                    "associatedNormJudgeAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormJudges?pageNumber=1",
                    "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormParties?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByNormLawFirm?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByOpposingNormLawFirm?pageNumber=1",
                    "confidenceScore": 0.66,
                    "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111",
                    "normLawFirmId": "NLAF11111111111111",
                    "normLawFirmName": "MidLand Funding LLC",
                    "object": "PossibleNormLawFirm",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.8,
                      "otherPotentialNormLawFirms": 0,
                      "phone": "Not_Provided_By_Data_Source",
                      "secretaryOfStateId": "Not_Provided_By_Data_Source"
                    },
                    "sourceDetails": {
                      "linkedNormAttorneyIdArray": [
                        "NATY11111111111111"
                      ],
                      "source": "Case_Attorney_Linked_In_Other_Cases"
                    }
                  }
                ],
                "sourceAttorneyType": "ATTORNEY FOR PETITIONER FOR CREDITOR"
              },
              {
                "attorneyId": "ATTYarf46968f907e6",
                "attorneyLawFirmArray": [],
                "attorneyType": {
                  "attorneyTypeId": "ATYPRPk3LNobYmtqwF",
                  "createdDate": "2022-03-28T04:59:12+00:00",
                  "name": "Attorney",
                  "object": "AttorneyType"
                },
                "barNumber": null,
                "contact": {
                  "addressArray": [],
                  "emailArray": [],
                  "object": "Contact",
                  "phoneNumberArray": []
                },
                "firstFetchDate": "2020-02-03T11:59:02+00:00",
                "firstName": "SANDY",
                "isVisible": true,
                "lastFetchDate": "2022-07-17T17:57:41+00:00",
                "lastName": "CHUN",
                "middleName": "JULIA",
                "name": "CHUN SANDY JULIA",
                "namePrefix": null,
                "nameSuffix": null,
                "object": "Attorney",
                "partyAttorneyAssociations": {
                  "nextPageAPI": null,
                  "object": "PartyAttorneyAssociations",
                  "pageNumber": 1,
                  "partyAttorneyAssociationArray": [
                    {
                      "attorneyId": "ATTYarf46968f907e6",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar4c041b7d8966",
                      "partyId": "PRTYarfc6d1e88947a"
                    },
                    {
                      "attorneyId": "ATTYarf46968f907e6",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar2e79e2120dbf",
                      "partyId": "PRTYar92ea99913e29"
                    },
                    {
                      "attorneyId": "ATTYarf46968f907e6",
                      "isVisible": false,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMarbdc87aa7f7f6",
                      "partyId": "PRTYar7e672c560550"
                    },
                    {
                      "attorneyId": "ATTYarf46968f907e6",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMarba9c020cf793",
                      "partyId": "PRTYar5ef1babdaa60"
                    }
                  ],
                  "totalCount": 4,
                  "totalPages": 1
                },
                "partyRoleGroupIdArray": [
                  "PTYGBnjxbx6tKNfVEP"
                ],
                "partyRoleIdArray": [
                  "PTYR9F4zbteyj7ehmi"
                ],
                "possibleNormAttorneyArray": [
                  {
                    "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormJudges?pageNumber=1",
                    "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormLawFirms?pageNumber=1",
                    "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormParties?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByNormAttorney?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByOpposingNormAttorney?pageNumber=1",
                    "confidenceScore": 0.5,
                    "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111",
                    "normAttorneyId": "NATY11111111111111",
                    "normAttorneyName": "ACOSTA S FERNANDO",
                    "object": "PossibleNormAttorney",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "barId": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "lawFirm": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.6,
                      "otherPotentialNormAttorneys": 0,
                      "phone": "Not_Provided_By_Data_Source"
                    }
                  }
                ],
                "possibleNormLawFirmArray": [
                  {
                    "associatedNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormAttorney?pageNumber=1",
                    "associatedNormJudgeAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormJudges?pageNumber=1",
                    "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormParties?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByNormLawFirm?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByOpposingNormLawFirm?pageNumber=1",
                    "confidenceScore": 0.66,
                    "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111",
                    "normLawFirmId": "NLAF11111111111111",
                    "normLawFirmName": "MidLand Funding LLC",
                    "object": "PossibleNormLawFirm",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.8,
                      "otherPotentialNormLawFirms": 0,
                      "phone": "Not_Provided_By_Data_Source",
                      "secretaryOfStateId": "Not_Provided_By_Data_Source"
                    },
                    "sourceDetails": {
                      "linkedNormAttorneyIdArray": [
                        "NATY11111111111111"
                      ],
                      "source": "Case_Attorney_Linked_In_Other_Cases"
                    }
                  }
                ],
                "sourceAttorneyType": "ATTORNEY FOR PETITIONER FOR PETITIONER"
              },
              {
                "attorneyId": "ATTYar414416c2922e",
                "attorneyLawFirmArray": [],
                "attorneyType": {
                  "attorneyTypeId": "ATYPRPk3LNobYmtqwF",
                  "createdDate": "2022-03-28T04:59:12+00:00",
                  "name": "Attorney",
                  "object": "AttorneyType"
                },
                "barNumber": null,
                "contact": {
                  "addressArray": [],
                  "emailArray": [],
                  "object": "Contact",
                  "phoneNumberArray": []
                },
                "firstFetchDate": "2020-09-26T01:19:16+00:00",
                "firstName": "SANDY",
                "isVisible": true,
                "lastFetchDate": "2022-07-17T17:57:41+00:00",
                "lastName": "CHUN",
                "middleName": "JULIA",
                "name": "CHUN SANDY JULIA",
                "namePrefix": null,
                "nameSuffix": null,
                "object": "Attorney",
                "partyAttorneyAssociations": {
                  "nextPageAPI": null,
                  "object": "PartyAttorneyAssociations",
                  "pageNumber": 1,
                  "partyAttorneyAssociationArray": [
                    {
                      "attorneyId": "ATTYar414416c2922e",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar3fa6e631bc9d",
                      "partyId": "PRTYare90e11768ee3"
                    },
                    {
                      "attorneyId": "ATTYar414416c2922e",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMarfa57332227ca",
                      "partyId": "PRTYar22ab4bc72b15"
                    }
                  ],
                  "totalCount": 2,
                  "totalPages": 1
                },
                "partyRoleGroupIdArray": [
                  "PTYGBnjxbx6tKNfVEP"
                ],
                "partyRoleIdArray": [
                  "PTYR9F4zbteyj7ehmi"
                ],
                "possibleNormAttorneyArray": [
                  {
                    "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormJudges?pageNumber=1",
                    "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormLawFirms?pageNumber=1",
                    "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormParties?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByNormAttorney?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByOpposingNormAttorney?pageNumber=1",
                    "confidenceScore": 0.5,
                    "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111",
                    "normAttorneyId": "NATY11111111111111",
                    "normAttorneyName": "ACOSTA S FERNANDO",
                    "object": "PossibleNormAttorney",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "barId": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "lawFirm": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.6,
                      "otherPotentialNormAttorneys": 0,
                      "phone": "Not_Provided_By_Data_Source"
                    }
                  }
                ],
                "possibleNormLawFirmArray": [
                  {
                    "associatedNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormAttorney?pageNumber=1",
                    "associatedNormJudgeAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormJudges?pageNumber=1",
                    "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormParties?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByNormLawFirm?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByOpposingNormLawFirm?pageNumber=1",
                    "confidenceScore": 0.66,
                    "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111",
                    "normLawFirmId": "NLAF11111111111111",
                    "normLawFirmName": "MidLand Funding LLC",
                    "object": "PossibleNormLawFirm",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.8,
                      "otherPotentialNormLawFirms": 0,
                      "phone": "Not_Provided_By_Data_Source",
                      "secretaryOfStateId": "Not_Provided_By_Data_Source"
                    },
                    "sourceDetails": {
                      "linkedNormAttorneyIdArray": [
                        "NATY11111111111111"
                      ],
                      "source": "Case_Attorney_Linked_In_Other_Cases"
                    }
                  }
                ],
                "sourceAttorneyType": "ATTORNEY FOR PETITIONER FOR GUARDIAN AD LITEM"
              },
              {
                "attorneyId": "ATTYarc0418624a26e",
                "attorneyLawFirmArray": [],
                "attorneyType": {
                  "attorneyTypeId": "ATYPRPk3LNobYmtqwF",
                  "createdDate": "2022-03-28T04:59:12+00:00",
                  "name": "Attorney",
                  "object": "AttorneyType"
                },
                "barNumber": null,
                "contact": {
                  "addressArray": [],
                  "emailArray": [],
                  "object": "Contact",
                  "phoneNumberArray": []
                },
                "firstFetchDate": "2020-09-26T01:19:17+00:00",
                "firstName": "PIO",
                "isVisible": true,
                "lastFetchDate": "2022-07-17T17:57:41+00:00",
                "lastName": "KIM",
                "middleName": "SUK",
                "name": "KIM PIO SUK",
                "namePrefix": null,
                "nameSuffix": null,
                "object": "Attorney",
                "partyAttorneyAssociations": {
                  "nextPageAPI": null,
                  "object": "PartyAttorneyAssociations",
                  "pageNumber": 1,
                  "partyAttorneyAssociationArray": [
                    {
                      "attorneyId": "ATTYarc0418624a26e",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMarf86050d04f6b",
                      "partyId": "PRTYare90e11768ee3"
                    },
                    {
                      "attorneyId": "ATTYarc0418624a26e",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar6d6e99e59810",
                      "partyId": "PRTYar22ab4bc72b15"
                    }
                  ],
                  "totalCount": 2,
                  "totalPages": 1
                },
                "partyRoleGroupIdArray": [
                  "PTYGBnjxbx6tKNfVEP"
                ],
                "partyRoleIdArray": [
                  "PTYR9F4zbteyj7ehmi"
                ],
                "possibleNormAttorneyArray": [
                  {
                    "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormJudges?pageNumber=1",
                    "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormLawFirms?pageNumber=1",
                    "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormParties?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByNormAttorney?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByOpposingNormAttorney?pageNumber=1",
                    "confidenceScore": 0.5,
                    "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111",
                    "normAttorneyId": "NATY11111111111111",
                    "normAttorneyName": "ACOSTA S FERNANDO",
                    "object": "PossibleNormAttorney",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "barId": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "lawFirm": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.6,
                      "otherPotentialNormAttorneys": 0,
                      "phone": "Not_Provided_By_Data_Source"
                    }
                  }
                ],
                "possibleNormLawFirmArray": [
                  {
                    "associatedNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormAttorney?pageNumber=1",
                    "associatedNormJudgeAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormJudges?pageNumber=1",
                    "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormParties?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByNormLawFirm?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByOpposingNormLawFirm?pageNumber=1",
                    "confidenceScore": 0.66,
                    "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111",
                    "normLawFirmId": "NLAF11111111111111",
                    "normLawFirmName": "MidLand Funding LLC",
                    "object": "PossibleNormLawFirm",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.8,
                      "otherPotentialNormLawFirms": 0,
                      "phone": "Not_Provided_By_Data_Source",
                      "secretaryOfStateId": "Not_Provided_By_Data_Source"
                    },
                    "sourceDetails": {
                      "linkedNormAttorneyIdArray": [
                        "NATY11111111111111"
                      ],
                      "source": "Case_Attorney_Linked_In_Other_Cases"
                    }
                  }
                ],
                "sourceAttorneyType": "ATTORNEY FOR PETITIONER FOR GUARDIAN AD LITEM"
              },
              {
                "attorneyId": "ATTYare8c7c2d0334c",
                "attorneyLawFirmArray": [],
                "attorneyType": {
                  "attorneyTypeId": "ATYPRPk3LNobYmtqwF",
                  "createdDate": "2022-03-28T04:59:12+00:00",
                  "name": "Attorney",
                  "object": "AttorneyType"
                },
                "barNumber": null,
                "contact": {
                  "addressArray": [],
                  "emailArray": [],
                  "object": "Contact",
                  "phoneNumberArray": []
                },
                "firstFetchDate": "2020-09-26T01:19:17+00:00",
                "firstName": "PIO",
                "isVisible": true,
                "lastFetchDate": "2022-07-17T17:57:41+00:00",
                "lastName": "KIM",
                "middleName": "SUK",
                "name": "KIM PIO SUK",
                "namePrefix": null,
                "nameSuffix": null,
                "object": "Attorney",
                "partyAttorneyAssociations": {
                  "nextPageAPI": null,
                  "object": "PartyAttorneyAssociations",
                  "pageNumber": 1,
                  "partyAttorneyAssociationArray": [
                    {
                      "attorneyId": "ATTYare8c7c2d0334c",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMarbbc9a45f249c",
                      "partyId": "PRTYarfc6d1e88947a"
                    },
                    {
                      "attorneyId": "ATTYare8c7c2d0334c",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar07096edab7a4",
                      "partyId": "PRTYar92ea99913e29"
                    },
                    {
                      "attorneyId": "ATTYare8c7c2d0334c",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar7e37c02276a1",
                      "partyId": "PRTYar5ef1babdaa60"
                    }
                  ],
                  "totalCount": 3,
                  "totalPages": 1
                },
                "partyRoleGroupIdArray": [
                  "PTYGBnjxbx6tKNfVEP"
                ],
                "partyRoleIdArray": [
                  "PTYR9F4zbteyj7ehmi"
                ],
                "possibleNormAttorneyArray": [
                  {
                    "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormJudges?pageNumber=1",
                    "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormLawFirms?pageNumber=1",
                    "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormParties?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByNormAttorney?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByOpposingNormAttorney?pageNumber=1",
                    "confidenceScore": 0.5,
                    "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111",
                    "normAttorneyId": "NATY11111111111111",
                    "normAttorneyName": "ACOSTA S FERNANDO",
                    "object": "PossibleNormAttorney",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "barId": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "lawFirm": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.6,
                      "otherPotentialNormAttorneys": 0,
                      "phone": "Not_Provided_By_Data_Source"
                    }
                  }
                ],
                "possibleNormLawFirmArray": [
                  {
                    "associatedNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormAttorney?pageNumber=1",
                    "associatedNormJudgeAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormJudges?pageNumber=1",
                    "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormParties?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByNormLawFirm?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByOpposingNormLawFirm?pageNumber=1",
                    "confidenceScore": 0.66,
                    "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111",
                    "normLawFirmId": "NLAF11111111111111",
                    "normLawFirmName": "MidLand Funding LLC",
                    "object": "PossibleNormLawFirm",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.8,
                      "otherPotentialNormLawFirms": 0,
                      "phone": "Not_Provided_By_Data_Source",
                      "secretaryOfStateId": "Not_Provided_By_Data_Source"
                    },
                    "sourceDetails": {
                      "linkedNormAttorneyIdArray": [
                        "NATY11111111111111"
                      ],
                      "source": "Case_Attorney_Linked_In_Other_Cases"
                    }
                  }
                ],
                "sourceAttorneyType": "ATTORNEY FOR PETITIONER"
              },
              {
                "attorneyId": "ATTYardeaa251e8e2c",
                "attorneyLawFirmArray": [],
                "attorneyType": {
                  "attorneyTypeId": "ATYPRPk3LNobYmtqwF",
                  "createdDate": "2022-03-28T04:59:12+00:00",
                  "name": "Attorney",
                  "object": "AttorneyType"
                },
                "barNumber": null,
                "contact": {
                  "addressArray": [],
                  "emailArray": [],
                  "object": "Contact",
                  "phoneNumberArray": []
                },
                "firstFetchDate": "2020-09-26T01:19:17+00:00",
                "firstName": "PIO",
                "isVisible": true,
                "lastFetchDate": "2022-07-17T17:57:41+00:00",
                "lastName": "KIM",
                "middleName": "SUK",
                "name": "KIM PIO SUK",
                "namePrefix": null,
                "nameSuffix": null,
                "object": "Attorney",
                "partyAttorneyAssociations": {
                  "nextPageAPI": null,
                  "object": "PartyAttorneyAssociations",
                  "pageNumber": 1,
                  "partyAttorneyAssociationArray": [
                    {
                      "attorneyId": "ATTYardeaa251e8e2c",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMarbb956096c100",
                      "partyId": "PRTYarfc6d1e88947a"
                    },
                    {
                      "attorneyId": "ATTYardeaa251e8e2c",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar18ba8e443f27",
                      "partyId": "PRTYar92ea99913e29"
                    },
                    {
                      "attorneyId": "ATTYardeaa251e8e2c",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar3e07d244eabe",
                      "partyId": "PRTYar5ef1babdaa60"
                    }
                  ],
                  "totalCount": 3,
                  "totalPages": 1
                },
                "partyRoleGroupIdArray": [
                  "PTYGBnjxbx6tKNfVEP"
                ],
                "partyRoleIdArray": [
                  "PTYR9F4zbteyj7ehmi"
                ],
                "possibleNormAttorneyArray": [
                  {
                    "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormJudges?pageNumber=1",
                    "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormLawFirms?pageNumber=1",
                    "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormParties?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByNormAttorney?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByOpposingNormAttorney?pageNumber=1",
                    "confidenceScore": 0.5,
                    "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111",
                    "normAttorneyId": "NATY11111111111111",
                    "normAttorneyName": "ACOSTA S FERNANDO",
                    "object": "PossibleNormAttorney",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "barId": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "lawFirm": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.6,
                      "otherPotentialNormAttorneys": 0,
                      "phone": "Not_Provided_By_Data_Source"
                    }
                  }
                ],
                "possibleNormLawFirmArray": [
                  {
                    "associatedNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormAttorney?pageNumber=1",
                    "associatedNormJudgeAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormJudges?pageNumber=1",
                    "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormParties?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByNormLawFirm?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByOpposingNormLawFirm?pageNumber=1",
                    "confidenceScore": 0.66,
                    "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111",
                    "normLawFirmId": "NLAF11111111111111",
                    "normLawFirmName": "MidLand Funding LLC",
                    "object": "PossibleNormLawFirm",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.8,
                      "otherPotentialNormLawFirms": 0,
                      "phone": "Not_Provided_By_Data_Source",
                      "secretaryOfStateId": "Not_Provided_By_Data_Source"
                    },
                    "sourceDetails": {
                      "linkedNormAttorneyIdArray": [
                        "NATY11111111111111"
                      ],
                      "source": "Case_Attorney_Linked_In_Other_Cases"
                    }
                  }
                ],
                "sourceAttorneyType": "ATTORNEY FOR PETITIONER FOR PETITIONER"
              },
              {
                "attorneyId": "ATTYare7d3a7492a3d",
                "attorneyLawFirmArray": [],
                "attorneyType": {
                  "attorneyTypeId": "ATYPRPk3LNobYmtqwF",
                  "createdDate": "2022-03-28T04:59:12+00:00",
                  "name": "Attorney",
                  "object": "AttorneyType"
                },
                "barNumber": null,
                "contact": {
                  "addressArray": [],
                  "emailArray": [],
                  "object": "Contact",
                  "phoneNumberArray": []
                },
                "firstFetchDate": "2020-09-26T01:19:17+00:00",
                "firstName": "PIO",
                "isVisible": true,
                "lastFetchDate": "2022-07-17T17:57:41+00:00",
                "lastName": "KIM",
                "middleName": "SUK",
                "name": "KIM PIO SUK",
                "namePrefix": null,
                "nameSuffix": null,
                "object": "Attorney",
                "partyAttorneyAssociations": {
                  "nextPageAPI": null,
                  "object": "PartyAttorneyAssociations",
                  "pageNumber": 1,
                  "partyAttorneyAssociationArray": [
                    {
                      "attorneyId": "ATTYare7d3a7492a3d",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar0dabe80a4320",
                      "partyId": "PRTYare90e11768ee3"
                    },
                    {
                      "attorneyId": "ATTYare7d3a7492a3d",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar0eab1296416c",
                      "partyId": "PRTYar22ab4bc72b15"
                    }
                  ],
                  "totalCount": 2,
                  "totalPages": 1
                },
                "partyRoleGroupIdArray": [
                  "PTYGBnjxbx6tKNfVEP"
                ],
                "partyRoleIdArray": [
                  "PTYR9F4zbteyj7ehmi"
                ],
                "possibleNormAttorneyArray": [
                  {
                    "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormJudges?pageNumber=1",
                    "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormLawFirms?pageNumber=1",
                    "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormParties?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByNormAttorney?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByOpposingNormAttorney?pageNumber=1",
                    "confidenceScore": 0.5,
                    "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111",
                    "normAttorneyId": "NATY11111111111111",
                    "normAttorneyName": "ACOSTA S FERNANDO",
                    "object": "PossibleNormAttorney",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "barId": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "lawFirm": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.6,
                      "otherPotentialNormAttorneys": 0,
                      "phone": "Not_Provided_By_Data_Source"
                    }
                  }
                ],
                "possibleNormLawFirmArray": [
                  {
                    "associatedNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormAttorney?pageNumber=1",
                    "associatedNormJudgeAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormJudges?pageNumber=1",
                    "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormParties?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByNormLawFirm?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByOpposingNormLawFirm?pageNumber=1",
                    "confidenceScore": 0.66,
                    "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111",
                    "normLawFirmId": "NLAF11111111111111",
                    "normLawFirmName": "MidLand Funding LLC",
                    "object": "PossibleNormLawFirm",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.8,
                      "otherPotentialNormLawFirms": 0,
                      "phone": "Not_Provided_By_Data_Source",
                      "secretaryOfStateId": "Not_Provided_By_Data_Source"
                    },
                    "sourceDetails": {
                      "linkedNormAttorneyIdArray": [
                        "NATY11111111111111"
                      ],
                      "source": "Case_Attorney_Linked_In_Other_Cases"
                    }
                  }
                ],
                "sourceAttorneyType": "ATTORNEY FOR GUARDIAN AD LITEM"
              },
              {
                "attorneyId": "ATTYar8f0120e2dad1",
                "attorneyLawFirmArray": [],
                "attorneyType": {
                  "attorneyTypeId": "ATYPRPk3LNobYmtqwF",
                  "createdDate": "2022-03-28T04:59:12+00:00",
                  "name": "Attorney",
                  "object": "AttorneyType"
                },
                "barNumber": null,
                "contact": {
                  "addressArray": [],
                  "emailArray": [],
                  "object": "Contact",
                  "phoneNumberArray": []
                },
                "firstFetchDate": "2020-09-26T01:19:17+00:00",
                "firstName": "PIO",
                "isVisible": true,
                "lastFetchDate": "2022-07-17T17:57:41+00:00",
                "lastName": "KIM",
                "middleName": "SUK",
                "name": "KIM PIO SUK",
                "namePrefix": null,
                "nameSuffix": null,
                "object": "Attorney",
                "partyAttorneyAssociations": {
                  "nextPageAPI": null,
                  "object": "PartyAttorneyAssociations",
                  "pageNumber": 1,
                  "partyAttorneyAssociationArray": [
                    {
                      "attorneyId": "ATTYar8f0120e2dad1",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar78c930d1ed3d",
                      "partyId": "PRTYar27730b3b4b31"
                    },
                    {
                      "attorneyId": "ATTYar8f0120e2dad1",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMarc8841de822f0",
                      "partyId": "PRTYar14aa8794c4fe"
                    },
                    {
                      "attorneyId": "ATTYar8f0120e2dad1",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar6ac2222cdc9d",
                      "partyId": "PRTYard42f215877e8"
                    }
                  ],
                  "totalCount": 3,
                  "totalPages": 1
                },
                "partyRoleGroupIdArray": [
                  "PTYGBnjxbx6tKNfVEP"
                ],
                "partyRoleIdArray": [
                  "PTYR9F4zbteyj7ehmi"
                ],
                "possibleNormAttorneyArray": [
                  {
                    "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormJudges?pageNumber=1",
                    "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormLawFirms?pageNumber=1",
                    "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/associatedNormParties?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByNormAttorney?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111/caseCountAnalyticsByOpposingNormAttorney?pageNumber=1",
                    "confidenceScore": 0.5,
                    "normAttorneyAPI": "https://enterpriseapi.unicourt.com/normAttorney/NATY11111111111111",
                    "normAttorneyId": "NATY11111111111111",
                    "normAttorneyName": "ACOSTA S FERNANDO",
                    "object": "PossibleNormAttorney",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "barId": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "lawFirm": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.6,
                      "otherPotentialNormAttorneys": 0,
                      "phone": "Not_Provided_By_Data_Source"
                    }
                  }
                ],
                "possibleNormLawFirmArray": [
                  {
                    "associatedNormAttorneyAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormAttorney?pageNumber=1",
                    "associatedNormJudgeAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormJudges?pageNumber=1",
                    "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/associatedNormParties?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByNormLawFirm?pageNumber=1",
                    "caseCountAnalyticsByOpposingNormLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111/caseCountAnalyticsByOpposingNormLawFirm?pageNumber=1",
                    "confidenceScore": 0.66,
                    "normLawFirmAPI": "https://enterpriseapi.unicourt.com/normLawFirm/NLAF11111111111111",
                    "normLawFirmId": "NLAF11111111111111",
                    "normLawFirmName": "MidLand Funding LLC",
                    "object": "PossibleNormLawFirm",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.8,
                      "otherPotentialNormLawFirms": 0,
                      "phone": "Not_Provided_By_Data_Source",
                      "secretaryOfStateId": "Not_Provided_By_Data_Source"
                    },
                    "sourceDetails": {
                      "linkedNormAttorneyIdArray": [
                        "NATY11111111111111"
                      ],
                      "source": "Case_Attorney_Linked_In_Other_Cases"
                    }
                  }
                ],
                "sourceAttorneyType": "ATTORNEY FOR PETITIONER FOR APPELLANT"
              }
            ],
            "nextPageAPI": "https://enterpriseapi.unicourt.com/case/CASEar7a26f15e76cf/attorneys?pageNumber=2",
            "object": "Attorneys",
            "pageNumber": 1,
            "totalCount": 41,
            "totalPages": 2
          },
          "caseDocuments": {
            "caseDocumentArray": [
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCag3e5eba43b870",
                "childDocumentIdArray": [],
                "description": "7/1/2022: Reply - Reply",
                "documentFiledDate": "2022-07-01T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2022-07-17T18:20:45+00:00",
                "inLibrary": false,
                "isPreviewAvailable": true,
                "name": "Reply - Reply",
                "object": "CaseDocument",
                "pages": 14,
                "parentDocumentId": null,
                "previewDocument": {
                  "addedToLibraryDate": "2022-07-28T12:30:30+00:00",
                  "downloadAPI": "https://enterpriseapi.unicourt.com/caseDocumentDownload/CDOCag3e5eba43b870?isPreviewDocument=true",
                  "inLibrary": true,
                  "object": "PreviewDocument"
                },
                "price": 10.75,
                "sortOrder": 10,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCage64cb0860798",
                "childDocumentIdArray": [],
                "description": "7/1/2022: Miscellaneous Document - Evidentiary Objections",
                "documentFiledDate": "2022-07-01T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2022-07-17T18:20:45+00:00",
                "inLibrary": false,
                "isPreviewAvailable": true,
                "name": "Miscellaneous Document - Evidentiary Objections",
                "object": "CaseDocument",
                "pages": 11,
                "parentDocumentId": null,
                "previewDocument": {
                  "addedToLibraryDate": null,
                  "downloadAPI": null,
                  "inLibrary": false,
                  "object": "PreviewDocument"
                },
                "price": 9.25,
                "sortOrder": 9,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCag46bd6e98404b",
                "childDocumentIdArray": [],
                "description": "7/1/2022: Request -  Judicial Notice - Request for Judicial Notice",
                "documentFiledDate": "2022-07-01T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2022-07-17T18:20:45+00:00",
                "inLibrary": false,
                "isPreviewAvailable": true,
                "name": "Request -  Judicial Notice - Request for Judicial Notice",
                "object": "CaseDocument",
                "pages": 14,
                "parentDocumentId": null,
                "previewDocument": {
                  "addedToLibraryDate": null,
                  "downloadAPI": null,
                  "inLibrary": false,
                  "object": "PreviewDocument"
                },
                "price": 10.75,
                "sortOrder": 8,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCag31b7a5f69231",
                "childDocumentIdArray": [],
                "description": "7/6/2022: Minute Order",
                "documentFiledDate": "2022-07-06T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2022-07-17T18:20:45+00:00",
                "inLibrary": false,
                "isPreviewAvailable": true,
                "name": "Minute Order",
                "object": "CaseDocument",
                "pages": 1,
                "parentDocumentId": null,
                "previewDocument": {
                  "addedToLibraryDate": null,
                  "downloadAPI": null,
                  "inLibrary": false,
                  "object": "PreviewDocument"
                },
                "price": 1.25,
                "sortOrder": 7,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCag0299b71362ab",
                "childDocumentIdArray": [],
                "description": "7/6/2022: Minute Order",
                "documentFiledDate": "2022-07-06T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2022-07-17T18:20:45+00:00",
                "inLibrary": false,
                "isPreviewAvailable": true,
                "name": "Minute Order",
                "object": "CaseDocument",
                "pages": 1,
                "parentDocumentId": null,
                "previewDocument": {
                  "addedToLibraryDate": null,
                  "downloadAPI": null,
                  "inLibrary": false,
                  "object": "PreviewDocument"
                },
                "price": 1.25,
                "sortOrder": 6,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCaga2e4608dd7f4",
                "childDocumentIdArray": [],
                "description": "7/6/2022: Minute Order",
                "documentFiledDate": "2022-07-06T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2022-07-17T18:20:45+00:00",
                "inLibrary": false,
                "isPreviewAvailable": true,
                "name": "Minute Order",
                "object": "CaseDocument",
                "pages": 1,
                "parentDocumentId": null,
                "previewDocument": {
                  "addedToLibraryDate": null,
                  "downloadAPI": null,
                  "inLibrary": false,
                  "object": "PreviewDocument"
                },
                "price": 1.25,
                "sortOrder": 5,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCag9bc9606624f9",
                "childDocumentIdArray": [],
                "description": "7/6/2022: Minute Order",
                "documentFiledDate": "2022-07-06T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2022-07-17T18:20:45+00:00",
                "inLibrary": false,
                "isPreviewAvailable": true,
                "name": "Minute Order",
                "object": "CaseDocument",
                "pages": 1,
                "parentDocumentId": null,
                "previewDocument": {
                  "addedToLibraryDate": null,
                  "downloadAPI": null,
                  "inLibrary": false,
                  "object": "PreviewDocument"
                },
                "price": 1.25,
                "sortOrder": 4,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCag891f7057adf6",
                "childDocumentIdArray": [],
                "description": "7/6/2022: Minute Order",
                "documentFiledDate": "2022-07-06T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2022-07-17T18:20:45+00:00",
                "inLibrary": false,
                "isPreviewAvailable": true,
                "name": "Minute Order",
                "object": "CaseDocument",
                "pages": 1,
                "parentDocumentId": null,
                "previewDocument": {
                  "addedToLibraryDate": null,
                  "downloadAPI": null,
                  "inLibrary": false,
                  "object": "PreviewDocument"
                },
                "price": 1.25,
                "sortOrder": 3,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCag06727a56a71b",
                "childDocumentIdArray": [],
                "description": "7/12/2022: Notice - Ruling - NOTICE OF AMENDED ORDER GRANTING IN PART AND DENYING IN PART MOTION FOR ORDER AUTHORIZING IMAGING OF ELECTRONIC DEVICES",
                "documentFiledDate": "2022-07-12T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2022-07-17T18:20:45+00:00",
                "inLibrary": false,
                "isPreviewAvailable": true,
                "name": "Notice - Ruling - NOTICE OF AMENDED ORDER GRANTING IN PART AND DENYING IN PART MOTION FOR ORDER AUTHORIZING IMAGING OF ELECTRONIC DEVICES",
                "object": "CaseDocument",
                "pages": 6,
                "parentDocumentId": null,
                "previewDocument": {
                  "addedToLibraryDate": null,
                  "downloadAPI": null,
                  "inLibrary": false,
                  "object": "PreviewDocument"
                },
                "price": 6.75,
                "sortOrder": 2,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCag244f7eb5ffa0",
                "childDocumentIdArray": [],
                "description": "7/15/2022: Appeal - Notice of Default Issued - NOA 4/29/22 B321101 RESPONDENTS REPORTER FEE",
                "documentFiledDate": "2022-07-15T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2022-07-17T18:20:45+00:00",
                "inLibrary": false,
                "isPreviewAvailable": true,
                "name": "Appeal - Notice of Default Issued - NOA 4/29/22 B321101 RESPONDENTS REPORTER FEE",
                "object": "CaseDocument",
                "pages": 2,
                "parentDocumentId": null,
                "previewDocument": {
                  "addedToLibraryDate": null,
                  "downloadAPI": null,
                  "inLibrary": false,
                  "object": "PreviewDocument"
                },
                "price": 2.5,
                "sortOrder": 1,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCage247deb6301f",
                "childDocumentIdArray": [],
                "description": "6/23/2022: Appeal - Ntc Designating Record of Appeal APP-003/010/103 - for \"U1\" Appeal filed 04/29/22",
                "documentFiledDate": "2022-06-23T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2022-07-03T21:45:40+00:00",
                "inLibrary": false,
                "isPreviewAvailable": true,
                "name": "Appeal - Ntc Designating Record of Appeal APP-003/010/103 - for \"U1\" Appeal filed 04/29/22",
                "object": "CaseDocument",
                "pages": 7,
                "parentDocumentId": null,
                "previewDocument": {
                  "addedToLibraryDate": null,
                  "downloadAPI": null,
                  "inLibrary": false,
                  "object": "PreviewDocument"
                },
                "price": 7.25,
                "sortOrder": 5,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCagcc05ac9725ad",
                "childDocumentIdArray": [],
                "description": "6/23/2022: Appeal - Ntc Designating Record of Appeal APP-003/010/103 - for \"U2\" Appeal filed 04/29/22",
                "documentFiledDate": "2022-06-23T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2022-07-03T21:45:40+00:00",
                "inLibrary": false,
                "isPreviewAvailable": true,
                "name": "Appeal - Ntc Designating Record of Appeal APP-003/010/103 - for \"U2\" Appeal filed 04/29/22",
                "object": "CaseDocument",
                "pages": 7,
                "parentDocumentId": null,
                "previewDocument": {
                  "addedToLibraryDate": null,
                  "downloadAPI": null,
                  "inLibrary": false,
                  "object": "PreviewDocument"
                },
                "price": 7.25,
                "sortOrder": 2,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCag18b6847be971",
                "childDocumentIdArray": [],
                "description": "4/25/2022: Notice - Ruling - Notice of Ruling",
                "documentFiledDate": "2022-04-25T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2022-06-30T19:26:48+00:00",
                "inLibrary": false,
                "isPreviewAvailable": true,
                "name": "Notice - Ruling - Notice of Ruling",
                "object": "CaseDocument",
                "pages": 22,
                "parentDocumentId": null,
                "previewDocument": {
                  "addedToLibraryDate": null,
                  "downloadAPI": null,
                  "inLibrary": false,
                  "object": "PreviewDocument"
                },
                "price": 14.75,
                "sortOrder": 42,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCag9e1bbdd372ef",
                "childDocumentIdArray": [],
                "description": "4/29/2022: Appeal - Notice of Appeal/Cross Appeal Filed - \"U1\" Appeal - Notice of Appeal/Cross Appeal Filed - $100.00 (Appeals)",
                "documentFiledDate": "2022-04-29T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2022-06-30T19:26:48+00:00",
                "inLibrary": false,
                "isPreviewAvailable": true,
                "name": "Appeal - Notice of Appeal/Cross Appeal Filed - \"U1\" Appeal - Notice of Appeal/Cross Appeal Filed - $100.00 (Appeals)",
                "object": "CaseDocument",
                "pages": 3,
                "parentDocumentId": null,
                "previewDocument": {
                  "addedToLibraryDate": null,
                  "downloadAPI": null,
                  "inLibrary": false,
                  "object": "PreviewDocument"
                },
                "price": 3.75,
                "sortOrder": 41,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCagbae762d37eb5",
                "childDocumentIdArray": [],
                "description": "4/29/2022: Appeal - Notice of Appeal/Cross Appeal Filed - \"U2\" Appeal - Notice of Appeal/Cross Appeal Filed - $100.00 (Appeals)",
                "documentFiledDate": "2022-04-29T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2022-06-30T19:26:48+00:00",
                "inLibrary": false,
                "isPreviewAvailable": true,
                "name": "Appeal - Notice of Appeal/Cross Appeal Filed - \"U2\" Appeal - Notice of Appeal/Cross Appeal Filed - $100.00 (Appeals)",
                "object": "CaseDocument",
                "pages": 3,
                "parentDocumentId": null,
                "previewDocument": {
                  "addedToLibraryDate": null,
                  "downloadAPI": null,
                  "inLibrary": false,
                  "object": "PreviewDocument"
                },
                "price": 3.75,
                "sortOrder": 40,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCag2ea98d1ca36e",
                "childDocumentIdArray": [],
                "description": "5/2/2022: Miscellaneous Document",
                "documentFiledDate": "2022-05-02T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2022-06-30T19:26:48+00:00",
                "inLibrary": false,
                "isPreviewAvailable": true,
                "name": "Miscellaneous Document",
                "object": "CaseDocument",
                "pages": 6,
                "parentDocumentId": null,
                "previewDocument": {
                  "addedToLibraryDate": null,
                  "downloadAPI": null,
                  "inLibrary": false,
                  "object": "PreviewDocument"
                },
                "price": 6.75,
                "sortOrder": 39,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCag40aa1b89c4ea",
                "childDocumentIdArray": [],
                "description": "5/2/2022: Appeal - Notice of Filing of Notice of Appeal - \"U2\"",
                "documentFiledDate": "2022-05-02T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2022-06-30T19:26:48+00:00",
                "inLibrary": false,
                "isPreviewAvailable": true,
                "name": "Appeal - Notice of Filing of Notice of Appeal - \"U2\"",
                "object": "CaseDocument",
                "pages": 3,
                "parentDocumentId": null,
                "previewDocument": {
                  "addedToLibraryDate": null,
                  "downloadAPI": null,
                  "inLibrary": false,
                  "object": "PreviewDocument"
                },
                "price": 3.75,
                "sortOrder": 38,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCag0159158b53c1",
                "childDocumentIdArray": [],
                "description": "5/2/2022: Appeal - Notice of Filing of Notice of Appeal - \"U1\"",
                "documentFiledDate": "2022-05-02T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2022-06-30T19:26:48+00:00",
                "inLibrary": false,
                "isPreviewAvailable": true,
                "name": "Appeal - Notice of Filing of Notice of Appeal - \"U1\"",
                "object": "CaseDocument",
                "pages": 3,
                "parentDocumentId": null,
                "previewDocument": {
                  "addedToLibraryDate": null,
                  "downloadAPI": null,
                  "inLibrary": false,
                  "object": "PreviewDocument"
                },
                "price": 3.75,
                "sortOrder": 37,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCagf69d230c3a50",
                "childDocumentIdArray": [],
                "description": "5/4/2022: Objection - REVISED AND SUPERSEDING OBJECTION TO FANFARE TRADING, INC., REQUEST FOR CLARIFICATION OF ORDER GRANTING IN PART AND DENYING IN PART MOTION FOR ORDER AUTHORIZING IMAGING OF ELECTRONIC DEVIC",
                "documentFiledDate": "2022-05-04T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2022-06-30T19:26:48+00:00",
                "inLibrary": false,
                "isPreviewAvailable": true,
                "name": "Objection - REVISED AND SUPERSEDING OBJECTION TO FANFARE TRADING, INC., REQUEST FOR CLARIFICATION OF ORDER GRANTING IN PART AND DENYING IN PART MOTION FOR ORDER AUTHORIZING IMAGING OF ELECTRONIC DEVIC",
                "object": "CaseDocument",
                "pages": 6,
                "parentDocumentId": null,
                "previewDocument": {
                  "addedToLibraryDate": null,
                  "downloadAPI": null,
                  "inLibrary": false,
                  "object": "PreviewDocument"
                },
                "price": 6.75,
                "sortOrder": 36,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCag9f59ebbf8e56",
                "childDocumentIdArray": [],
                "description": "5/4/2022: Objection - OBJECTION TO MICHAEL VELCHEREAN S REQUEST FOR CLARIFICATION OF ORDER GRANTING IN PART AND DENYING IN PART MOTION FOR ORDER AUTHORIZING IMAGING OF ELECTRONIC DEVICES",
                "documentFiledDate": "2022-05-04T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2022-06-30T19:26:48+00:00",
                "inLibrary": false,
                "isPreviewAvailable": true,
                "name": "Objection - OBJECTION TO MICHAEL VELCHEREAN S REQUEST FOR CLARIFICATION OF ORDER GRANTING IN PART AND DENYING IN PART MOTION FOR ORDER AUTHORIZING IMAGING OF ELECTRONIC DEVICES",
                "object": "CaseDocument",
                "pages": 17,
                "parentDocumentId": null,
                "previewDocument": {
                  "addedToLibraryDate": null,
                  "downloadAPI": null,
                  "inLibrary": false,
                  "object": "PreviewDocument"
                },
                "price": 12.25,
                "sortOrder": 35,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCagdc3d703545ca",
                "childDocumentIdArray": [],
                "description": "5/4/2022: Notice - Notice of Errata",
                "documentFiledDate": "2022-05-04T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2022-06-30T19:26:48+00:00",
                "inLibrary": false,
                "isPreviewAvailable": true,
                "name": "Notice - Notice of Errata",
                "object": "CaseDocument",
                "pages": 5,
                "parentDocumentId": null,
                "previewDocument": {
                  "addedToLibraryDate": null,
                  "downloadAPI": null,
                  "inLibrary": false,
                  "object": "PreviewDocument"
                },
                "price": 6.25,
                "sortOrder": 34,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCag845246d542db",
                "childDocumentIdArray": [],
                "description": "5/6/2022: Notice - Ruling - Notice of Ruling",
                "documentFiledDate": "2022-05-06T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2022-06-30T19:26:48+00:00",
                "inLibrary": false,
                "isPreviewAvailable": true,
                "name": "Notice - Ruling - Notice of Ruling",
                "object": "CaseDocument",
                "pages": 24,
                "parentDocumentId": null,
                "previewDocument": {
                  "addedToLibraryDate": null,
                  "downloadAPI": null,
                  "inLibrary": false,
                  "object": "PreviewDocument"
                },
                "price": 15.75,
                "sortOrder": 33,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCag87b601aa57e0",
                "childDocumentIdArray": [],
                "description": "5/10/2022: Minute Order",
                "documentFiledDate": "2022-05-10T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2022-06-30T19:26:48+00:00",
                "inLibrary": false,
                "isPreviewAvailable": true,
                "name": "Minute Order",
                "object": "CaseDocument",
                "pages": 1,
                "parentDocumentId": null,
                "previewDocument": {
                  "addedToLibraryDate": null,
                  "downloadAPI": null,
                  "inLibrary": false,
                  "object": "PreviewDocument"
                },
                "price": 1.25,
                "sortOrder": 32,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCag2309b77f9748",
                "childDocumentIdArray": [],
                "description": "5/10/2022: Minute Order",
                "documentFiledDate": "2022-05-10T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2022-06-30T19:26:48+00:00",
                "inLibrary": false,
                "isPreviewAvailable": true,
                "name": "Minute Order",
                "object": "CaseDocument",
                "pages": 1,
                "parentDocumentId": null,
                "previewDocument": {
                  "addedToLibraryDate": null,
                  "downloadAPI": null,
                  "inLibrary": false,
                  "object": "PreviewDocument"
                },
                "price": 1.25,
                "sortOrder": 31,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCagc6a8ec3f72f8",
                "childDocumentIdArray": [],
                "description": "5/10/2022: Minute Order",
                "documentFiledDate": "2022-05-10T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2022-06-30T19:26:48+00:00",
                "inLibrary": false,
                "isPreviewAvailable": true,
                "name": "Minute Order",
                "object": "CaseDocument",
                "pages": 1,
                "parentDocumentId": null,
                "previewDocument": {
                  "addedToLibraryDate": null,
                  "downloadAPI": null,
                  "inLibrary": false,
                  "object": "PreviewDocument"
                },
                "price": 1.25,
                "sortOrder": 30,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCag5eac7dbd25ef",
                "childDocumentIdArray": [],
                "description": "5/10/2022: Minute Order",
                "documentFiledDate": "2022-05-10T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2022-06-30T19:26:48+00:00",
                "inLibrary": false,
                "isPreviewAvailable": true,
                "name": "Minute Order",
                "object": "CaseDocument",
                "pages": 1,
                "parentDocumentId": null,
                "previewDocument": {
                  "addedToLibraryDate": null,
                  "downloadAPI": null,
                  "inLibrary": false,
                  "object": "PreviewDocument"
                },
                "price": 1.25,
                "sortOrder": 29,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCag53a37d9bc5c4",
                "childDocumentIdArray": [],
                "description": "5/10/2022: Minute Order",
                "documentFiledDate": "2022-05-10T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2022-06-30T19:26:48+00:00",
                "inLibrary": false,
                "isPreviewAvailable": true,
                "name": "Minute Order",
                "object": "CaseDocument",
                "pages": 1,
                "parentDocumentId": null,
                "previewDocument": {
                  "addedToLibraryDate": null,
                  "downloadAPI": null,
                  "inLibrary": false,
                  "object": "PreviewDocument"
                },
                "price": 1.25,
                "sortOrder": 28,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCag56c308f89321",
                "childDocumentIdArray": [],
                "description": "5/10/2022: Minute Order",
                "documentFiledDate": "2022-05-10T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2022-06-30T19:26:48+00:00",
                "inLibrary": false,
                "isPreviewAvailable": true,
                "name": "Minute Order",
                "object": "CaseDocument",
                "pages": 1,
                "parentDocumentId": null,
                "previewDocument": {
                  "addedToLibraryDate": null,
                  "downloadAPI": null,
                  "inLibrary": false,
                  "object": "PreviewDocument"
                },
                "price": 1.25,
                "sortOrder": 27,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCag4584b18272b3",
                "childDocumentIdArray": [],
                "description": "5/10/2022: Minute Order",
                "documentFiledDate": "2022-05-10T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2022-06-30T19:26:48+00:00",
                "inLibrary": false,
                "isPreviewAvailable": true,
                "name": "Minute Order",
                "object": "CaseDocument",
                "pages": 1,
                "parentDocumentId": null,
                "previewDocument": {
                  "addedToLibraryDate": null,
                  "downloadAPI": null,
                  "inLibrary": false,
                  "object": "PreviewDocument"
                },
                "price": 1.25,
                "sortOrder": 26,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCag153380f163a2",
                "childDocumentIdArray": [],
                "description": "5/10/2022: Notice - Notice of Errata",
                "documentFiledDate": "2022-05-10T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2022-06-30T19:26:48+00:00",
                "inLibrary": false,
                "isPreviewAvailable": true,
                "name": "Notice - Notice of Errata",
                "object": "CaseDocument",
                "pages": 5,
                "parentDocumentId": null,
                "previewDocument": {
                  "addedToLibraryDate": null,
                  "downloadAPI": null,
                  "inLibrary": false,
                  "object": "PreviewDocument"
                },
                "price": 6.25,
                "sortOrder": 25,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCag10a13d421c6e",
                "childDocumentIdArray": [],
                "description": "5/10/2022: Minute Order",
                "documentFiledDate": "2022-05-10T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2022-06-30T19:26:48+00:00",
                "inLibrary": false,
                "isPreviewAvailable": true,
                "name": "Minute Order",
                "object": "CaseDocument",
                "pages": 1,
                "parentDocumentId": null,
                "previewDocument": {
                  "addedToLibraryDate": null,
                  "downloadAPI": null,
                  "inLibrary": false,
                  "object": "PreviewDocument"
                },
                "price": 1.25,
                "sortOrder": 24,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCag97d3156bb4c7",
                "childDocumentIdArray": [],
                "description": "5/10/2022: Minute Order",
                "documentFiledDate": "2022-05-10T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2022-06-30T19:26:48+00:00",
                "inLibrary": false,
                "isPreviewAvailable": true,
                "name": "Minute Order",
                "object": "CaseDocument",
                "pages": 1,
                "parentDocumentId": null,
                "previewDocument": {
                  "addedToLibraryDate": null,
                  "downloadAPI": null,
                  "inLibrary": false,
                  "object": "PreviewDocument"
                },
                "price": 1.25,
                "sortOrder": 23,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCag432fd8991588",
                "childDocumentIdArray": [],
                "description": "5/13/2022: Notice - Notice Designating Record on Appeal (Comment)",
                "documentFiledDate": "2022-05-13T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2022-06-30T19:26:48+00:00",
                "inLibrary": false,
                "isPreviewAvailable": true,
                "name": "Notice - Notice Designating Record on Appeal (Comment)",
                "object": "CaseDocument",
                "pages": 7,
                "parentDocumentId": null,
                "previewDocument": {
                  "addedToLibraryDate": null,
                  "downloadAPI": null,
                  "inLibrary": false,
                  "object": "PreviewDocument"
                },
                "price": 7.25,
                "sortOrder": 22,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCag0d75070963dc",
                "childDocumentIdArray": [],
                "description": "5/17/2022: Appeal - Ntc Designating Record of Appeal APP-003/010/103 - \"U2\" RESPONDENT'S Appeal - Ntc Designating Record of Appeal APP-003/010/103",
                "documentFiledDate": "2022-05-17T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2022-06-30T19:26:48+00:00",
                "inLibrary": false,
                "isPreviewAvailable": true,
                "name": "Appeal - Ntc Designating Record of Appeal APP-003/010/103 - \"U2\" RESPONDENT'S Appeal - Ntc Designating Record of Appeal APP-003/010/103",
                "object": "CaseDocument",
                "pages": 7,
                "parentDocumentId": null,
                "previewDocument": {
                  "addedToLibraryDate": null,
                  "downloadAPI": null,
                  "inLibrary": false,
                  "object": "PreviewDocument"
                },
                "price": 7.25,
                "sortOrder": 21,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCag5d3c8852f500",
                "childDocumentIdArray": [],
                "description": "5/17/2022: Appeal - Ntc Designating Record of Appeal APP-003/010/103 - \"U2\" RESPONDENT'S Appeal - Ntc Designating Record of Appeal APP-003/010/103",
                "documentFiledDate": "2022-05-17T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2022-06-30T19:26:48+00:00",
                "inLibrary": false,
                "isPreviewAvailable": true,
                "name": "Appeal - Ntc Designating Record of Appeal APP-003/010/103 - \"U2\" RESPONDENT'S Appeal - Ntc Designating Record of Appeal APP-003/010/103",
                "object": "CaseDocument",
                "pages": 7,
                "parentDocumentId": null,
                "previewDocument": {
                  "addedToLibraryDate": null,
                  "downloadAPI": null,
                  "inLibrary": false,
                  "object": "PreviewDocument"
                },
                "price": 7.25,
                "sortOrder": 20,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCag9aa8f417e1ed",
                "childDocumentIdArray": [],
                "description": "5/20/2022: Notice - Notice of Orders from May 10, 2022 Hearing",
                "documentFiledDate": "2022-05-20T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2022-06-30T19:26:48+00:00",
                "inLibrary": false,
                "isPreviewAvailable": true,
                "name": "Notice - Notice of Orders from May 10, 2022 Hearing",
                "object": "CaseDocument",
                "pages": 5,
                "parentDocumentId": null,
                "previewDocument": {
                  "addedToLibraryDate": null,
                  "downloadAPI": null,
                  "inLibrary": false,
                  "object": "PreviewDocument"
                },
                "price": 6.25,
                "sortOrder": 19,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCagfe334e73ea63",
                "childDocumentIdArray": [],
                "description": "5/26/2022: PR_General Probate - Proposed Order Rejected",
                "documentFiledDate": "2022-05-26T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2022-06-30T19:26:48+00:00",
                "inLibrary": false,
                "isPreviewAvailable": true,
                "name": "PR_General Probate - Proposed Order Rejected",
                "object": "CaseDocument",
                "pages": 1,
                "parentDocumentId": null,
                "previewDocument": {
                  "addedToLibraryDate": null,
                  "downloadAPI": null,
                  "inLibrary": false,
                  "object": "PreviewDocument"
                },
                "price": 1.25,
                "sortOrder": 18,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCagb13ec1c083cb",
                "childDocumentIdArray": [],
                "description": "5/26/2022: Appeal - Ntc Designating Record of Appeal APP-003/010/103 - RESPONDENT'S \"U2\" Appeal - Ntc Designating Record of Appeal APP-003/010/103",
                "documentFiledDate": "2022-05-26T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2022-06-30T19:26:48+00:00",
                "inLibrary": false,
                "isPreviewAvailable": true,
                "name": "Appeal - Ntc Designating Record of Appeal APP-003/010/103 - RESPONDENT'S \"U2\" Appeal - Ntc Designating Record of Appeal APP-003/010/103",
                "object": "CaseDocument",
                "pages": 34,
                "parentDocumentId": null,
                "previewDocument": {
                  "addedToLibraryDate": null,
                  "downloadAPI": null,
                  "inLibrary": false,
                  "object": "PreviewDocument"
                },
                "price": 20.75,
                "sortOrder": 17,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCag0a60ff61fe3b",
                "childDocumentIdArray": [],
                "description": "5/26/2022: Notice - Ruling",
                "documentFiledDate": "2022-05-26T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2022-06-30T19:26:48+00:00",
                "inLibrary": false,
                "isPreviewAvailable": true,
                "name": "Notice - Ruling",
                "object": "CaseDocument",
                "pages": 6,
                "parentDocumentId": null,
                "previewDocument": {
                  "addedToLibraryDate": null,
                  "downloadAPI": null,
                  "inLibrary": false,
                  "object": "PreviewDocument"
                },
                "price": 6.75,
                "sortOrder": 16,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCag55c3546aed28",
                "childDocumentIdArray": [],
                "description": "5/26/2022: PR_General Probate - Proposed Order Rejected",
                "documentFiledDate": "2022-05-26T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2022-06-30T19:26:48+00:00",
                "inLibrary": false,
                "isPreviewAvailable": true,
                "name": "PR_General Probate - Proposed Order Rejected",
                "object": "CaseDocument",
                "pages": 1,
                "parentDocumentId": null,
                "previewDocument": {
                  "addedToLibraryDate": null,
                  "downloadAPI": null,
                  "inLibrary": false,
                  "object": "PreviewDocument"
                },
                "price": 1.25,
                "sortOrder": 15,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCag93d9d26de910",
                "childDocumentIdArray": [],
                "description": "6/6/2022: Order",
                "documentFiledDate": "2022-06-06T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2022-06-30T19:26:48+00:00",
                "inLibrary": false,
                "isPreviewAvailable": true,
                "name": "Order",
                "object": "CaseDocument",
                "pages": 4,
                "parentDocumentId": null,
                "previewDocument": {
                  "addedToLibraryDate": null,
                  "downloadAPI": null,
                  "inLibrary": false,
                  "object": "PreviewDocument"
                },
                "price": 5,
                "sortOrder": 14,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCage75344d8b57c",
                "childDocumentIdArray": [],
                "description": "6/7/2022: Notice - Ruling",
                "documentFiledDate": "2022-06-07T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2022-06-30T19:26:48+00:00",
                "inLibrary": false,
                "isPreviewAvailable": true,
                "name": "Notice - Ruling",
                "object": "CaseDocument",
                "pages": 9,
                "parentDocumentId": null,
                "previewDocument": {
                  "addedToLibraryDate": null,
                  "downloadAPI": null,
                  "inLibrary": false,
                  "object": "PreviewDocument"
                },
                "price": 8.25,
                "sortOrder": 13,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCag4c49edfcfb25",
                "childDocumentIdArray": [],
                "description": "6/20/2022: PR_General Probate - Appeal - Notice of Default Issued",
                "documentFiledDate": "2022-06-20T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2022-06-30T19:26:48+00:00",
                "inLibrary": false,
                "isPreviewAvailable": true,
                "name": "PR_General Probate - Appeal - Notice of Default Issued",
                "object": "CaseDocument",
                "pages": 3,
                "parentDocumentId": null,
                "previewDocument": {
                  "addedToLibraryDate": null,
                  "downloadAPI": null,
                  "inLibrary": false,
                  "object": "PreviewDocument"
                },
                "price": 3.75,
                "sortOrder": 12,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCag89e471e55609",
                "childDocumentIdArray": [],
                "description": "6/20/2022: Appeal - Notice of Default Issued - \"U1\"  NOA 4/29/22",
                "documentFiledDate": "2022-06-20T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2022-06-30T19:26:48+00:00",
                "inLibrary": false,
                "isPreviewAvailable": true,
                "name": "Appeal - Notice of Default Issued - \"U1\"  NOA 4/29/22",
                "object": "CaseDocument",
                "pages": 3,
                "parentDocumentId": null,
                "previewDocument": {
                  "addedToLibraryDate": null,
                  "downloadAPI": null,
                  "inLibrary": false,
                  "object": "PreviewDocument"
                },
                "price": 3.75,
                "sortOrder": 11,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCag41eaeef03ab9",
                "childDocumentIdArray": [],
                "description": "6/20/2022: Appeal - Notice of Default Issued - \"U2\"    APPELLANT",
                "documentFiledDate": "2022-06-20T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2022-06-30T19:26:48+00:00",
                "inLibrary": false,
                "isPreviewAvailable": true,
                "name": "Appeal - Notice of Default Issued - \"U2\"    APPELLANT",
                "object": "CaseDocument",
                "pages": 3,
                "parentDocumentId": null,
                "previewDocument": {
                  "addedToLibraryDate": null,
                  "downloadAPI": null,
                  "inLibrary": false,
                  "object": "PreviewDocument"
                },
                "price": 3.75,
                "sortOrder": 10,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCag69abce2b13fe",
                "childDocumentIdArray": [],
                "description": "6/22/2022: Statement - Separate Statement in Opposition to Motion for Summary Judgment",
                "documentFiledDate": "2022-06-22T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2022-06-30T19:26:48+00:00",
                "inLibrary": false,
                "isPreviewAvailable": true,
                "name": "Statement - Separate Statement in Opposition to Motion for Summary Judgment",
                "object": "CaseDocument",
                "pages": 30,
                "parentDocumentId": null,
                "previewDocument": {
                  "addedToLibraryDate": null,
                  "downloadAPI": null,
                  "inLibrary": false,
                  "object": "PreviewDocument"
                },
                "price": 18.75,
                "sortOrder": 9,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCag6d057bf4ce51",
                "childDocumentIdArray": [],
                "description": "6/22/2022: Notice - Notice of Material Filed Under Seal",
                "documentFiledDate": "2022-06-22T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2022-06-30T19:26:48+00:00",
                "inLibrary": false,
                "isPreviewAvailable": true,
                "name": "Notice - Notice of Material Filed Under Seal",
                "object": "CaseDocument",
                "pages": 4,
                "parentDocumentId": null,
                "previewDocument": {
                  "addedToLibraryDate": null,
                  "downloadAPI": null,
                  "inLibrary": false,
                  "object": "PreviewDocument"
                },
                "price": 5,
                "sortOrder": 8,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCage87feb3ca031",
                "childDocumentIdArray": [],
                "description": "6/22/2022: Opposition - Opposition to Motion for Summary Judgment",
                "documentFiledDate": "2022-06-22T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2022-06-30T19:26:48+00:00",
                "inLibrary": false,
                "isPreviewAvailable": true,
                "name": "Opposition - Opposition to Motion for Summary Judgment",
                "object": "CaseDocument",
                "pages": 13,
                "parentDocumentId": null,
                "previewDocument": {
                  "addedToLibraryDate": null,
                  "downloadAPI": null,
                  "inLibrary": false,
                  "object": "PreviewDocument"
                },
                "price": 10.25,
                "sortOrder": 7,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCag7ae18870e3f4",
                "childDocumentIdArray": [],
                "description": "6/22/2022: Declaration - Declaration in Support of Opposition to Summary Judgment",
                "documentFiledDate": "2022-06-22T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2022-06-30T19:26:48+00:00",
                "inLibrary": false,
                "isPreviewAvailable": true,
                "name": "Declaration - Declaration in Support of Opposition to Summary Judgment",
                "object": "CaseDocument",
                "pages": 42,
                "parentDocumentId": null,
                "previewDocument": {
                  "addedToLibraryDate": null,
                  "downloadAPI": null,
                  "inLibrary": false,
                  "object": "PreviewDocument"
                },
                "price": 24.75,
                "sortOrder": 6,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCagcabcd0c55e44",
                "childDocumentIdArray": [],
                "description": "6/22/2022: Appeal - Notice of Default Issued - \"U2\"   RESP  NOA  4/29/22",
                "documentFiledDate": "2022-06-22T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2022-06-30T19:26:48+00:00",
                "inLibrary": false,
                "isPreviewAvailable": true,
                "name": "Appeal - Notice of Default Issued - \"U2\"   RESP  NOA  4/29/22",
                "object": "CaseDocument",
                "pages": 4,
                "parentDocumentId": null,
                "previewDocument": {
                  "addedToLibraryDate": null,
                  "downloadAPI": null,
                  "inLibrary": false,
                  "object": "PreviewDocument"
                },
                "price": 5,
                "sortOrder": 5,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCage02daf533ad9",
                "childDocumentIdArray": [],
                "description": "6/23/2022: Declaration - Declarations in Support of Motion for Summary Judgment [ portions of document redacted pursuant to protective over]",
                "documentFiledDate": "2022-06-23T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2022-06-30T19:26:48+00:00",
                "inLibrary": false,
                "isPreviewAvailable": true,
                "name": "Declaration - Declarations in Support of Motion for Summary Judgment [ portions of document redacted pursuant to protective over]",
                "object": "CaseDocument",
                "pages": 124,
                "parentDocumentId": null,
                "previewDocument": {
                  "addedToLibraryDate": null,
                  "downloadAPI": null,
                  "inLibrary": false,
                  "object": "PreviewDocument"
                },
                "price": 50,
                "sortOrder": 4,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCagcb8c16b1bf0e",
                "childDocumentIdArray": [],
                "description": "6/23/2022: Notice - Notice of Documents Filed Under Seal",
                "documentFiledDate": "2022-06-23T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2022-06-30T19:26:48+00:00",
                "inLibrary": false,
                "isPreviewAvailable": true,
                "name": "Notice - Notice of Documents Filed Under Seal",
                "object": "CaseDocument",
                "pages": 4,
                "parentDocumentId": null,
                "previewDocument": {
                  "addedToLibraryDate": null,
                  "downloadAPI": null,
                  "inLibrary": false,
                  "object": "PreviewDocument"
                },
                "price": 5,
                "sortOrder": 3,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCag44175c9e217f",
                "childDocumentIdArray": [],
                "description": "6/23/2022: Statement - Statement of Undisputed Facts in Support of Summary Judgment",
                "documentFiledDate": "2022-06-23T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2022-06-30T19:26:48+00:00",
                "inLibrary": false,
                "isPreviewAvailable": true,
                "name": "Statement - Statement of Undisputed Facts in Support of Summary Judgment",
                "object": "CaseDocument",
                "pages": 13,
                "parentDocumentId": null,
                "previewDocument": {
                  "addedToLibraryDate": null,
                  "downloadAPI": null,
                  "inLibrary": false,
                  "object": "PreviewDocument"
                },
                "price": 10.25,
                "sortOrder": 2,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCag78de67a10e0c",
                "childDocumentIdArray": [],
                "description": "6/23/2022: Motion - Summary Judgment - MICHAEL VELCHEREAN S NOTICE OF MOTION AND MOTION FOR SUMMARY ADJUDICATION RE WILL CONTEST",
                "documentFiledDate": "2022-06-23T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2022-06-30T19:26:48+00:00",
                "inLibrary": false,
                "isPreviewAvailable": true,
                "name": "Motion - Summary Judgment - MICHAEL VELCHEREAN S NOTICE OF MOTION AND MOTION FOR SUMMARY ADJUDICATION RE WILL CONTEST",
                "object": "CaseDocument",
                "pages": 29,
                "parentDocumentId": null,
                "previewDocument": {
                  "addedToLibraryDate": null,
                  "downloadAPI": null,
                  "inLibrary": false,
                  "object": "PreviewDocument"
                },
                "price": 18.25,
                "sortOrder": 1,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCag4447d385e0cb",
                "childDocumentIdArray": [],
                "description": "4/18/2022: Notice - Ruling - Notice of final Ruling awarding moving parties",
                "documentFiledDate": "2022-04-18T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2022-04-19T09:39:11+00:00",
                "inLibrary": false,
                "isPreviewAvailable": true,
                "name": "Notice - Ruling - Notice of final Ruling awarding moving parties",
                "object": "CaseDocument",
                "pages": 17,
                "parentDocumentId": null,
                "previewDocument": {
                  "addedToLibraryDate": null,
                  "downloadAPI": null,
                  "inLibrary": false,
                  "object": "PreviewDocument"
                },
                "price": 12.25,
                "sortOrder": 1,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCag1c1b41cae88f",
                "childDocumentIdArray": [],
                "description": "4/12/2022: Statement - SEPARATE STATEMENT OF UNDISPUTED MATERIAL FACTS SUPPORTING MOTION FOR SUMMARY JUDGMENT OR, ALTERNATIVELY, SUMMARY ADJUDICATION OF ISSUES",
                "documentFiledDate": "2022-04-12T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2022-04-16T07:30:53+00:00",
                "inLibrary": false,
                "isPreviewAvailable": true,
                "name": "Statement - SEPARATE STATEMENT OF UNDISPUTED MATERIAL FACTS SUPPORTING MOTION FOR SUMMARY JUDGMENT OR, ALTERNATIVELY, SUMMARY ADJUDICATION OF ISSUES",
                "object": "CaseDocument",
                "pages": 16,
                "parentDocumentId": null,
                "previewDocument": {
                  "addedToLibraryDate": null,
                  "downloadAPI": null,
                  "inLibrary": false,
                  "object": "PreviewDocument"
                },
                "price": 11.75,
                "sortOrder": 3,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCagbbcee52c66f7",
                "childDocumentIdArray": [],
                "description": "4/12/2022: Notice - Notice Re Material Filed Under Seal",
                "documentFiledDate": "2022-04-12T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2022-04-16T07:30:53+00:00",
                "inLibrary": false,
                "isPreviewAvailable": true,
                "name": "Notice - Notice Re Material Filed Under Seal",
                "object": "CaseDocument",
                "pages": 5,
                "parentDocumentId": null,
                "previewDocument": {
                  "addedToLibraryDate": null,
                  "downloadAPI": null,
                  "inLibrary": false,
                  "object": "PreviewDocument"
                },
                "price": 6.25,
                "sortOrder": 2,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCag91c7d7dae806",
                "childDocumentIdArray": [],
                "description": "4/12/2022: Motion - Summary Judgment",
                "documentFiledDate": "2022-04-12T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2022-04-16T07:30:53+00:00",
                "inLibrary": false,
                "isPreviewAvailable": true,
                "name": "Motion - Summary Judgment",
                "object": "CaseDocument",
                "pages": 16,
                "parentDocumentId": null,
                "previewDocument": {
                  "addedToLibraryDate": null,
                  "downloadAPI": null,
                  "inLibrary": false,
                  "object": "PreviewDocument"
                },
                "price": 11.75,
                "sortOrder": 1,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCag0f4385082351",
                "childDocumentIdArray": [],
                "description": "3/28/2022: Declaration - of Matt Albee re:Tentative Ruling",
                "documentFiledDate": "2022-03-28T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2022-04-13T05:57:39+00:00",
                "inLibrary": false,
                "isPreviewAvailable": true,
                "name": "Declaration - of Matt Albee re:Tentative Ruling",
                "object": "CaseDocument",
                "pages": 7,
                "parentDocumentId": null,
                "previewDocument": {
                  "addedToLibraryDate": null,
                  "downloadAPI": null,
                  "inLibrary": false,
                  "object": "PreviewDocument"
                },
                "price": 7.25,
                "sortOrder": 3,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCag0cb44978a3a8",
                "childDocumentIdArray": [],
                "description": "3/29/2022: Notice - Ruling - Notice of Ruling",
                "documentFiledDate": "2022-03-29T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2022-04-13T05:57:39+00:00",
                "inLibrary": false,
                "isPreviewAvailable": true,
                "name": "Notice - Ruling - Notice of Ruling",
                "object": "CaseDocument",
                "pages": 15,
                "parentDocumentId": null,
                "previewDocument": {
                  "addedToLibraryDate": null,
                  "downloadAPI": null,
                  "inLibrary": false,
                  "object": "PreviewDocument"
                },
                "price": 11.25,
                "sortOrder": 2,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCag88f7f71ce75c",
                "childDocumentIdArray": [],
                "description": "4/1/2022: Objection - RESPONDENT, MICHAEL VELCHEREAN???S OBJECTIONS TO MOVING PARTIES??? SUPPLEMENTAL DECLARATION OF MATT ALBEE RE TENTATIVE RULING ON MOTION FOR ORDER AUTHORIZING IMAGING OF ELECTRONIC DEVICES",
                "documentFiledDate": "2022-04-01T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2022-04-13T05:57:39+00:00",
                "inLibrary": false,
                "isPreviewAvailable": true,
                "name": "Objection - RESPONDENT, MICHAEL VELCHEREAN???S OBJECTIONS TO MOVING PARTIES??? SUPPLEMENTAL DECLARATION OF MATT ALBEE RE TENTATIVE RULING ON MOTION FOR ORDER AUTHORIZING IMAGING OF ELECTRONIC DEVICES",
                "object": "CaseDocument",
                "pages": 7,
                "parentDocumentId": null,
                "previewDocument": {
                  "addedToLibraryDate": null,
                  "downloadAPI": null,
                  "inLibrary": false,
                  "object": "PreviewDocument"
                },
                "price": 7.25,
                "sortOrder": 1,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCagcd66ee0d0742",
                "childDocumentIdArray": [],
                "description": "3/18/2022: Declaration - Declaration",
                "documentFiledDate": "2022-03-18T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2022-03-28T21:40:00+00:00",
                "inLibrary": false,
                "isPreviewAvailable": true,
                "name": "Declaration - Declaration",
                "object": "CaseDocument",
                "pages": 83,
                "parentDocumentId": null,
                "previewDocument": {
                  "addedToLibraryDate": null,
                  "downloadAPI": null,
                  "inLibrary": false,
                  "object": "PreviewDocument"
                },
                "price": 45.25,
                "sortOrder": 3,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCage7570e0add90",
                "childDocumentIdArray": [],
                "description": "3/22/2022: Notice - Ruling - ON MOTION TO COMPEL PRODUCTION OF DOCUMENTS AND RESPONSE CONFIRMING COMPLIANCE AND FOR MONETARY SANCTION",
                "documentFiledDate": "2022-03-22T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2022-03-28T21:40:00+00:00",
                "inLibrary": false,
                "isPreviewAvailable": true,
                "name": "Notice - Ruling - ON MOTION TO COMPEL PRODUCTION OF DOCUMENTS AND RESPONSE CONFIRMING COMPLIANCE AND FOR MONETARY SANCTION",
                "object": "CaseDocument",
                "pages": 16,
                "parentDocumentId": null,
                "previewDocument": {
                  "addedToLibraryDate": null,
                  "downloadAPI": null,
                  "inLibrary": false,
                  "object": "PreviewDocument"
                },
                "price": 11.75,
                "sortOrder": 2,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCage20d62980daa",
                "childDocumentIdArray": [],
                "description": "3/22/2022: Notice - Ruling",
                "documentFiledDate": "2022-03-22T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2022-03-28T21:40:00+00:00",
                "inLibrary": false,
                "isPreviewAvailable": true,
                "name": "Notice - Ruling",
                "object": "CaseDocument",
                "pages": 17,
                "parentDocumentId": null,
                "previewDocument": {
                  "addedToLibraryDate": null,
                  "downloadAPI": null,
                  "inLibrary": false,
                  "object": "PreviewDocument"
                },
                "price": 12.25,
                "sortOrder": 1,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCag27a8e144f9ab",
                "childDocumentIdArray": [],
                "description": "3/14/2022: Notice - NOTICE OF WITHDRAWAL OF MOTION TO COMPEL RESPONSES TO SPECIAL INTERROGATORIES (SET THREE) FILED ON JULY 1, 2021 AND REQUEST FOR SANCTIONS AGAINST MING-CHAO HUANG",
                "documentFiledDate": "2022-03-14T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2022-03-16T07:42:35+00:00",
                "inLibrary": false,
                "isPreviewAvailable": true,
                "name": "Notice - NOTICE OF WITHDRAWAL OF MOTION TO COMPEL RESPONSES TO SPECIAL INTERROGATORIES (SET THREE) FILED ON JULY 1, 2021 AND REQUEST FOR SANCTIONS AGAINST MING-CHAO HUANG",
                "object": "CaseDocument",
                "pages": 3,
                "parentDocumentId": null,
                "previewDocument": {
                  "addedToLibraryDate": null,
                  "downloadAPI": null,
                  "inLibrary": false,
                  "object": "PreviewDocument"
                },
                "price": 3.75,
                "sortOrder": 7,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCagda13ef374f67",
                "childDocumentIdArray": [],
                "description": "3/14/2022: Notice - NOTICE OF WITHDRAWAL OF MOTION TO COMPEL RESPONSES TO FORM INTERROGATORIES (SET TWO) FILED ON JULY 1, 2021 AND REQUEST FOR SANCTIONS AGAINST MING-CHAO HUANG",
                "documentFiledDate": "2022-03-14T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2022-03-16T07:42:35+00:00",
                "inLibrary": false,
                "isPreviewAvailable": true,
                "name": "Notice - NOTICE OF WITHDRAWAL OF MOTION TO COMPEL RESPONSES TO FORM INTERROGATORIES (SET TWO) FILED ON JULY 1, 2021 AND REQUEST FOR SANCTIONS AGAINST MING-CHAO HUANG",
                "object": "CaseDocument",
                "pages": 3,
                "parentDocumentId": null,
                "previewDocument": {
                  "addedToLibraryDate": null,
                  "downloadAPI": null,
                  "inLibrary": false,
                  "object": "PreviewDocument"
                },
                "price": 3.75,
                "sortOrder": 6,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCag82e0fbc6364f",
                "childDocumentIdArray": [],
                "description": "3/14/2022: Notice - NOTICE OF WITHDRAWAL OF MOTION TO COMPEL RESPONSES TO REQUEST FOR ADMISSIONS (SET TWO) FILED ON JULY 1, 2021 AND REQUEST FOR SANCTIONS AGAINST MING-CHAO HUANG",
                "documentFiledDate": "2022-03-14T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2022-03-16T07:42:35+00:00",
                "inLibrary": false,
                "isPreviewAvailable": true,
                "name": "Notice - NOTICE OF WITHDRAWAL OF MOTION TO COMPEL RESPONSES TO REQUEST FOR ADMISSIONS (SET TWO) FILED ON JULY 1, 2021 AND REQUEST FOR SANCTIONS AGAINST MING-CHAO HUANG",
                "object": "CaseDocument",
                "pages": 3,
                "parentDocumentId": null,
                "previewDocument": {
                  "addedToLibraryDate": null,
                  "downloadAPI": null,
                  "inLibrary": false,
                  "object": "PreviewDocument"
                },
                "price": 3.75,
                "sortOrder": 5,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCagd42776cf7b70",
                "childDocumentIdArray": [],
                "description": "3/14/2022: Proof of Service - Proof of Service",
                "documentFiledDate": "2022-03-14T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2022-03-16T07:42:35+00:00",
                "inLibrary": false,
                "isPreviewAvailable": true,
                "name": "Proof of Service - Proof of Service",
                "object": "CaseDocument",
                "pages": 6,
                "parentDocumentId": null,
                "previewDocument": {
                  "addedToLibraryDate": null,
                  "downloadAPI": null,
                  "inLibrary": false,
                  "object": "PreviewDocument"
                },
                "price": 6.75,
                "sortOrder": 4,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCag753efafa129f",
                "childDocumentIdArray": [],
                "description": "3/14/2022: Notice - NOTICE OF WITHDRAWAL OF MOTION TO COMPEL RESPONSES TO REQUEST FOR ADMISSIONS (SET TWO) FILED ON JULY 1, 2021 AND REQUEST FOR SANCTIONS AGAINST MEI JUNG LIN",
                "documentFiledDate": "2022-03-14T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2022-03-16T07:42:35+00:00",
                "inLibrary": false,
                "isPreviewAvailable": true,
                "name": "Notice - NOTICE OF WITHDRAWAL OF MOTION TO COMPEL RESPONSES TO REQUEST FOR ADMISSIONS (SET TWO) FILED ON JULY 1, 2021 AND REQUEST FOR SANCTIONS AGAINST MEI JUNG LIN",
                "object": "CaseDocument",
                "pages": 3,
                "parentDocumentId": null,
                "previewDocument": {
                  "addedToLibraryDate": null,
                  "downloadAPI": null,
                  "inLibrary": false,
                  "object": "PreviewDocument"
                },
                "price": 3.75,
                "sortOrder": 3,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCag10d68df0e07e",
                "childDocumentIdArray": [],
                "description": "3/14/2022: Notice - NOTICE OF WITHDRAWAL OF MOTION TO COMPEL RESPONSES TO FORM INTERROGATORIES (SET TWO) FILED ON JULY 1, 2021 AND REQUEST FOR SANCTIONS AGAINST MEI JUNG LIN",
                "documentFiledDate": "2022-03-14T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2022-03-16T07:42:35+00:00",
                "inLibrary": false,
                "isPreviewAvailable": true,
                "name": "Notice - NOTICE OF WITHDRAWAL OF MOTION TO COMPEL RESPONSES TO FORM INTERROGATORIES (SET TWO) FILED ON JULY 1, 2021 AND REQUEST FOR SANCTIONS AGAINST MEI JUNG LIN",
                "object": "CaseDocument",
                "pages": 3,
                "parentDocumentId": null,
                "previewDocument": {
                  "addedToLibraryDate": null,
                  "downloadAPI": null,
                  "inLibrary": false,
                  "object": "PreviewDocument"
                },
                "price": 3.75,
                "sortOrder": 2,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCag22cfbef31894",
                "childDocumentIdArray": [],
                "description": "3/14/2022: Notice - NOTICE OF WITHDRAWAL OF MOTION TO COMPEL RESPONSES TO SPECIAL INTERROGATORIES (SET THREE) FILED ON JULY 1, 2021 AND REQUEST FOR SANCTIONS AGAINST MEI JUNG LIN",
                "documentFiledDate": "2022-03-14T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2022-03-16T07:42:35+00:00",
                "inLibrary": false,
                "isPreviewAvailable": true,
                "name": "Notice - NOTICE OF WITHDRAWAL OF MOTION TO COMPEL RESPONSES TO SPECIAL INTERROGATORIES (SET THREE) FILED ON JULY 1, 2021 AND REQUEST FOR SANCTIONS AGAINST MEI JUNG LIN",
                "object": "CaseDocument",
                "pages": 3,
                "parentDocumentId": null,
                "previewDocument": {
                  "addedToLibraryDate": null,
                  "downloadAPI": null,
                  "inLibrary": false,
                  "object": "PreviewDocument"
                },
                "price": 3.75,
                "sortOrder": 1,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCag1e8b06f909f1",
                "childDocumentIdArray": [],
                "description": "11/12/2021: Notice - Hearing - Notice of Hearing",
                "documentFiledDate": "2021-11-12T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2022-03-10T07:56:56+00:00",
                "inLibrary": false,
                "isPreviewAvailable": true,
                "name": "Notice - Hearing - Notice of Hearing",
                "object": "CaseDocument",
                "pages": 3,
                "parentDocumentId": null,
                "previewDocument": {
                  "addedToLibraryDate": null,
                  "downloadAPI": null,
                  "inLibrary": false,
                  "object": "PreviewDocument"
                },
                "price": 3.75,
                "sortOrder": 121,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCag5af97fb28a67",
                "childDocumentIdArray": [],
                "description": "2/14/2022: Substitution of Attorney",
                "documentFiledDate": "2022-02-14T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2022-03-10T07:56:55+00:00",
                "inLibrary": false,
                "isPreviewAvailable": true,
                "name": "Substitution of Attorney",
                "object": "CaseDocument",
                "pages": 3,
                "parentDocumentId": null,
                "previewDocument": {
                  "addedToLibraryDate": null,
                  "downloadAPI": null,
                  "inLibrary": false,
                  "object": "PreviewDocument"
                },
                "price": 3.75,
                "sortOrder": 33,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCagb557e1f30b14",
                "childDocumentIdArray": [],
                "description": "2/22/2022: Minute Order",
                "documentFiledDate": "2022-02-22T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2022-03-10T07:56:55+00:00",
                "inLibrary": false,
                "isPreviewAvailable": true,
                "name": "Minute Order",
                "object": "CaseDocument",
                "pages": 1,
                "parentDocumentId": null,
                "previewDocument": {
                  "addedToLibraryDate": null,
                  "downloadAPI": null,
                  "inLibrary": false,
                  "object": "PreviewDocument"
                },
                "price": 1.25,
                "sortOrder": 32,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCag85c33ca27f18",
                "childDocumentIdArray": [],
                "description": "2/24/2022: Objection - Subsequent Petition Decedent's Estate - Response & Objection to Ptn re Personal Property",
                "documentFiledDate": "2022-02-24T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2022-03-10T07:56:55+00:00",
                "inLibrary": false,
                "isPreviewAvailable": true,
                "name": "Objection - Subsequent Petition Decedent's Estate - Response & Objection to Ptn re Personal Property",
                "object": "CaseDocument",
                "pages": 22,
                "parentDocumentId": null,
                "previewDocument": {
                  "addedToLibraryDate": null,
                  "downloadAPI": null,
                  "inLibrary": false,
                  "object": "PreviewDocument"
                },
                "price": 14.75,
                "sortOrder": 31,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCag8bab7af33b01",
                "childDocumentIdArray": [],
                "description": "2/24/2022: Objection - Subsequent Petition Decedent's Estate - Response & Objection to Ptn re Suspension/Removal",
                "documentFiledDate": "2022-02-24T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2022-03-10T07:56:55+00:00",
                "inLibrary": false,
                "isPreviewAvailable": true,
                "name": "Objection - Subsequent Petition Decedent's Estate - Response & Objection to Ptn re Suspension/Removal",
                "object": "CaseDocument",
                "pages": 60,
                "parentDocumentId": null,
                "previewDocument": {
                  "addedToLibraryDate": null,
                  "downloadAPI": null,
                  "inLibrary": false,
                  "object": "PreviewDocument"
                },
                "price": 33.75,
                "sortOrder": 30,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCagefce47d29e55",
                "childDocumentIdArray": [],
                "description": "2/25/2022: Request -  Judicial Notice - Request for Judicial Notice",
                "documentFiledDate": "2022-02-25T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2022-03-10T07:56:55+00:00",
                "inLibrary": false,
                "isPreviewAvailable": true,
                "name": "Request -  Judicial Notice - Request for Judicial Notice",
                "object": "CaseDocument",
                "pages": 821,
                "parentDocumentId": null,
                "previewDocument": {
                  "addedToLibraryDate": null,
                  "downloadAPI": null,
                  "inLibrary": false,
                  "object": "PreviewDocument"
                },
                "price": 50,
                "sortOrder": 29,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCaga4e3c0b2b177",
                "childDocumentIdArray": [],
                "description": "2/28/2022: Objection - Subsequent Petition Decedent's Estate - to Petition for Order Directing Special Admin to Take Certain Actions with Respect to Personal Property",
                "documentFiledDate": "2022-02-28T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2022-03-10T07:56:55+00:00",
                "inLibrary": false,
                "isPreviewAvailable": true,
                "name": "Objection - Subsequent Petition Decedent's Estate - to Petition for Order Directing Special Admin to Take Certain Actions with Respect to Personal Property",
                "object": "CaseDocument",
                "pages": 15,
                "parentDocumentId": null,
                "previewDocument": {
                  "addedToLibraryDate": null,
                  "downloadAPI": null,
                  "inLibrary": false,
                  "object": "PreviewDocument"
                },
                "price": 11.25,
                "sortOrder": 28,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCaged668ad59bd9",
                "childDocumentIdArray": [],
                "description": "2/28/2022: Objection - Subsequent Petition Decedent's Estate - Response and Objection - Petition for Family Allowance",
                "documentFiledDate": "2022-02-28T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2022-03-10T07:56:55+00:00",
                "inLibrary": false,
                "isPreviewAvailable": true,
                "name": "Objection - Subsequent Petition Decedent's Estate - Response and Objection - Petition for Family Allowance",
                "object": "CaseDocument",
                "pages": 18,
                "parentDocumentId": null,
                "previewDocument": {
                  "addedToLibraryDate": null,
                  "downloadAPI": null,
                  "inLibrary": false,
                  "object": "PreviewDocument"
                },
                "price": 12.75,
                "sortOrder": 27,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCag531ef82a0914",
                "childDocumentIdArray": [],
                "description": "2/28/2022: Objection - Subsequent Petition Decedent's Estate - to  Petition to Remove Administrator",
                "documentFiledDate": "2022-02-28T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2022-03-10T07:56:55+00:00",
                "inLibrary": false,
                "isPreviewAvailable": true,
                "name": "Objection - Subsequent Petition Decedent's Estate - to  Petition to Remove Administrator",
                "object": "CaseDocument",
                "pages": 16,
                "parentDocumentId": null,
                "previewDocument": {
                  "addedToLibraryDate": null,
                  "downloadAPI": null,
                  "inLibrary": false,
                  "object": "PreviewDocument"
                },
                "price": 11.75,
                "sortOrder": 26,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCaga518c9a24dc1",
                "childDocumentIdArray": [],
                "description": "2/28/2022: Miscellaneous Document - NOTICE OF MATERIAL FILED UNDER SEAL PURSUANT TO PROTECTIVE ORDER RE OPPOSITION TO MOTION FOR ORDER AUTHORIZING IMAGING OF DEVICES (Comment)",
                "documentFiledDate": "2022-02-28T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2022-03-10T07:56:55+00:00",
                "inLibrary": false,
                "isPreviewAvailable": true,
                "name": "Miscellaneous Document - NOTICE OF MATERIAL FILED UNDER SEAL PURSUANT TO PROTECTIVE ORDER RE OPPOSITION TO MOTION FOR ORDER AUTHORIZING IMAGING OF DEVICES (Comment)",
                "object": "CaseDocument",
                "pages": 5,
                "parentDocumentId": null,
                "previewDocument": {
                  "addedToLibraryDate": null,
                  "downloadAPI": null,
                  "inLibrary": false,
                  "object": "PreviewDocument"
                },
                "price": 6.25,
                "sortOrder": 25,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCag98a32a9f9481",
                "childDocumentIdArray": [],
                "description": "2/28/2022: Opposition - FANFARE TRADING, INC.???S OPPOSITION TO MOTION FOR ORDER AUTHORIZING IMAGING OF ELECTRONIC DEVICES TO ENFORCE PRIOR ORDERS; DECLARATION OF MICHAEL VELCHEREAN (Oppositions)",
                "documentFiledDate": "2022-02-28T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2022-03-10T07:56:55+00:00",
                "inLibrary": false,
                "isPreviewAvailable": true,
                "name": "Opposition - FANFARE TRADING, INC.???S OPPOSITION TO MOTION FOR ORDER AUTHORIZING IMAGING OF ELECTRONIC DEVICES TO ENFORCE PRIOR ORDERS; DECLARATION OF MICHAEL VELCHEREAN (Oppositions)",
                "object": "CaseDocument",
                "pages": 13,
                "parentDocumentId": null,
                "previewDocument": {
                  "addedToLibraryDate": null,
                  "downloadAPI": null,
                  "inLibrary": false,
                  "object": "PreviewDocument"
                },
                "price": 10.25,
                "sortOrder": 24,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCagcd25de38608c",
                "childDocumentIdArray": [],
                "description": "3/1/2022: Probate Minute Order - Probate Master Minute Order",
                "documentFiledDate": "2022-03-01T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2022-03-10T07:56:55+00:00",
                "inLibrary": false,
                "isPreviewAvailable": true,
                "name": "Probate Minute Order - Probate Master Minute Order",
                "object": "CaseDocument",
                "pages": 1,
                "parentDocumentId": null,
                "previewDocument": {
                  "addedToLibraryDate": null,
                  "downloadAPI": null,
                  "inLibrary": false,
                  "object": "PreviewDocument"
                },
                "price": 1.25,
                "sortOrder": 23,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCagb69b04e6600b",
                "childDocumentIdArray": [],
                "description": "3/1/2022: Minute Order",
                "documentFiledDate": "2022-03-01T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2022-03-10T07:56:55+00:00",
                "inLibrary": false,
                "isPreviewAvailable": true,
                "name": "Minute Order",
                "object": "CaseDocument",
                "pages": 2,
                "parentDocumentId": null,
                "previewDocument": {
                  "addedToLibraryDate": null,
                  "downloadAPI": null,
                  "inLibrary": false,
                  "object": "PreviewDocument"
                },
                "price": 2.5,
                "sortOrder": 22,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCag3298e1930c58",
                "childDocumentIdArray": [],
                "description": "3/1/2022: Probate Minute Order - Probate Master Minute Order",
                "documentFiledDate": "2022-03-01T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2022-03-10T07:56:55+00:00",
                "inLibrary": false,
                "isPreviewAvailable": true,
                "name": "Probate Minute Order - Probate Master Minute Order",
                "object": "CaseDocument",
                "pages": 1,
                "parentDocumentId": null,
                "previewDocument": {
                  "addedToLibraryDate": null,
                  "downloadAPI": null,
                  "inLibrary": false,
                  "object": "PreviewDocument"
                },
                "price": 1.25,
                "sortOrder": 21,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCagb45fdd255143",
                "childDocumentIdArray": [],
                "description": "3/1/2022: Probate Minute Order - Probate Master Minute Order",
                "documentFiledDate": "2022-03-01T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2022-03-10T07:56:55+00:00",
                "inLibrary": false,
                "isPreviewAvailable": true,
                "name": "Probate Minute Order - Probate Master Minute Order",
                "object": "CaseDocument",
                "pages": 1,
                "parentDocumentId": null,
                "previewDocument": {
                  "addedToLibraryDate": null,
                  "downloadAPI": null,
                  "inLibrary": false,
                  "object": "PreviewDocument"
                },
                "price": 1.25,
                "sortOrder": 20,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCag23b7a742f575",
                "childDocumentIdArray": [],
                "description": "3/1/2022: Declaration - Declaration Re Respone and Objection to Petitions ",
                "documentFiledDate": "2022-03-01T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2022-03-10T07:56:55+00:00",
                "inLibrary": false,
                "isPreviewAvailable": true,
                "name": "Declaration - Declaration Re Respone and Objection to Petitions ",
                "object": "CaseDocument",
                "pages": 140,
                "parentDocumentId": null,
                "previewDocument": {
                  "addedToLibraryDate": null,
                  "downloadAPI": null,
                  "inLibrary": false,
                  "object": "PreviewDocument"
                },
                "price": 50,
                "sortOrder": 19,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCag0b11390f60e5",
                "childDocumentIdArray": [],
                "description": "3/1/2022: Probate Minute Order - Probate Master Minute Order",
                "documentFiledDate": "2022-03-01T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2022-03-10T07:56:55+00:00",
                "inLibrary": false,
                "isPreviewAvailable": true,
                "name": "Probate Minute Order - Probate Master Minute Order",
                "object": "CaseDocument",
                "pages": 1,
                "parentDocumentId": null,
                "previewDocument": {
                  "addedToLibraryDate": null,
                  "downloadAPI": null,
                  "inLibrary": false,
                  "object": "PreviewDocument"
                },
                "price": 1.25,
                "sortOrder": 18,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCag4796f7e1d6be",
                "childDocumentIdArray": [],
                "description": "3/1/2022: Probate Minute Order - Probate Master Minute Order",
                "documentFiledDate": "2022-03-01T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2022-03-10T07:56:55+00:00",
                "inLibrary": false,
                "isPreviewAvailable": true,
                "name": "Probate Minute Order - Probate Master Minute Order",
                "object": "CaseDocument",
                "pages": 2,
                "parentDocumentId": null,
                "previewDocument": {
                  "addedToLibraryDate": null,
                  "downloadAPI": null,
                  "inLibrary": false,
                  "object": "PreviewDocument"
                },
                "price": 2.5,
                "sortOrder": 17,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCag9a3186b5f905",
                "childDocumentIdArray": [],
                "description": "3/1/2022: Probate Minute Order - Probate Master Minute Order",
                "documentFiledDate": "2022-03-01T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2022-03-10T07:56:55+00:00",
                "inLibrary": false,
                "isPreviewAvailable": true,
                "name": "Probate Minute Order - Probate Master Minute Order",
                "object": "CaseDocument",
                "pages": 1,
                "parentDocumentId": null,
                "previewDocument": {
                  "addedToLibraryDate": null,
                  "downloadAPI": null,
                  "inLibrary": false,
                  "object": "PreviewDocument"
                },
                "price": 1.25,
                "sortOrder": 16,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCage52bee32c413",
                "childDocumentIdArray": [],
                "description": "3/1/2022: Probate Minute Order - Probate Master Minute Order",
                "documentFiledDate": "2022-03-01T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2022-03-10T07:56:55+00:00",
                "inLibrary": false,
                "isPreviewAvailable": true,
                "name": "Probate Minute Order - Probate Master Minute Order",
                "object": "CaseDocument",
                "pages": 1,
                "parentDocumentId": null,
                "previewDocument": {
                  "addedToLibraryDate": null,
                  "downloadAPI": null,
                  "inLibrary": false,
                  "object": "PreviewDocument"
                },
                "price": 1.25,
                "sortOrder": 15,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCagb598de581d57",
                "childDocumentIdArray": [],
                "description": "3/1/2022: Probate Minute Order - Probate Master Minute Order",
                "documentFiledDate": "2022-03-01T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2022-03-10T07:56:55+00:00",
                "inLibrary": false,
                "isPreviewAvailable": true,
                "name": "Probate Minute Order - Probate Master Minute Order",
                "object": "CaseDocument",
                "pages": 1,
                "parentDocumentId": null,
                "previewDocument": {
                  "addedToLibraryDate": null,
                  "downloadAPI": null,
                  "inLibrary": false,
                  "object": "PreviewDocument"
                },
                "price": 1.25,
                "sortOrder": 14,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCag25968c66f707",
                "childDocumentIdArray": [],
                "description": "3/1/2022: Probate Minute Order - Probate Master Minute Order",
                "documentFiledDate": "2022-03-01T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2022-03-10T07:56:55+00:00",
                "inLibrary": false,
                "isPreviewAvailable": true,
                "name": "Probate Minute Order - Probate Master Minute Order",
                "object": "CaseDocument",
                "pages": 1,
                "parentDocumentId": null,
                "previewDocument": {
                  "addedToLibraryDate": null,
                  "downloadAPI": null,
                  "inLibrary": false,
                  "object": "PreviewDocument"
                },
                "price": 1.25,
                "sortOrder": 13,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCag2ece42cd4210",
                "childDocumentIdArray": [],
                "description": "3/1/2022: Minute Order",
                "documentFiledDate": "2022-03-01T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2022-03-10T07:56:55+00:00",
                "inLibrary": false,
                "isPreviewAvailable": true,
                "name": "Minute Order",
                "object": "CaseDocument",
                "pages": 2,
                "parentDocumentId": null,
                "previewDocument": {
                  "addedToLibraryDate": null,
                  "downloadAPI": null,
                  "inLibrary": false,
                  "object": "PreviewDocument"
                },
                "price": 2.5,
                "sortOrder": 12,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCag76baa68064b7",
                "childDocumentIdArray": [],
                "description": "3/2/2022: Declaration - DECLARATION OF MICHAEL VELCHEREAN IN SUPPORT OF MICHAEL VELCHEREAN???S OPPOSITION TO MOTION FOR ORDER AUTHORIZING IMAGING OF ELECTRONIC DEVICES TO ENFORCE PRIOR ORDERS",
                "documentFiledDate": "2022-03-02T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2022-03-10T07:56:55+00:00",
                "inLibrary": false,
                "isPreviewAvailable": true,
                "name": "Declaration - DECLARATION OF MICHAEL VELCHEREAN IN SUPPORT OF MICHAEL VELCHEREAN???S OPPOSITION TO MOTION FOR ORDER AUTHORIZING IMAGING OF ELECTRONIC DEVICES TO ENFORCE PRIOR ORDERS",
                "object": "CaseDocument",
                "pages": 4,
                "parentDocumentId": null,
                "previewDocument": {
                  "addedToLibraryDate": null,
                  "downloadAPI": null,
                  "inLibrary": false,
                  "object": "PreviewDocument"
                },
                "price": 5,
                "sortOrder": 11,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCag50d89d1d7583",
                "childDocumentIdArray": [],
                "description": "3/2/2022: Proof of Service - Proof of Service",
                "documentFiledDate": "2022-03-02T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2022-03-10T07:56:55+00:00",
                "inLibrary": false,
                "isPreviewAvailable": true,
                "name": "Proof of Service - Proof of Service",
                "object": "CaseDocument",
                "pages": 6,
                "parentDocumentId": null,
                "previewDocument": {
                  "addedToLibraryDate": null,
                  "downloadAPI": null,
                  "inLibrary": false,
                  "object": "PreviewDocument"
                },
                "price": 6.75,
                "sortOrder": 10,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCag77cb2a256efd",
                "childDocumentIdArray": [],
                "description": "3/2/2022: Declaration - DECLARATION OF DEREK ELLINGTON IN SUPPORT OF MICHAEL VELCHEREAN???S OPPOSITION TO MOTION FOR ORDER AUTHORIZING IMAGING OF ELECTRONIC DEVICES TO ENFORCE PRIOR ORDERS",
                "documentFiledDate": "2022-03-02T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2022-03-10T07:56:55+00:00",
                "inLibrary": false,
                "isPreviewAvailable": true,
                "name": "Declaration - DECLARATION OF DEREK ELLINGTON IN SUPPORT OF MICHAEL VELCHEREAN???S OPPOSITION TO MOTION FOR ORDER AUTHORIZING IMAGING OF ELECTRONIC DEVICES TO ENFORCE PRIOR ORDERS",
                "object": "CaseDocument",
                "pages": 10,
                "parentDocumentId": null,
                "previewDocument": {
                  "addedToLibraryDate": null,
                  "downloadAPI": null,
                  "inLibrary": false,
                  "object": "PreviewDocument"
                },
                "price": 8.75,
                "sortOrder": 9,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCagee4a18717ffd",
                "childDocumentIdArray": [],
                "description": "3/2/2022: Notice - Lodging - MICHAEL VELCHEREAN???S NOTICE OF LODGING OF NON-CALIFORNIA AUTHORITIES IN SUPPORT OF OPPOSITION TO MOTION FOR ORDER AUTHORIZING IMAGING OF ELECTRONIC DEVICES TO ENFORCE PRIOR ORDERS",
                "documentFiledDate": "2022-03-02T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2022-03-10T07:56:55+00:00",
                "inLibrary": false,
                "isPreviewAvailable": true,
                "name": "Notice - Lodging - MICHAEL VELCHEREAN???S NOTICE OF LODGING OF NON-CALIFORNIA AUTHORITIES IN SUPPORT OF OPPOSITION TO MOTION FOR ORDER AUTHORIZING IMAGING OF ELECTRONIC DEVICES TO ENFORCE PRIOR ORDERS",
                "object": "CaseDocument",
                "pages": 44,
                "parentDocumentId": null,
                "previewDocument": {
                  "addedToLibraryDate": null,
                  "downloadAPI": null,
                  "inLibrary": false,
                  "object": "PreviewDocument"
                },
                "price": 25.75,
                "sortOrder": 8,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCagea523145c3a6",
                "childDocumentIdArray": [],
                "description": "3/2/2022: Opposition - MICHAEL VELCHEREAN???S OPPOSITION TO MOTION FOR ORDER AUTHORIZING IMAGING OF ELECTRONIC DEVICES TO ENFORCE PRIOR ORDERS",
                "documentFiledDate": "2022-03-02T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2022-03-10T07:56:55+00:00",
                "inLibrary": false,
                "isPreviewAvailable": true,
                "name": "Opposition - MICHAEL VELCHEREAN???S OPPOSITION TO MOTION FOR ORDER AUTHORIZING IMAGING OF ELECTRONIC DEVICES TO ENFORCE PRIOR ORDERS",
                "object": "CaseDocument",
                "pages": 19,
                "parentDocumentId": null,
                "previewDocument": {
                  "addedToLibraryDate": null,
                  "downloadAPI": null,
                  "inLibrary": false,
                  "object": "PreviewDocument"
                },
                "price": 13.25,
                "sortOrder": 7,
                "sourceDataStatus": null
              },
              {
                "addedToLibraryDate": null,
                "caseDocumentId": "CDOCag3c28a03a4cb9",
                "childDocumentIdArray": [],
                "description": "3/2/2022: Declaration - DECLARATION OF ALAN JACKSON IN SUPPORT OF MICHAEL VELCHEREAN???S OPPOSITION TO MOTION FOR ORDER AUTHORIZING IMAGING OF ELECTRONIC DEVICES TO ENFORCE PRIOR ORDERS",
                "documentFiledDate": "2022-03-02T00:00:00+00:00",
                "downloadAPI": null,
                "estimatedOrderDuration": "withinMinutes",
                "firstFetchDate": "2022-03-10T07:56:55+00:00",
                "inLibrary": false,
                "isPreviewAvailable": true,
                "name": "Declaration - DECLARATION OF ALAN JACKSON IN SUPPORT OF MICHAEL VELCHEREAN???S OPPOSITION TO MOTION FOR ORDER AUTHORIZING IMAGING OF ELECTRONIC DEVICES TO ENFORCE PRIOR ORDERS",
                "object": "CaseDocument",
                "pages": 105,
                "parentDocumentId": null,
                "previewDocument": {
                  "addedToLibraryDate": null,
                  "downloadAPI": null,
                  "inLibrary": false,
                  "object": "PreviewDocument"
                },
                "price": 50,
                "sortOrder": 6,
                "sourceDataStatus": null
              }
            ],
            "nextPageAPI": "https://enterpriseapi.unicourt.com/case/CASEar7a26f15e76cf/documents?pageNumber=2",
            "object": "CaseDocuments",
            "pageNumber": 1,
            "totalCount": 814,
            "totalPages": 9
          },
          "caseId": "CASEar7a26f15e76cf",
          "caseName": "HUANG, AMY - DECEDENT",
          "caseNumber": "18STPB11082",
          "caseStats": {
            "allCaseDocumentCount": 814,
            "attorneyCount": 41,
            "caseDocumentInLibraryCount": 0,
            "docketEntryCount": 1852,
            "freeCaseDocumentCount": 0,
            "hearingCount": 22,
            "judgeCount": 3,
            "object": "CaseStats",
            "paidCaseDocumentCount": 814,
            "partyCount": 24,
            "relatedCaseCount": 0
          },
          "caseStatus": {
            "caseClassArray": [
              "Civil",
              "Criminal"
            ],
            "caseStatusGroup": "Open",
            "caseStatusGroupId": "CSSGCYoBCJ3A8j4MX4",
            "caseStatusId": "CSSTVnE3shD3CGtkcZ",
            "createdDate": "2022-03-28T04:58:47+00:00",
            "name": "Open",
            "object": "CaseStatus"
          },
          "caseType": {
            "areaOfLaw": "Probate",
            "areaOfLawId": "AOFLRLYttsKKbbhXQ5",
            "caseClass": "Civil",
            "caseClassId": "CSCLNjbKTN7Yfo2wdb",
            "caseTypeGroup": null,
            "caseTypeGroupId": null,
            "caseTypeId": "CTYPRLYttsKKbbhXQ5",
            "caseTypeTag": null,
            "createdDate": "2022-03-28T04:58:28+00:00",
            "name": null,
            "object": "CaseType",
            "saliCode": null
          },
          "causeOfActionArray": [],
          "chargeArray": [],
          "court": {
            "additionalLevels": null,
            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/appealCourts?pageNumber=1",
            "container": null,
            "containerType": null,
            "courtId": "CORTV4vCEaKrhystBz",
            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/courtLocations?pageNumber=1",
            "courtServiceStatusAPI": null,
            "courtSystemId": "COSYACHBdMewtaG5DY",
            "courtTypeId": "COTPm8jjc2PAydpFhq",
            "createdDate": "2022-07-08T05:50:06+00:00",
            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/jurisdictionGeo?pageNumber=1",
            "name": "Los Angeles County Superior Court",
            "nameAka": "Los Angeles County Superior Court of California",
            "object": "Court",
            "system": "California Superior Courts",
            "type": "State"
          },
          "courtLocation": {
            "city": "Los Angeles",
            "courtLocationId": "COLO6b82CkRqS846hx",
            "courtServiceStatusAPI": null,
            "courtsForCourtLocationAPI": "https://enterpriseapi.unicourt.com/masterData/courtLocation/COLO6b82CkRqS846hx/courts?pageNumber=1",
            "createdDate": "2022-07-08T05:50:08+00:00",
            "name": "Stanley Mosk Courthouse",
            "object": "CourtLocation",
            "stateName": "California",
            "streetAddress1": "111 North Hill Street",
            "streetAddress2": null
          },
          "courtServiceStatusAPI": null,
          "courtServiceStatusId": null,
          "docketEntries": {
            "docketEntryArray": [
              {
                "boundary": "first",
                "docketBadge": "HEARING",
                "docketEntryDate": "2023-02-27T00:00:00-08:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2022-07-17T18:20:59+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 1851,
                "text": "02/27/2023 at 8:30 AM in Probate Department 5 at 111 North Hill Street, Los Angeles, CA 90012; Court Trial",
                "textStructured": {
                  "extractedFields": null,
                  "rawOrderedDataArray": [
                    {
                      "childArray": [],
                      "lbl": null,
                      "ord": 0,
                      "val": "02/27/2023 at 8:30 AM in Probate Department 5 at 111 North Hill Street, Los Angeles, CA 90012; Court Trial"
                    }
                  ]
                }
              },
              {
                "boundary": null,
                "docketBadge": "HEARING",
                "docketEntryDate": "2023-02-27T00:00:00-08:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2022-07-17T18:20:59+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 1850,
                "text": "02/27/2023 at 8:30 AM in Probate Department 5 at 111 North Hill Street, Los Angeles, CA 90012; Court Trial",
                "textStructured": {
                  "extractedFields": null,
                  "rawOrderedDataArray": [
                    {
                      "childArray": [],
                      "lbl": null,
                      "ord": 0,
                      "val": "02/27/2023 at 8:30 AM in Probate Department 5 at 111 North Hill Street, Los Angeles, CA 90012; Court Trial"
                    }
                  ]
                }
              },
              {
                "boundary": null,
                "docketBadge": "HEARING",
                "docketEntryDate": "2023-02-08T00:00:00-08:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2022-07-17T18:20:59+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 1849,
                "text": "02/08/2023 at 1:30 PM in Probate Department 5 at 111 North Hill Street, Los Angeles, CA 90012; Court Trial",
                "textStructured": {
                  "extractedFields": null,
                  "rawOrderedDataArray": [
                    {
                      "childArray": [],
                      "lbl": null,
                      "ord": 0,
                      "val": "02/08/2023 at 1:30 PM in Probate Department 5 at 111 North Hill Street, Los Angeles, CA 90012; Court Trial"
                    }
                  ]
                }
              },
              {
                "boundary": null,
                "docketBadge": "HEARING",
                "docketEntryDate": "2023-02-08T00:00:00-08:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2022-07-17T18:20:59+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 1848,
                "text": "02/08/2023 at 1:30 PM in Probate Department 5 at 111 North Hill Street, Los Angeles, CA 90012; Court Trial",
                "textStructured": {
                  "extractedFields": null,
                  "rawOrderedDataArray": [
                    {
                      "childArray": [],
                      "lbl": null,
                      "ord": 0,
                      "val": "02/08/2023 at 1:30 PM in Probate Department 5 at 111 North Hill Street, Los Angeles, CA 90012; Court Trial"
                    }
                  ]
                }
              },
              {
                "boundary": null,
                "docketBadge": "HEARING",
                "docketEntryDate": "2023-02-07T00:00:00-08:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2022-07-17T18:20:59+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 1847,
                "text": "02/07/2023 at 1:30 PM in Probate Department 5 at 111 North Hill Street, Los Angeles, CA 90012; Court Trial",
                "textStructured": {
                  "extractedFields": null,
                  "rawOrderedDataArray": [
                    {
                      "childArray": [],
                      "lbl": null,
                      "ord": 0,
                      "val": "02/07/2023 at 1:30 PM in Probate Department 5 at 111 North Hill Street, Los Angeles, CA 90012; Court Trial"
                    }
                  ]
                }
              },
              {
                "boundary": null,
                "docketBadge": "HEARING",
                "docketEntryDate": "2023-02-07T00:00:00-08:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2022-07-17T18:20:59+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 1846,
                "text": "02/07/2023 at 1:30 PM in Probate Department 5 at 111 North Hill Street, Los Angeles, CA 90012; Court Trial",
                "textStructured": {
                  "extractedFields": null,
                  "rawOrderedDataArray": [
                    {
                      "childArray": [],
                      "lbl": null,
                      "ord": 0,
                      "val": "02/07/2023 at 1:30 PM in Probate Department 5 at 111 North Hill Street, Los Angeles, CA 90012; Court Trial"
                    }
                  ]
                }
              },
              {
                "boundary": null,
                "docketBadge": "HEARING",
                "docketEntryDate": "2023-02-06T00:00:00-08:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2022-07-17T18:20:59+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 1845,
                "text": "02/06/2023 at 8:30 AM in Probate Department 5 at 111 North Hill Street, Los Angeles, CA 90012; Court Trial",
                "textStructured": {
                  "extractedFields": null,
                  "rawOrderedDataArray": [
                    {
                      "childArray": [],
                      "lbl": null,
                      "ord": 0,
                      "val": "02/06/2023 at 8:30 AM in Probate Department 5 at 111 North Hill Street, Los Angeles, CA 90012; Court Trial"
                    }
                  ]
                }
              },
              {
                "boundary": null,
                "docketBadge": "HEARING",
                "docketEntryDate": "2023-02-06T00:00:00-08:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2022-07-17T18:20:59+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 1844,
                "text": "02/06/2023 at 8:30 AM in Probate Department 5 at 111 North Hill Street, Los Angeles, CA 90012; Court Trial",
                "textStructured": {
                  "extractedFields": null,
                  "rawOrderedDataArray": [
                    {
                      "childArray": [],
                      "lbl": null,
                      "ord": 0,
                      "val": "02/06/2023 at 8:30 AM in Probate Department 5 at 111 North Hill Street, Los Angeles, CA 90012; Court Trial"
                    }
                  ]
                }
              },
              {
                "boundary": null,
                "docketBadge": "HEARING",
                "docketEntryDate": "2023-01-09T00:00:00-08:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2022-07-17T18:20:59+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 1843,
                "text": "01/09/2023 at 8:30 AM in Probate Department 5 at 111 North Hill Street, Los Angeles, CA 90012; Court Trial",
                "textStructured": {
                  "extractedFields": null,
                  "rawOrderedDataArray": [
                    {
                      "childArray": [],
                      "lbl": null,
                      "ord": 0,
                      "val": "01/09/2023 at 8:30 AM in Probate Department 5 at 111 North Hill Street, Los Angeles, CA 90012; Court Trial"
                    }
                  ]
                }
              },
              {
                "boundary": null,
                "docketBadge": "HEARING",
                "docketEntryDate": "2023-01-09T00:00:00-08:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2022-07-17T18:20:59+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 1842,
                "text": "01/09/2023 at 8:30 AM in Probate Department 5 at 111 North Hill Street, Los Angeles, CA 90012; Court Trial",
                "textStructured": {
                  "extractedFields": null,
                  "rawOrderedDataArray": [
                    {
                      "childArray": [],
                      "lbl": null,
                      "ord": 0,
                      "val": "01/09/2023 at 8:30 AM in Probate Department 5 at 111 North Hill Street, Los Angeles, CA 90012; Court Trial"
                    }
                  ]
                }
              },
              {
                "boundary": null,
                "docketBadge": "HEARING",
                "docketEntryDate": "2023-01-04T00:00:00-08:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2022-07-17T18:20:59+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 1841,
                "text": "01/04/2023 at 9:30 AM in Probate Department 5 at 111 North Hill Street, Los Angeles, CA 90012; Petition Hearing",
                "textStructured": {
                  "extractedFields": null,
                  "rawOrderedDataArray": [
                    {
                      "childArray": [],
                      "lbl": null,
                      "ord": 0,
                      "val": "01/04/2023 at 9:30 AM in Probate Department 5 at 111 North Hill Street, Los Angeles, CA 90012; Petition Hearing"
                    }
                  ]
                }
              },
              {
                "boundary": null,
                "docketBadge": "HEARING",
                "docketEntryDate": "2023-01-04T00:00:00-08:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2022-07-17T18:20:59+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 1840,
                "text": "01/04/2023 at 9:30 AM in Probate Department 5 at 111 North Hill Street, Los Angeles, CA 90012; Authority Hearing (Non-Trust)",
                "textStructured": {
                  "extractedFields": null,
                  "rawOrderedDataArray": [
                    {
                      "childArray": [],
                      "lbl": null,
                      "ord": 0,
                      "val": "01/04/2023 at 9:30 AM in Probate Department 5 at 111 North Hill Street, Los Angeles, CA 90012; Authority Hearing (Non-Trust)"
                    }
                  ]
                }
              },
              {
                "boundary": null,
                "docketBadge": "HEARING",
                "docketEntryDate": "2023-01-04T00:00:00-08:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2022-07-17T18:20:59+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 1839,
                "text": "01/04/2023 at 9:30 AM in Probate Department 5 at 111 North Hill Street, Los Angeles, CA 90012; Accounting Hearing",
                "textStructured": {
                  "extractedFields": null,
                  "rawOrderedDataArray": [
                    {
                      "childArray": [],
                      "lbl": null,
                      "ord": 0,
                      "val": "01/04/2023 at 9:30 AM in Probate Department 5 at 111 North Hill Street, Los Angeles, CA 90012; Accounting Hearing"
                    }
                  ]
                }
              },
              {
                "boundary": null,
                "docketBadge": "HEARING",
                "docketEntryDate": "2023-01-04T00:00:00-08:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2022-07-17T18:20:59+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 1838,
                "text": "01/04/2023 at 9:30 AM in Probate Department 5 at 111 North Hill Street, Los Angeles, CA 90012; Probate Code 850 Hearing",
                "textStructured": {
                  "extractedFields": null,
                  "rawOrderedDataArray": [
                    {
                      "childArray": [],
                      "lbl": null,
                      "ord": 0,
                      "val": "01/04/2023 at 9:30 AM in Probate Department 5 at 111 North Hill Street, Los Angeles, CA 90012; Probate Code 850 Hearing"
                    }
                  ]
                }
              },
              {
                "boundary": null,
                "docketBadge": "HEARING",
                "docketEntryDate": "2023-01-04T00:00:00-08:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2022-07-17T18:20:59+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 1837,
                "text": "01/04/2023 at 9:30 AM in Probate Department 5 at 111 North Hill Street, Los Angeles, CA 90012; Accounting Hearing",
                "textStructured": {
                  "extractedFields": null,
                  "rawOrderedDataArray": [
                    {
                      "childArray": [],
                      "lbl": null,
                      "ord": 0,
                      "val": "01/04/2023 at 9:30 AM in Probate Department 5 at 111 North Hill Street, Los Angeles, CA 90012; Accounting Hearing"
                    }
                  ]
                }
              },
              {
                "boundary": null,
                "docketBadge": "HEARING",
                "docketEntryDate": "2022-09-08T00:00:00-07:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2022-07-17T18:20:59+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 1836,
                "text": "09/08/2022 at 9:30 AM in Probate Department 5 at 111 North Hill Street, Los Angeles, CA 90012; Contest of Will Hearing",
                "textStructured": {
                  "extractedFields": null,
                  "rawOrderedDataArray": [
                    {
                      "childArray": [],
                      "lbl": null,
                      "ord": 0,
                      "val": "09/08/2022 at 9:30 AM in Probate Department 5 at 111 North Hill Street, Los Angeles, CA 90012; Contest of Will Hearing"
                    }
                  ]
                }
              },
              {
                "boundary": null,
                "docketBadge": "HEARING",
                "docketEntryDate": "2022-09-08T00:00:00-07:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2022-07-17T18:20:59+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 1835,
                "text": "09/08/2022 at 9:30 AM in Probate Department 5 at 111 North Hill Street, Los Angeles, CA 90012; Motion for Summary Judgment Hearing",
                "textStructured": {
                  "extractedFields": null,
                  "rawOrderedDataArray": [
                    {
                      "childArray": [],
                      "lbl": null,
                      "ord": 0,
                      "val": "09/08/2022 at 9:30 AM in Probate Department 5 at 111 North Hill Street, Los Angeles, CA 90012; Motion for Summary Judgment Hearing"
                    }
                  ]
                }
              },
              {
                "boundary": null,
                "docketBadge": "HEARING",
                "docketEntryDate": "2022-09-08T00:00:00-07:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2022-07-17T18:20:59+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 1834,
                "text": "09/08/2022 at 9:30 AM in Probate Department 5 at 111 North Hill Street, Los Angeles, CA 90012; Spousal Property Hearing",
                "textStructured": {
                  "extractedFields": null,
                  "rawOrderedDataArray": [
                    {
                      "childArray": [],
                      "lbl": null,
                      "ord": 0,
                      "val": "09/08/2022 at 9:30 AM in Probate Department 5 at 111 North Hill Street, Los Angeles, CA 90012; Spousal Property Hearing"
                    }
                  ]
                }
              },
              {
                "boundary": null,
                "docketBadge": "HEARING",
                "docketEntryDate": "2022-09-08T00:00:00-07:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2022-07-17T18:20:59+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 1833,
                "text": "09/08/2022 at 9:30 AM in Probate Department 5 at 111 North Hill Street, Los Angeles, CA 90012; Appointment Hearing - Decedent's Estate",
                "textStructured": {
                  "extractedFields": null,
                  "rawOrderedDataArray": [
                    {
                      "childArray": [],
                      "lbl": null,
                      "ord": 0,
                      "val": "09/08/2022 at 9:30 AM in Probate Department 5 at 111 North Hill Street, Los Angeles, CA 90012; Appointment Hearing - Decedent's Estate"
                    }
                  ]
                }
              },
              {
                "boundary": null,
                "docketBadge": "HEARING",
                "docketEntryDate": "2022-08-23T00:00:00-07:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2022-07-17T18:20:59+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 1832,
                "text": "08/23/2022 at 1:30 PM in Probate Department 5 at 111 North Hill Street, Los Angeles, CA 90012; Petition Hearing",
                "textStructured": {
                  "extractedFields": null,
                  "rawOrderedDataArray": [
                    {
                      "childArray": [],
                      "lbl": null,
                      "ord": 0,
                      "val": "08/23/2022 at 1:30 PM in Probate Department 5 at 111 North Hill Street, Los Angeles, CA 90012; Petition Hearing"
                    }
                  ]
                }
              },
              {
                "boundary": null,
                "docketBadge": "HEARING",
                "docketEntryDate": "2022-08-23T00:00:00-07:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2022-07-17T18:20:59+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 1831,
                "text": "08/23/2022 at 1:30 PM in Probate Department 5 at 111 North Hill Street, Los Angeles, CA 90012; Authority Hearing (Non-Trust)",
                "textStructured": {
                  "extractedFields": null,
                  "rawOrderedDataArray": [
                    {
                      "childArray": [],
                      "lbl": null,
                      "ord": 0,
                      "val": "08/23/2022 at 1:30 PM in Probate Department 5 at 111 North Hill Street, Los Angeles, CA 90012; Authority Hearing (Non-Trust)"
                    }
                  ]
                }
              },
              {
                "boundary": null,
                "docketBadge": "HEARING",
                "docketEntryDate": "2022-08-23T00:00:00-07:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2022-07-17T18:20:59+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 1830,
                "text": "08/23/2022 at 1:30 PM in Probate Department 5 at 111 North Hill Street, Los Angeles, CA 90012; Authority Hearing (Non-Trust)",
                "textStructured": {
                  "extractedFields": null,
                  "rawOrderedDataArray": [
                    {
                      "childArray": [],
                      "lbl": null,
                      "ord": 0,
                      "val": "08/23/2022 at 1:30 PM in Probate Department 5 at 111 North Hill Street, Los Angeles, CA 90012; Authority Hearing (Non-Trust)"
                    }
                  ]
                }
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2022-07-15T00:00:00-07:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2022-07-17T18:20:59+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 1829,
                "text": "Appeal - Notice of Default Issued (NOA 4/29/22 B321101 RESPONDENTS REPORTER FEE )",
                "textStructured": {
                  "extractedFields": null,
                  "rawOrderedDataArray": [
                    {
                      "childArray": [],
                      "lbl": null,
                      "ord": 0,
                      "val": "Appeal - Notice of Default Issued (NOA 4/29/22 B321101 RESPONDENTS REPORTER FEE )"
                    }
                  ]
                }
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2022-07-12T00:00:00-07:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2022-07-17T18:20:59+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 1828,
                "text": "Notice - Ruling (NOTICE OF AMENDED ORDER GRANTING IN PART AND DENYING IN PART MOTION FOR ORDER AUTHORIZING IMAGING OF ELECTRONIC DEVICES ); Filed by Petitioner",
                "textStructured": {
                  "extractedFields": null,
                  "rawOrderedDataArray": [
                    {
                      "childArray": [],
                      "lbl": null,
                      "ord": 0,
                      "val": "Notice - Ruling (NOTICE OF AMENDED ORDER GRANTING IN PART AND DENYING IN PART MOTION FOR ORDER AUTHORIZING IMAGING OF ELECTRONIC DEVICES ); Filed by Petitioner"
                    }
                  ]
                }
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2022-07-06T00:00:00-07:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2022-07-17T18:20:59+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 1827,
                "text": "in Probate Department 5, Small, Michael, Presiding; Motion for Summary Judgment Hearing - Held - Motion Denied",
                "textStructured": {
                  "extractedFields": null,
                  "rawOrderedDataArray": [
                    {
                      "childArray": [],
                      "lbl": null,
                      "ord": 0,
                      "val": "in Probate Department 5, Small, Michael, Presiding; Motion for Summary Judgment Hearing - Held - Motion Denied"
                    }
                  ]
                }
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2022-07-06T00:00:00-07:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2022-07-17T18:20:59+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 1826,
                "text": "in Probate Department 5, Small, Michael, Presiding; Authority Hearing (Non-Trust) - Held - Continued",
                "textStructured": {
                  "extractedFields": null,
                  "rawOrderedDataArray": [
                    {
                      "childArray": [],
                      "lbl": null,
                      "ord": 0,
                      "val": "in Probate Department 5, Small, Michael, Presiding; Authority Hearing (Non-Trust) - Held - Continued"
                    }
                  ]
                }
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2022-07-06T00:00:00-07:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2022-07-17T18:20:59+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 1825,
                "text": "in Probate Department 5, Small, Michael, Presiding; Spousal Property Hearing - Held - Continued",
                "textStructured": {
                  "extractedFields": null,
                  "rawOrderedDataArray": [
                    {
                      "childArray": [],
                      "lbl": null,
                      "ord": 0,
                      "val": "in Probate Department 5, Small, Michael, Presiding; Spousal Property Hearing - Held - Continued"
                    }
                  ]
                }
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2022-07-06T00:00:00-07:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2022-07-17T18:20:59+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 1824,
                "text": "in Probate Department 5, Small, Michael, Presiding; Contest of Will Hearing - Held - Continued",
                "textStructured": {
                  "extractedFields": null,
                  "rawOrderedDataArray": [
                    {
                      "childArray": [],
                      "lbl": null,
                      "ord": 0,
                      "val": "in Probate Department 5, Small, Michael, Presiding; Contest of Will Hearing - Held - Continued"
                    }
                  ]
                }
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2022-07-06T00:00:00-07:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2022-07-17T18:20:59+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 1823,
                "text": "in Probate Department 5, Small, Michael, Presiding; Appointment Hearing - Decedent's Estate - Held - Continued",
                "textStructured": {
                  "extractedFields": null,
                  "rawOrderedDataArray": [
                    {
                      "childArray": [],
                      "lbl": null,
                      "ord": 0,
                      "val": "in Probate Department 5, Small, Michael, Presiding; Appointment Hearing - Decedent's Estate - Held - Continued"
                    }
                  ]
                }
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2022-07-06T00:00:00-07:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2022-07-17T18:20:59+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 1822,
                "text": "Minute Order",
                "textStructured": {
                  "extractedFields": null,
                  "rawOrderedDataArray": [
                    {
                      "childArray": [],
                      "lbl": null,
                      "ord": 0,
                      "val": "Minute Order"
                    }
                  ]
                }
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2022-07-06T00:00:00-07:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2022-07-17T18:20:59+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 1821,
                "text": "Minute Order",
                "textStructured": {
                  "extractedFields": null,
                  "rawOrderedDataArray": [
                    {
                      "childArray": [],
                      "lbl": null,
                      "ord": 0,
                      "val": "Minute Order"
                    }
                  ]
                }
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2022-07-06T00:00:00-07:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2022-07-17T18:20:59+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 1820,
                "text": "Minute Order",
                "textStructured": {
                  "extractedFields": null,
                  "rawOrderedDataArray": [
                    {
                      "childArray": [],
                      "lbl": null,
                      "ord": 0,
                      "val": "Minute Order"
                    }
                  ]
                }
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2022-07-06T00:00:00-07:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2022-07-17T18:20:59+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 1819,
                "text": "Minute Order",
                "textStructured": {
                  "extractedFields": null,
                  "rawOrderedDataArray": [
                    {
                      "childArray": [],
                      "lbl": null,
                      "ord": 0,
                      "val": "Minute Order"
                    }
                  ]
                }
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2022-07-06T00:00:00-07:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2022-07-17T18:20:59+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 1818,
                "text": "Petition Denied (The Motion - Summary Judgment filed on 4/12/2022 by Petitioner(s) Ming-Chao Huang, Mei Jung Lin )",
                "textStructured": {
                  "extractedFields": null,
                  "rawOrderedDataArray": [
                    {
                      "childArray": [],
                      "lbl": null,
                      "ord": 0,
                      "val": "Petition Denied (The Motion - Summary Judgment filed on 4/12/2022 by Petitioner(s) Ming-Chao Huang, Mei Jung Lin )"
                    }
                  ]
                }
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2022-07-06T00:00:00-07:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2022-07-17T18:20:59+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 1817,
                "text": "Minute Order",
                "textStructured": {
                  "extractedFields": null,
                  "rawOrderedDataArray": [
                    {
                      "childArray": [],
                      "lbl": null,
                      "ord": 0,
                      "val": "Minute Order"
                    }
                  ]
                }
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2022-07-04T00:00:00-07:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2022-07-17T18:20:59+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 1816,
                "text": "Remote Appearance - Scheduled; Filed by Petitioner",
                "textStructured": {
                  "extractedFields": null,
                  "rawOrderedDataArray": [
                    {
                      "childArray": [],
                      "lbl": null,
                      "ord": 0,
                      "val": "Remote Appearance - Scheduled; Filed by Petitioner"
                    }
                  ]
                }
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2022-07-04T00:00:00-07:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2022-07-17T18:20:59+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 1815,
                "text": "Remote Appearance - Scheduled; Filed by Petitioner",
                "textStructured": {
                  "extractedFields": null,
                  "rawOrderedDataArray": [
                    {
                      "childArray": [],
                      "lbl": null,
                      "ord": 0,
                      "val": "Remote Appearance - Scheduled; Filed by Petitioner"
                    }
                  ]
                }
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2022-07-04T00:00:00-07:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2022-07-17T18:20:59+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 1814,
                "text": "Remote Appearance - Scheduled; Filed by Petitioner",
                "textStructured": {
                  "extractedFields": null,
                  "rawOrderedDataArray": [
                    {
                      "childArray": [],
                      "lbl": null,
                      "ord": 0,
                      "val": "Remote Appearance - Scheduled; Filed by Petitioner"
                    }
                  ]
                }
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2022-07-04T00:00:00-07:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2022-07-17T18:20:59+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 1813,
                "text": "Remote Appearance - Scheduled; Filed by Petitioner",
                "textStructured": {
                  "extractedFields": null,
                  "rawOrderedDataArray": [
                    {
                      "childArray": [],
                      "lbl": null,
                      "ord": 0,
                      "val": "Remote Appearance - Scheduled; Filed by Petitioner"
                    }
                  ]
                }
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2022-07-04T00:00:00-07:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2022-07-17T18:20:59+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 1812,
                "text": "Remote Appearance - Scheduled; Filed by Petitioner",
                "textStructured": {
                  "extractedFields": null,
                  "rawOrderedDataArray": [
                    {
                      "childArray": [],
                      "lbl": null,
                      "ord": 0,
                      "val": "Remote Appearance - Scheduled; Filed by Petitioner"
                    }
                  ]
                }
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2022-07-01T00:00:00-07:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2022-07-17T18:20:59+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 1811,
                "text": "Miscellaneous Document (Evidentiary Objections ); Filed by Petitioner",
                "textStructured": {
                  "extractedFields": null,
                  "rawOrderedDataArray": [
                    {
                      "childArray": [],
                      "lbl": null,
                      "ord": 0,
                      "val": "Miscellaneous Document (Evidentiary Objections ); Filed by Petitioner"
                    }
                  ]
                }
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2022-07-01T00:00:00-07:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2022-07-17T18:20:59+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 1810,
                "text": "Request - Judicial Notice (Request for Judicial Notice ); Filed by Petitioner",
                "textStructured": {
                  "extractedFields": null,
                  "rawOrderedDataArray": [
                    {
                      "childArray": [],
                      "lbl": null,
                      "ord": 0,
                      "val": "Request - Judicial Notice (Request for Judicial Notice ); Filed by Petitioner"
                    }
                  ]
                }
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2022-07-01T00:00:00-07:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2022-07-17T18:20:59+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 1809,
                "text": "Appeal - Reporter Appeal Transcript Process Fee Paid (by Appellant ); Filed by Respondent",
                "textStructured": {
                  "extractedFields": null,
                  "rawOrderedDataArray": [
                    {
                      "childArray": [],
                      "lbl": null,
                      "ord": 0,
                      "val": "Appeal - Reporter Appeal Transcript Process Fee Paid (by Appellant ); Filed by Respondent"
                    }
                  ]
                }
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2022-07-01T00:00:00-07:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2022-07-17T18:20:59+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 1808,
                "text": "Appeal - Reporter Appeal Transcripts Deposit Paid (by Appellant on \"U2\" Appeal $80.00 ); Filed by Respondent",
                "textStructured": {
                  "extractedFields": null,
                  "rawOrderedDataArray": [
                    {
                      "childArray": [],
                      "lbl": null,
                      "ord": 0,
                      "val": "Appeal - Reporter Appeal Transcripts Deposit Paid (by Appellant on \"U2\" Appeal $80.00 ); Filed by Respondent"
                    }
                  ]
                }
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2022-07-01T00:00:00-07:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2022-07-17T18:20:59+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 1807,
                "text": "Appeal - Reporter Appeal Transcripts Deposit Paid (by Appellant on \"U1\" Appeal $80.00 ); Filed by Respondent",
                "textStructured": {
                  "extractedFields": null,
                  "rawOrderedDataArray": [
                    {
                      "childArray": [],
                      "lbl": null,
                      "ord": 0,
                      "val": "Appeal - Reporter Appeal Transcripts Deposit Paid (by Appellant on \"U1\" Appeal $80.00 ); Filed by Respondent"
                    }
                  ]
                }
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2022-07-01T00:00:00-07:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2022-07-17T18:20:59+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 1806,
                "text": "Appeal - Reporter Appeal Transcript Process Fee Paid (by Appellant ); Filed by Respondent",
                "textStructured": {
                  "extractedFields": null,
                  "rawOrderedDataArray": [
                    {
                      "childArray": [],
                      "lbl": null,
                      "ord": 0,
                      "val": "Appeal - Reporter Appeal Transcript Process Fee Paid (by Appellant ); Filed by Respondent"
                    }
                  ]
                }
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2022-07-01T00:00:00-07:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2022-07-17T18:20:59+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 1805,
                "text": "Reply (Reply ); Filed by Petitioner",
                "textStructured": {
                  "extractedFields": null,
                  "rawOrderedDataArray": [
                    {
                      "childArray": [],
                      "lbl": null,
                      "ord": 0,
                      "val": "Reply (Reply ); Filed by Petitioner"
                    }
                  ]
                }
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2022-06-30T00:00:00-07:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2022-07-17T18:20:59+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 1804,
                "text": "Remote Appearance - Scheduled; Filed by Petitioner",
                "textStructured": {
                  "extractedFields": null,
                  "rawOrderedDataArray": [
                    {
                      "childArray": [],
                      "lbl": null,
                      "ord": 0,
                      "val": "Remote Appearance - Scheduled; Filed by Petitioner"
                    }
                  ]
                }
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2022-06-30T00:00:00-07:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2022-07-17T18:20:59+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 1803,
                "text": "Remote Appearance - Scheduled; Filed by Petitioner",
                "textStructured": {
                  "extractedFields": null,
                  "rawOrderedDataArray": [
                    {
                      "childArray": [],
                      "lbl": null,
                      "ord": 0,
                      "val": "Remote Appearance - Scheduled; Filed by Petitioner"
                    }
                  ]
                }
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2022-06-30T00:00:00-07:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2022-07-17T18:20:59+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 1802,
                "text": "Remote Appearance - Scheduled; Filed by Special Adminstrator",
                "textStructured": {
                  "extractedFields": null,
                  "rawOrderedDataArray": [
                    {
                      "childArray": [],
                      "lbl": null,
                      "ord": 0,
                      "val": "Remote Appearance - Scheduled; Filed by Special Adminstrator"
                    }
                  ]
                }
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2022-06-30T00:00:00-07:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2022-07-17T18:20:59+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 1801,
                "text": "Remote Appearance - Scheduled; Filed by Special Adminstrator",
                "textStructured": {
                  "extractedFields": null,
                  "rawOrderedDataArray": [
                    {
                      "childArray": [],
                      "lbl": null,
                      "ord": 0,
                      "val": "Remote Appearance - Scheduled; Filed by Special Adminstrator"
                    }
                  ]
                }
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2022-06-30T00:00:00-07:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2022-07-17T18:20:59+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 1800,
                "text": "Remote Appearance - Scheduled; Filed by Petitioner",
                "textStructured": {
                  "extractedFields": null,
                  "rawOrderedDataArray": [
                    {
                      "childArray": [],
                      "lbl": null,
                      "ord": 0,
                      "val": "Remote Appearance - Scheduled; Filed by Petitioner"
                    }
                  ]
                }
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2022-06-30T00:00:00-07:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2022-07-17T18:20:59+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 1799,
                "text": "Appeal - Reporter Appeal Transcripts Deposit Paid (by Respondent (BELSOME) $80.00 ); Filed by Petitioner",
                "textStructured": {
                  "extractedFields": null,
                  "rawOrderedDataArray": [
                    {
                      "childArray": [],
                      "lbl": null,
                      "ord": 0,
                      "val": "Appeal - Reporter Appeal Transcripts Deposit Paid (by Respondent (BELSOME) $80.00 ); Filed by Petitioner"
                    }
                  ]
                }
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2022-06-30T00:00:00-07:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2022-07-17T18:20:59+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 1798,
                "text": "Appeal - Reporter Appeal Transcript Process Fee Paid (by Respondent ); Filed by Petitioner",
                "textStructured": {
                  "extractedFields": null,
                  "rawOrderedDataArray": [
                    {
                      "childArray": [],
                      "lbl": null,
                      "ord": 0,
                      "val": "Appeal - Reporter Appeal Transcript Process Fee Paid (by Respondent ); Filed by Petitioner"
                    }
                  ]
                }
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2022-06-30T00:00:00-07:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2022-07-17T18:20:59+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 1797,
                "text": "Remote Appearance - Scheduled; Filed by Petitioner",
                "textStructured": {
                  "extractedFields": null,
                  "rawOrderedDataArray": [
                    {
                      "childArray": [],
                      "lbl": null,
                      "ord": 0,
                      "val": "Remote Appearance - Scheduled; Filed by Petitioner"
                    }
                  ]
                }
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2022-06-30T00:00:00-07:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2022-07-17T18:20:59+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 1796,
                "text": "Remote Appearance - Scheduled; Filed by Petitioner",
                "textStructured": {
                  "extractedFields": null,
                  "rawOrderedDataArray": [
                    {
                      "childArray": [],
                      "lbl": null,
                      "ord": 0,
                      "val": "Remote Appearance - Scheduled; Filed by Petitioner"
                    }
                  ]
                }
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2022-06-29T00:00:00-07:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2022-07-17T18:20:59+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 1795,
                "text": "Remote Appearance - Scheduled; Filed by Special Adminstrator",
                "textStructured": {
                  "extractedFields": null,
                  "rawOrderedDataArray": [
                    {
                      "childArray": [],
                      "lbl": null,
                      "ord": 0,
                      "val": "Remote Appearance - Scheduled; Filed by Special Adminstrator"
                    }
                  ]
                }
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2022-06-29T00:00:00-07:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2022-07-17T18:20:59+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 1794,
                "text": "Remote Appearance - Scheduled; Filed by Special Adminstrator",
                "textStructured": {
                  "extractedFields": null,
                  "rawOrderedDataArray": [
                    {
                      "childArray": [],
                      "lbl": null,
                      "ord": 0,
                      "val": "Remote Appearance - Scheduled; Filed by Special Adminstrator"
                    }
                  ]
                }
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2022-06-29T00:00:00-07:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2022-07-17T18:20:59+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 1793,
                "text": "Remote Appearance - Scheduled; Filed by Special Adminstrator",
                "textStructured": {
                  "extractedFields": null,
                  "rawOrderedDataArray": [
                    {
                      "childArray": [],
                      "lbl": null,
                      "ord": 0,
                      "val": "Remote Appearance - Scheduled; Filed by Special Adminstrator"
                    }
                  ]
                }
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2022-06-29T00:00:00-07:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2022-07-17T18:20:59+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 1792,
                "text": "Remote Appearance - Scheduled; Filed by Special Adminstrator",
                "textStructured": {
                  "extractedFields": null,
                  "rawOrderedDataArray": [
                    {
                      "childArray": [],
                      "lbl": null,
                      "ord": 0,
                      "val": "Remote Appearance - Scheduled; Filed by Special Adminstrator"
                    }
                  ]
                }
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2022-06-29T00:00:00-07:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2022-07-17T18:20:59+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 1791,
                "text": "Remote Appearance - Scheduled; Filed by Special Adminstrator",
                "textStructured": {
                  "extractedFields": null,
                  "rawOrderedDataArray": [
                    {
                      "childArray": [],
                      "lbl": null,
                      "ord": 0,
                      "val": "Remote Appearance - Scheduled; Filed by Special Adminstrator"
                    }
                  ]
                }
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2022-06-27T00:00:00-07:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2022-07-17T18:20:59+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 1790,
                "text": "Remote Appearance - Scheduled; Filed by Special Adminstrator",
                "textStructured": {
                  "extractedFields": null,
                  "rawOrderedDataArray": [
                    {
                      "childArray": [],
                      "lbl": null,
                      "ord": 0,
                      "val": "Remote Appearance - Scheduled; Filed by Special Adminstrator"
                    }
                  ]
                }
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2022-06-27T00:00:00-07:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2022-07-17T18:20:59+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 1789,
                "text": "Remote Appearance - Scheduled; Filed by Special Adminstrator",
                "textStructured": {
                  "extractedFields": null,
                  "rawOrderedDataArray": [
                    {
                      "childArray": [],
                      "lbl": null,
                      "ord": 0,
                      "val": "Remote Appearance - Scheduled; Filed by Special Adminstrator"
                    }
                  ]
                }
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2022-06-27T00:00:00-07:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2022-07-17T18:20:59+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 1788,
                "text": "Remote Appearance - Scheduled; Filed by Special Adminstrator",
                "textStructured": {
                  "extractedFields": null,
                  "rawOrderedDataArray": [
                    {
                      "childArray": [],
                      "lbl": null,
                      "ord": 0,
                      "val": "Remote Appearance - Scheduled; Filed by Special Adminstrator"
                    }
                  ]
                }
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2022-06-27T00:00:00-07:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2022-07-17T18:20:59+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 1787,
                "text": "Remote Appearance - Scheduled; Filed by Special Adminstrator",
                "textStructured": {
                  "extractedFields": null,
                  "rawOrderedDataArray": [
                    {
                      "childArray": [],
                      "lbl": null,
                      "ord": 0,
                      "val": "Remote Appearance - Scheduled; Filed by Special Adminstrator"
                    }
                  ]
                }
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2022-06-27T00:00:00-07:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2022-07-17T18:20:59+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 1786,
                "text": "Remote Appearance - Scheduled; Filed by Special Adminstrator",
                "textStructured": {
                  "extractedFields": null,
                  "rawOrderedDataArray": [
                    {
                      "childArray": [],
                      "lbl": null,
                      "ord": 0,
                      "val": "Remote Appearance - Scheduled; Filed by Special Adminstrator"
                    }
                  ]
                }
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2022-06-27T00:00:00-07:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2022-07-17T18:20:59+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 1785,
                "text": "Remote Appearance - Scheduled; Filed by Respondent",
                "textStructured": {
                  "extractedFields": null,
                  "rawOrderedDataArray": [
                    {
                      "childArray": [],
                      "lbl": null,
                      "ord": 0,
                      "val": "Remote Appearance - Scheduled; Filed by Respondent"
                    }
                  ]
                }
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2022-06-23T00:00:00-07:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2022-07-17T18:20:59+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 1784,
                "text": "Appeal - Ntc Designating Record of Appeal APP-003/010/103 (for \"U2\" Appeal filed 04/29/22 ); Filed by Respondent",
                "textStructured": {
                  "extractedFields": null,
                  "rawOrderedDataArray": [
                    {
                      "childArray": [],
                      "lbl": null,
                      "ord": 0,
                      "val": "Appeal - Ntc Designating Record of Appeal APP-003/010/103 (for \"U2\" Appeal filed 04/29/22 ); Filed by Respondent"
                    }
                  ]
                }
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2022-06-23T00:00:00-07:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2022-07-17T18:20:59+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 1783,
                "text": "Appeal - Ntc Designating Record of Appeal APP-003/010/103 (for \"U1\" Appeal filed 04/29/22 ); Filed by Respondent",
                "textStructured": {
                  "extractedFields": null,
                  "rawOrderedDataArray": [
                    {
                      "childArray": [],
                      "lbl": null,
                      "ord": 0,
                      "val": "Appeal - Ntc Designating Record of Appeal APP-003/010/103 (for \"U1\" Appeal filed 04/29/22 ); Filed by Respondent"
                    }
                  ]
                }
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2022-06-23T00:00:00-07:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2022-07-17T18:20:59+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 1782,
                "text": "Notice (Notice of Documents Filed Under Seal ); Filed by Petitioner",
                "textStructured": {
                  "extractedFields": null,
                  "rawOrderedDataArray": [
                    {
                      "childArray": [],
                      "lbl": null,
                      "ord": 0,
                      "val": "Notice (Notice of Documents Filed Under Seal ); Filed by Petitioner"
                    }
                  ]
                }
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2022-06-23T00:00:00-07:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2022-07-17T18:20:59+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 1781,
                "text": "Declaration (Declarations in Support of Motion for Summary Judgment [ portions of document redacted pursuant to protective over] ); Filed by Petitioner",
                "textStructured": {
                  "extractedFields": null,
                  "rawOrderedDataArray": [
                    {
                      "childArray": [],
                      "lbl": null,
                      "ord": 0,
                      "val": "Declaration (Declarations in Support of Motion for Summary Judgment [ portions of document redacted pursuant to protective over] ); Filed by Petitioner"
                    }
                  ]
                }
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2022-06-23T00:00:00-07:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2022-07-17T18:20:59+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 1780,
                "text": "Declaration (FILE UNDER SEAL - Declarations in Support of Motion for Summary Judgment ); Filed by Petitioner",
                "textStructured": {
                  "extractedFields": null,
                  "rawOrderedDataArray": [
                    {
                      "childArray": [],
                      "lbl": null,
                      "ord": 0,
                      "val": "Declaration (FILE UNDER SEAL - Declarations in Support of Motion for Summary Judgment ); Filed by Petitioner"
                    }
                  ]
                }
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2022-06-23T00:00:00-07:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2022-07-17T18:20:59+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 1779,
                "text": "Motion - Summary Judgment (MICHAEL VELCHEREAN S NOTICE OF MOTION AND MOTION FOR SUMMARY ADJUDICATION RE WILL CONTEST ); Filed by Attorney",
                "textStructured": {
                  "extractedFields": null,
                  "rawOrderedDataArray": [
                    {
                      "childArray": [],
                      "lbl": null,
                      "ord": 0,
                      "val": "Motion - Summary Judgment (MICHAEL VELCHEREAN S NOTICE OF MOTION AND MOTION FOR SUMMARY ADJUDICATION RE WILL CONTEST ); Filed by Attorney"
                    }
                  ]
                }
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2022-06-23T00:00:00-07:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2022-07-17T18:20:59+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 1778,
                "text": "Statement (Statement of Undisputed Facts in Support of Summary Judgment ); Filed by Petitioner",
                "textStructured": {
                  "extractedFields": null,
                  "rawOrderedDataArray": [
                    {
                      "childArray": [],
                      "lbl": null,
                      "ord": 0,
                      "val": "Statement (Statement of Undisputed Facts in Support of Summary Judgment ); Filed by Petitioner"
                    }
                  ]
                }
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2022-06-22T00:00:00-07:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2022-07-17T18:20:59+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 1777,
                "text": "Notice (Notice of Material Filed Under Seal ); Filed by Petitioner",
                "textStructured": {
                  "extractedFields": null,
                  "rawOrderedDataArray": [
                    {
                      "childArray": [],
                      "lbl": null,
                      "ord": 0,
                      "val": "Notice (Notice of Material Filed Under Seal ); Filed by Petitioner"
                    }
                  ]
                }
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2022-06-22T00:00:00-07:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2022-07-17T18:20:59+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 1776,
                "text": "Declaration (Declaration in Support of Opposition to Summary Judgment ); Filed by Petitioner",
                "textStructured": {
                  "extractedFields": null,
                  "rawOrderedDataArray": [
                    {
                      "childArray": [],
                      "lbl": null,
                      "ord": 0,
                      "val": "Declaration (Declaration in Support of Opposition to Summary Judgment ); Filed by Petitioner"
                    }
                  ]
                }
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2022-06-22T00:00:00-07:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2022-07-17T18:20:59+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 1775,
                "text": "Declaration (UNDER SEAL - Declarations in Support of Opposition to Motion for Summary Judgment ); Filed by Petitioner",
                "textStructured": {
                  "extractedFields": null,
                  "rawOrderedDataArray": [
                    {
                      "childArray": [],
                      "lbl": null,
                      "ord": 0,
                      "val": "Declaration (UNDER SEAL - Declarations in Support of Opposition to Motion for Summary Judgment ); Filed by Petitioner"
                    }
                  ]
                }
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2022-06-22T00:00:00-07:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2022-07-17T18:20:59+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 1774,
                "text": "Appeal - Notice of Default Issued (\"U2\" RESP NOA 4/29/22 )",
                "textStructured": {
                  "extractedFields": null,
                  "rawOrderedDataArray": [
                    {
                      "childArray": [],
                      "lbl": null,
                      "ord": 0,
                      "val": "Appeal - Notice of Default Issued (\"U2\" RESP NOA 4/29/22 )"
                    }
                  ]
                }
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2022-06-22T00:00:00-07:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2022-07-17T18:20:59+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 1773,
                "text": "Statement (Separate Statement in Opposition to Motion for Summary Judgment ); Filed by Petitioner",
                "textStructured": {
                  "extractedFields": null,
                  "rawOrderedDataArray": [
                    {
                      "childArray": [],
                      "lbl": null,
                      "ord": 0,
                      "val": "Statement (Separate Statement in Opposition to Motion for Summary Judgment ); Filed by Petitioner"
                    }
                  ]
                }
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2022-06-22T00:00:00-07:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2022-07-17T18:20:59+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 1772,
                "text": "Opposition (Opposition to Motion for Summary Judgment ); Filed by Petitioner",
                "textStructured": {
                  "extractedFields": null,
                  "rawOrderedDataArray": [
                    {
                      "childArray": [],
                      "lbl": null,
                      "ord": 0,
                      "val": "Opposition (Opposition to Motion for Summary Judgment ); Filed by Petitioner"
                    }
                  ]
                }
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2022-06-21T00:00:00-07:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2022-07-17T18:20:59+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 1771,
                "text": "Remote Appearance - Scheduled; Filed by Petitioner",
                "textStructured": {
                  "extractedFields": null,
                  "rawOrderedDataArray": [
                    {
                      "childArray": [],
                      "lbl": null,
                      "ord": 0,
                      "val": "Remote Appearance - Scheduled; Filed by Petitioner"
                    }
                  ]
                }
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2022-06-21T00:00:00-07:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2022-07-17T18:20:59+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 1770,
                "text": "Remote Appearance - Scheduled; Filed by Petitioner",
                "textStructured": {
                  "extractedFields": null,
                  "rawOrderedDataArray": [
                    {
                      "childArray": [],
                      "lbl": null,
                      "ord": 0,
                      "val": "Remote Appearance - Scheduled; Filed by Petitioner"
                    }
                  ]
                }
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2022-06-21T00:00:00-07:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2022-07-17T18:20:59+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 1769,
                "text": "Remote Appearance - Scheduled; Filed by Petitioner",
                "textStructured": {
                  "extractedFields": null,
                  "rawOrderedDataArray": [
                    {
                      "childArray": [],
                      "lbl": null,
                      "ord": 0,
                      "val": "Remote Appearance - Scheduled; Filed by Petitioner"
                    }
                  ]
                }
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2022-06-21T00:00:00-07:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2022-07-17T18:20:59+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 1768,
                "text": "Remote Appearance - Scheduled; Filed by Petitioner",
                "textStructured": {
                  "extractedFields": null,
                  "rawOrderedDataArray": [
                    {
                      "childArray": [],
                      "lbl": null,
                      "ord": 0,
                      "val": "Remote Appearance - Scheduled; Filed by Petitioner"
                    }
                  ]
                }
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2022-06-21T00:00:00-07:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2022-07-17T18:20:59+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 1767,
                "text": "Remote Appearance - Scheduled; Filed by Petitioner",
                "textStructured": {
                  "extractedFields": null,
                  "rawOrderedDataArray": [
                    {
                      "childArray": [],
                      "lbl": null,
                      "ord": 0,
                      "val": "Remote Appearance - Scheduled; Filed by Petitioner"
                    }
                  ]
                }
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2022-06-20T00:00:00-07:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2022-07-17T18:20:59+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 1766,
                "text": "Appeal - Notice of Default Issued (\"U2\" APPELLANT )",
                "textStructured": {
                  "extractedFields": null,
                  "rawOrderedDataArray": [
                    {
                      "childArray": [],
                      "lbl": null,
                      "ord": 0,
                      "val": "Appeal - Notice of Default Issued (\"U2\" APPELLANT )"
                    }
                  ]
                }
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2022-06-20T00:00:00-07:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2022-07-17T18:20:59+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 1765,
                "text": "Appeal - Notice of Default Issued (\"U1\" NOA 4/29/22 )",
                "textStructured": {
                  "extractedFields": null,
                  "rawOrderedDataArray": [
                    {
                      "childArray": [],
                      "lbl": null,
                      "ord": 0,
                      "val": "Appeal - Notice of Default Issued (\"U1\" NOA 4/29/22 )"
                    }
                  ]
                }
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2022-06-07T00:00:00-07:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2022-07-17T18:20:59+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 1764,
                "text": "Notice - Ruling; Filed by Petitioner",
                "textStructured": {
                  "extractedFields": null,
                  "rawOrderedDataArray": [
                    {
                      "childArray": [],
                      "lbl": null,
                      "ord": 0,
                      "val": "Notice - Ruling; Filed by Petitioner"
                    }
                  ]
                }
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2022-06-06T00:00:00-07:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2022-07-17T18:20:59+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 1763,
                "text": "Order",
                "textStructured": {
                  "extractedFields": null,
                  "rawOrderedDataArray": [
                    {
                      "childArray": [],
                      "lbl": null,
                      "ord": 0,
                      "val": "Order"
                    }
                  ]
                }
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2022-05-26T00:00:00-07:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2022-07-17T18:20:59+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 1762,
                "text": "Appeal - Ntc Designating Record of Appeal APP-003/010/103 (RESPONDENT'S \"U2\" Appeal - Ntc Designating Record of Appeal APP-003/010/103 ); Filed by Petitioner",
                "textStructured": {
                  "extractedFields": null,
                  "rawOrderedDataArray": [
                    {
                      "childArray": [],
                      "lbl": null,
                      "ord": 0,
                      "val": "Appeal - Ntc Designating Record of Appeal APP-003/010/103 (RESPONDENT'S \"U2\" Appeal - Ntc Designating Record of Appeal APP-003/010/103 ); Filed by Petitioner"
                    }
                  ]
                }
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2022-05-26T00:00:00-07:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2022-07-17T18:20:59+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 1761,
                "text": "Rejected Proposed Order",
                "textStructured": {
                  "extractedFields": null,
                  "rawOrderedDataArray": [
                    {
                      "childArray": [],
                      "lbl": null,
                      "ord": 0,
                      "val": "Rejected Proposed Order"
                    }
                  ]
                }
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2022-05-26T00:00:00-07:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2022-07-17T18:20:59+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 1760,
                "text": "Rejected Proposed Order",
                "textStructured": {
                  "extractedFields": null,
                  "rawOrderedDataArray": [
                    {
                      "childArray": [],
                      "lbl": null,
                      "ord": 0,
                      "val": "Rejected Proposed Order"
                    }
                  ]
                }
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2022-05-26T00:00:00-07:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2022-07-17T18:20:59+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 1759,
                "text": "Notice - Ruling; Filed by Petitioner",
                "textStructured": {
                  "extractedFields": null,
                  "rawOrderedDataArray": [
                    {
                      "childArray": [],
                      "lbl": null,
                      "ord": 0,
                      "val": "Notice - Ruling; Filed by Petitioner"
                    }
                  ]
                }
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2022-05-20T00:00:00-07:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2022-07-17T18:20:59+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 1758,
                "text": "Notice (Notice of Orders from May 10, 2022 Hearing ); Filed by Attorney",
                "textStructured": {
                  "extractedFields": null,
                  "rawOrderedDataArray": [
                    {
                      "childArray": [],
                      "lbl": null,
                      "ord": 0,
                      "val": "Notice (Notice of Orders from May 10, 2022 Hearing ); Filed by Attorney"
                    }
                  ]
                }
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2022-05-17T00:00:00-07:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2022-07-17T18:20:59+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 1757,
                "text": "Appeal - Ntc Designating Record of Appeal APP-003/010/103 (\"U2\" RESPONDENT'S Appeal - Ntc Designating Record of Appeal APP-003/010/103 ); Filed by Petitioner",
                "textStructured": {
                  "extractedFields": null,
                  "rawOrderedDataArray": [
                    {
                      "childArray": [],
                      "lbl": null,
                      "ord": 0,
                      "val": "Appeal - Ntc Designating Record of Appeal APP-003/010/103 (\"U2\" RESPONDENT'S Appeal - Ntc Designating Record of Appeal APP-003/010/103 ); Filed by Petitioner"
                    }
                  ]
                }
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2022-05-13T00:00:00-07:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2022-07-17T18:20:59+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 1756,
                "text": "Notice (Notice Designating Record on Appeal (Comment) ); Filed by Respondent",
                "textStructured": {
                  "extractedFields": null,
                  "rawOrderedDataArray": [
                    {
                      "childArray": [],
                      "lbl": null,
                      "ord": 0,
                      "val": "Notice (Notice Designating Record on Appeal (Comment) ); Filed by Respondent"
                    }
                  ]
                }
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2022-05-10T00:00:00-07:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2022-07-17T18:20:59+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 1755,
                "text": "in Probate Department 5, Small, Michael, Presiding; Accounting Hearing - Held - Continued",
                "textStructured": {
                  "extractedFields": null,
                  "rawOrderedDataArray": [
                    {
                      "childArray": [],
                      "lbl": null,
                      "ord": 0,
                      "val": "in Probate Department 5, Small, Michael, Presiding; Accounting Hearing - Held - Continued"
                    }
                  ]
                }
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2022-05-10T00:00:00-07:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2022-07-17T18:20:59+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 1754,
                "text": "in Probate Department 5, Small, Michael, Presiding; Contest of Will Hearing - Held - Continued",
                "textStructured": {
                  "extractedFields": null,
                  "rawOrderedDataArray": [
                    {
                      "childArray": [],
                      "lbl": null,
                      "ord": 0,
                      "val": "in Probate Department 5, Small, Michael, Presiding; Contest of Will Hearing - Held - Continued"
                    }
                  ]
                }
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2022-05-10T00:00:00-07:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2022-07-17T18:20:59+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 1753,
                "text": "in Probate Department 5, Small, Michael, Presiding; Spousal Property Hearing - Held - Continued",
                "textStructured": {
                  "extractedFields": null,
                  "rawOrderedDataArray": [
                    {
                      "childArray": [],
                      "lbl": null,
                      "ord": 0,
                      "val": "in Probate Department 5, Small, Michael, Presiding; Spousal Property Hearing - Held - Continued"
                    }
                  ]
                }
              },
              {
                "boundary": null,
                "docketBadge": "DOCKET",
                "docketEntryDate": "2022-05-10T00:00:00-07:00",
                "docketEntryPrimaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntryPrimaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketEntrySecondaryDocuments": {
                  "caseDocumentArray": [],
                  "nextPageAPI": null,
                  "object": "DocketEntrySecondaryDocuments",
                  "pageNumber": 0,
                  "totalCount": 0,
                  "totalPages": 0
                },
                "docketNumber": null,
                "lastFetchDate": "2022-07-17T18:20:59+00:00",
                "object": "DocketEntry",
                "referencedDocketNumberArray": [],
                "sortOrder": 1752,
                "text": "in Probate Department 5, Small, Michael, Presiding; Authority Hearing (Non-Trust) - Held - Continued",
                "textStructured": {
                  "extractedFields": null,
                  "rawOrderedDataArray": [
                    {
                      "childArray": [],
                      "lbl": null,
                      "ord": 0,
                      "val": "in Probate Department 5, Small, Michael, Presiding; Authority Hearing (Non-Trust) - Held - Continued"
                    }
                  ]
                }
              }
            ],
            "nextPageAPI": "https://enterpriseapi.unicourt.com/case/CASEar7a26f15e76cf/docketEntries?pageNumber=2",
            "object": "DocketEntries",
            "pageNumber": 1,
            "totalCount": 1852,
            "totalPages": 19
          },
          "exportAPI": "https://enterpriseapi.unicourt.com/caseExport/CASEar7a26f15e76cf",
          "filedDate": "2018-12-05T00:00:00+00:00",
          "firstFetchDate": "2018-12-07T05:17:31+00:00",
          "hasDocumentsWithPreview": true,
          "hasOnlyMetaInfo": false,
          "hearings": {
            "hearingArray": [
              {
                "firstFetchDate": "2022-07-17T18:21:08+00:00",
                "hearingDate": "2022-08-23T13:30:00-07:00",
                "hearingDescription": "Authority Hearing (Non-Trust)",
                "hearingStructured": null,
                "lastFetchDate": "2022-07-17T18:21:08+00:00",
                "location": "Probate Department 5 at 111 North Hill Street, Los Angeles, CA 90012",
                "object": "Hearing"
              },
              {
                "firstFetchDate": "2022-07-17T18:21:08+00:00",
                "hearingDate": "2022-08-23T13:30:00-07:00",
                "hearingDescription": "Authority Hearing (Non-Trust)",
                "hearingStructured": null,
                "lastFetchDate": "2022-07-17T18:21:08+00:00",
                "location": "Probate Department 5 at 111 North Hill Street, Los Angeles, CA 90012",
                "object": "Hearing"
              },
              {
                "firstFetchDate": "2022-07-17T18:21:08+00:00",
                "hearingDate": "2022-08-23T13:30:00-07:00",
                "hearingDescription": "Petition Hearing",
                "hearingStructured": null,
                "lastFetchDate": "2022-07-17T18:21:08+00:00",
                "location": "Probate Department 5 at 111 North Hill Street, Los Angeles, CA 90012",
                "object": "Hearing"
              },
              {
                "firstFetchDate": "2022-07-17T18:21:08+00:00",
                "hearingDate": "2022-09-08T09:30:00-07:00",
                "hearingDescription": "Appointment  Hearing - Decedent's Estate",
                "hearingStructured": null,
                "lastFetchDate": "2022-07-17T18:21:08+00:00",
                "location": "Probate Department 5 at 111 North Hill Street, Los Angeles, CA 90012",
                "object": "Hearing"
              },
              {
                "firstFetchDate": "2022-07-17T18:21:08+00:00",
                "hearingDate": "2022-09-08T09:30:00-07:00",
                "hearingDescription": "Spousal Property Hearing",
                "hearingStructured": null,
                "lastFetchDate": "2022-07-17T18:21:08+00:00",
                "location": "Probate Department 5 at 111 North Hill Street, Los Angeles, CA 90012",
                "object": "Hearing"
              },
              {
                "firstFetchDate": "2022-07-17T18:21:08+00:00",
                "hearingDate": "2022-09-08T09:30:00-07:00",
                "hearingDescription": "Motion for Summary Judgment Hearing",
                "hearingStructured": null,
                "lastFetchDate": "2022-07-17T18:21:08+00:00",
                "location": "Probate Department 5 at 111 North Hill Street, Los Angeles, CA 90012",
                "object": "Hearing"
              },
              {
                "firstFetchDate": "2022-07-17T18:21:08+00:00",
                "hearingDate": "2022-09-08T09:30:00-07:00",
                "hearingDescription": "Contest of Will Hearing",
                "hearingStructured": null,
                "lastFetchDate": "2022-07-17T18:21:08+00:00",
                "location": "Probate Department 5 at 111 North Hill Street, Los Angeles, CA 90012",
                "object": "Hearing"
              },
              {
                "firstFetchDate": "2022-07-17T18:21:08+00:00",
                "hearingDate": "2023-01-04T09:30:00-08:00",
                "hearingDescription": "Accounting Hearing",
                "hearingStructured": null,
                "lastFetchDate": "2022-07-17T18:21:08+00:00",
                "location": "Probate Department 5 at 111 North Hill Street, Los Angeles, CA 90012",
                "object": "Hearing"
              },
              {
                "firstFetchDate": "2022-07-17T18:21:08+00:00",
                "hearingDate": "2023-01-04T09:30:00-08:00",
                "hearingDescription": "Probate Code 850 Hearing",
                "hearingStructured": null,
                "lastFetchDate": "2022-07-17T18:21:08+00:00",
                "location": "Probate Department 5 at 111 North Hill Street, Los Angeles, CA 90012",
                "object": "Hearing"
              },
              {
                "firstFetchDate": "2022-07-17T18:21:08+00:00",
                "hearingDate": "2023-01-04T09:30:00-08:00",
                "hearingDescription": "Accounting Hearing",
                "hearingStructured": null,
                "lastFetchDate": "2022-07-17T18:21:08+00:00",
                "location": "Probate Department 5 at 111 North Hill Street, Los Angeles, CA 90012",
                "object": "Hearing"
              },
              {
                "firstFetchDate": "2022-07-17T18:21:08+00:00",
                "hearingDate": "2023-01-04T09:30:00-08:00",
                "hearingDescription": "Authority Hearing (Non-Trust)",
                "hearingStructured": null,
                "lastFetchDate": "2022-07-17T18:21:08+00:00",
                "location": "Probate Department 5 at 111 North Hill Street, Los Angeles, CA 90012",
                "object": "Hearing"
              },
              {
                "firstFetchDate": "2022-07-17T18:21:08+00:00",
                "hearingDate": "2023-01-04T09:30:00-08:00",
                "hearingDescription": "Petition Hearing",
                "hearingStructured": null,
                "lastFetchDate": "2022-07-17T18:21:08+00:00",
                "location": "Probate Department 5 at 111 North Hill Street, Los Angeles, CA 90012",
                "object": "Hearing"
              },
              {
                "firstFetchDate": "2022-07-17T18:21:08+00:00",
                "hearingDate": "2023-01-09T08:30:00-08:00",
                "hearingDescription": "Court Trial",
                "hearingStructured": null,
                "lastFetchDate": "2022-07-17T18:21:08+00:00",
                "location": "Probate Department 5 at 111 North Hill Street, Los Angeles, CA 90012",
                "object": "Hearing"
              },
              {
                "firstFetchDate": "2022-07-17T18:21:08+00:00",
                "hearingDate": "2023-01-09T08:30:00-08:00",
                "hearingDescription": "Court Trial",
                "hearingStructured": null,
                "lastFetchDate": "2022-07-17T18:21:08+00:00",
                "location": "Probate Department 5 at 111 North Hill Street, Los Angeles, CA 90012",
                "object": "Hearing"
              },
              {
                "firstFetchDate": "2022-07-17T18:21:08+00:00",
                "hearingDate": "2023-02-06T08:30:00-08:00",
                "hearingDescription": "Court Trial",
                "hearingStructured": null,
                "lastFetchDate": "2022-07-17T18:21:08+00:00",
                "location": "Probate Department 5 at 111 North Hill Street, Los Angeles, CA 90012",
                "object": "Hearing"
              },
              {
                "firstFetchDate": "2022-07-17T18:21:08+00:00",
                "hearingDate": "2023-02-06T08:30:00-08:00",
                "hearingDescription": "Court Trial",
                "hearingStructured": null,
                "lastFetchDate": "2022-07-17T18:21:08+00:00",
                "location": "Probate Department 5 at 111 North Hill Street, Los Angeles, CA 90012",
                "object": "Hearing"
              },
              {
                "firstFetchDate": "2022-07-17T18:21:08+00:00",
                "hearingDate": "2023-02-07T13:30:00-08:00",
                "hearingDescription": "Court Trial",
                "hearingStructured": null,
                "lastFetchDate": "2022-07-17T18:21:08+00:00",
                "location": "Probate Department 5 at 111 North Hill Street, Los Angeles, CA 90012",
                "object": "Hearing"
              },
              {
                "firstFetchDate": "2022-07-17T18:21:08+00:00",
                "hearingDate": "2023-02-07T13:30:00-08:00",
                "hearingDescription": "Court Trial",
                "hearingStructured": null,
                "lastFetchDate": "2022-07-17T18:21:08+00:00",
                "location": "Probate Department 5 at 111 North Hill Street, Los Angeles, CA 90012",
                "object": "Hearing"
              },
              {
                "firstFetchDate": "2022-07-17T18:21:08+00:00",
                "hearingDate": "2023-02-08T13:30:00-08:00",
                "hearingDescription": "Court Trial",
                "hearingStructured": null,
                "lastFetchDate": "2022-07-17T18:21:08+00:00",
                "location": "Probate Department 5 at 111 North Hill Street, Los Angeles, CA 90012",
                "object": "Hearing"
              },
              {
                "firstFetchDate": "2022-07-17T18:21:08+00:00",
                "hearingDate": "2023-02-08T13:30:00-08:00",
                "hearingDescription": "Court Trial",
                "hearingStructured": null,
                "lastFetchDate": "2022-07-17T18:21:08+00:00",
                "location": "Probate Department 5 at 111 North Hill Street, Los Angeles, CA 90012",
                "object": "Hearing"
              },
              {
                "firstFetchDate": "2022-07-17T18:21:08+00:00",
                "hearingDate": "2023-02-27T08:30:00-08:00",
                "hearingDescription": "Court Trial",
                "hearingStructured": null,
                "lastFetchDate": "2022-07-17T18:21:08+00:00",
                "location": "Probate Department 5 at 111 North Hill Street, Los Angeles, CA 90012",
                "object": "Hearing"
              },
              {
                "firstFetchDate": "2022-07-17T18:21:08+00:00",
                "hearingDate": "2023-02-27T08:30:00-08:00",
                "hearingDescription": "Court Trial",
                "hearingStructured": null,
                "lastFetchDate": "2022-07-17T18:21:08+00:00",
                "location": "Probate Department 5 at 111 North Hill Street, Los Angeles, CA 90012",
                "object": "Hearing"
              }
            ],
            "nextPageAPI": null,
            "object": "Hearings",
            "pageNumber": 1,
            "totalCount": 22,
            "totalPages": 1
          },
          "judges": {
            "judgeArray": [
              {
                "contact": {
                  "addressArray": [],
                  "emailArray": [],
                  "object": "Contact",
                  "phoneNumberArray": []
                },
                "firstFetchDate": "2019-01-10T01:10:37+00:00",
                "firstName": "PAUL",
                "isVisible": true,
                "judgeId": "JUDGar9e59ea1dda8b",
                "judgeType": {
                  "createdDate": "2022-03-28T04:59:06+00:00",
                  "judgeTypeId": "JGTPSZBRSRcT94vpaA",
                  "name": "Presiding Judge",
                  "object": "JudgeType"
                },
                "lastFetchDate": "2022-07-17T17:57:51+00:00",
                "lastName": "SUZUKI",
                "middleName": "T",
                "name": "SUZUKI, PAUL T.",
                "namePrefix": null,
                "nameSuffix": null,
                "object": "Judge",
                "possibleNormJudgeArray": [
                  {
                    "associatedNormAttorneysAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUD22222222222222/associatedNormParties?pageNumber=1",
                    "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUD22222222222222/associatedNormLawFirms?pageNumber=1",
                    "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUD22222222222222/associatedNormJudges?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUD22222222222222/caseCountAnalyticsByNormJudge?pageNumber=1",
                    "confidenceScore": 0.5,
                    "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUD22222222222222",
                    "normJudgeId": "NJUD22222222222222",
                    "normJudgeName": "CINDY C AGUIRRE",
                    "object": "PossibleNormJudge",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.69,
                      "otherPotentialNormJudges": 0,
                      "phone": "Not_Provided_By_Data_Source"
                    }
                  }
                ],
                "sourceJudgeType": "PRESIDING"
              },
              {
                "contact": {
                  "addressArray": [],
                  "emailArray": [],
                  "object": "Contact",
                  "phoneNumberArray": []
                },
                "firstFetchDate": "2019-08-05T03:10:15+00:00",
                "firstName": "SAMANTHA",
                "isVisible": true,
                "judgeId": "JUDGar0ca8084f8de2",
                "judgeType": {
                  "createdDate": "2022-03-28T04:59:06+00:00",
                  "judgeTypeId": "JGTPSZBRSRcT94vpaA",
                  "name": "Presiding Judge",
                  "object": "JudgeType"
                },
                "lastFetchDate": "2022-07-17T17:57:51+00:00",
                "lastName": "JESSNER",
                "middleName": "P",
                "name": "JESSNER, SAMANTHA P.",
                "namePrefix": null,
                "nameSuffix": null,
                "object": "Judge",
                "possibleNormJudgeArray": [
                  {
                    "associatedNormAttorneysAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUD22222222222222/associatedNormParties?pageNumber=1",
                    "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUD22222222222222/associatedNormLawFirms?pageNumber=1",
                    "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUD22222222222222/associatedNormJudges?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUD22222222222222/caseCountAnalyticsByNormJudge?pageNumber=1",
                    "confidenceScore": 0.5,
                    "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUD22222222222222",
                    "normJudgeId": "NJUD22222222222222",
                    "normJudgeName": "CINDY C AGUIRRE",
                    "object": "PossibleNormJudge",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.69,
                      "otherPotentialNormJudges": 0,
                      "phone": "Not_Provided_By_Data_Source"
                    }
                  }
                ],
                "sourceJudgeType": "PRESIDING"
              },
              {
                "contact": {
                  "addressArray": [],
                  "emailArray": [],
                  "object": "Contact",
                  "phoneNumberArray": []
                },
                "firstFetchDate": "2019-09-23T21:53:53+00:00",
                "firstName": "MICHAEL",
                "isVisible": true,
                "judgeId": "JUDGar015de622a6b7",
                "judgeType": {
                  "createdDate": "2022-03-28T04:59:06+00:00",
                  "judgeTypeId": "JGTPSZBRSRcT94vpaA",
                  "name": "Presiding Judge",
                  "object": "JudgeType"
                },
                "lastFetchDate": "2022-07-17T17:57:51+00:00",
                "lastName": "SMALL",
                "middleName": null,
                "name": "SMALL, MICHAEL",
                "namePrefix": null,
                "nameSuffix": null,
                "object": "Judge",
                "possibleNormJudgeArray": [
                  {
                    "associatedNormAttorneysAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUD22222222222222/associatedNormParties?pageNumber=1",
                    "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUD22222222222222/associatedNormLawFirms?pageNumber=1",
                    "associatedNormPartiesAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUD22222222222222/associatedNormJudges?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUD22222222222222/caseCountAnalyticsByNormJudge?pageNumber=1",
                    "confidenceScore": 0.5,
                    "normJudgeAPI": "https://enterpriseapi.unicourt.com/normJudge/NJUD22222222222222",
                    "normJudgeId": "NJUD22222222222222",
                    "normJudgeName": "CINDY C AGUIRRE",
                    "object": "PossibleNormJudge",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.69,
                      "otherPotentialNormJudges": 0,
                      "phone": "Not_Provided_By_Data_Source"
                    }
                  }
                ],
                "sourceJudgeType": "PRESIDING"
              }
            ],
            "nextPageAPI": null,
            "object": "Judges",
            "pageNumber": 1,
            "totalCount": 3,
            "totalPages": 1
          },
          "lastFetchDate": "2022-07-17T17:57:52+00:00",
          "lastFetchDateWithUpdates": "2022-07-17T17:57:52+00:00",
          "object": "Case",
          "participantsLastFetchDate": "2022-07-17T17:57:52+00:00",
          "parties": {
            "nextPageAPI": null,
            "object": "Parties",
            "pageNumber": 1,
            "partyArray": [
              {
                "attorneyRepresentationType": {
                  "attorneyRepresentationTypeId": "ATRPDTy7Tqdwk974XC",
                  "createdDate": "2022-03-28T04:59:20+00:00",
                  "name": "Attorney Represented",
                  "object": "AttorneyRepresentationType"
                },
                "contact": {
                  "addressArray": [],
                  "emailArray": [],
                  "object": "Contact",
                  "phoneNumberArray": []
                },
                "firstFetchDate": "2020-09-26T01:19:18+00:00",
                "firstName": "SOPHIA",
                "isVisible": true,
                "lastFetchDate": "2022-07-17T17:57:45+00:00",
                "lastName": "HUANG",
                "middleName": null,
                "name": "HUANG SOPHIA",
                "namePrefix": null,
                "nameSuffix": null,
                "object": "Party",
                "partyAttorneyAssociations": {
                  "nextPageAPI": null,
                  "object": "PartyAttorneyAssociations",
                  "pageNumber": 1,
                  "partyAttorneyAssociationArray": [
                    {
                      "attorneyId": "ATTYar05a3aaac93d7",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar4fd420df7cc5",
                      "partyId": "PRTYard42f215877e8"
                    },
                    {
                      "attorneyId": "ATTYarda9db4bd742d",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar89b849e198c9",
                      "partyId": "PRTYard42f215877e8"
                    },
                    {
                      "attorneyId": "ATTYar8f0120e2dad1",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar6ac2222cdc9d",
                      "partyId": "PRTYard42f215877e8"
                    },
                    {
                      "attorneyId": "ATTYar1f7e4ec6c328",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar69b1d311e2d5",
                      "partyId": "PRTYard42f215877e8"
                    },
                    {
                      "attorneyId": "ATTYarb1f617bee9ac",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar2bdde68fb026",
                      "partyId": "PRTYard42f215877e8"
                    },
                    {
                      "attorneyId": "ATTYar190d6e7c6892",
                      "isVisible": false,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMarb9331bc3c1fa",
                      "partyId": "PRTYard42f215877e8"
                    },
                    {
                      "attorneyId": "ATTYar9098453c5886",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar453b73d1cfc4",
                      "partyId": "PRTYard42f215877e8"
                    },
                    {
                      "attorneyId": "ATTYar3bca6a530082",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar9162c29b81e3",
                      "partyId": "PRTYard42f215877e8"
                    }
                  ],
                  "totalCount": 8,
                  "totalPages": 1
                },
                "partyClassificationType": "INDIVIDUAL",
                "partyId": "PRTYard42f215877e8",
                "partyRole": {
                  "createdDate": "2022-05-27T00:50:33+00:00",
                  "description": null,
                  "name": "Appellant",
                  "object": "PartyRole",
                  "partyRoleGroup": "Party Offensive",
                  "partyRoleGroupId": "PTYGBnjxbx6tKNfVEP",
                  "partyRoleId": "PTYR4EZAKv3KnbrpaU"
                },
                "possibleNormPartyArray": [
                  {
                    "associatedNormAttorneysAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormAttorneys?pageNumber=1",
                    "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormJudges?pageNumber=1",
                    "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormLawFirms?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormPartyAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByNormParty?pageNumber=1&q=normPartyId:NPTY22222222222222",
                    "caseCountAnalyticsByOpposingNormPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/caseCountAnalyticsByOpposingNormParty?pageNumber=1",
                    "confidenceScore": 0.5,
                    "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222",
                    "normPartyId": "NPTY22222222222222",
                    "normPartyName": "DAAZ PROPERTIES, L.L.C.",
                    "object": "PossibleNormParty",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.69,
                      "otherPotentialNormParties": 0,
                      "phone": "Not_Provided_By_Data_Source",
                      "secretaryOfStateId": "Not_Provided_By_Data_Source"
                    }
                  }
                ],
                "sourcePartyRole": "APPELLANT"
              },
              {
                "attorneyRepresentationType": {
                  "attorneyRepresentationTypeId": "ATRPDTy7Tqdwk974XC",
                  "createdDate": "2022-03-28T04:59:20+00:00",
                  "name": "Attorney Represented",
                  "object": "AttorneyRepresentationType"
                },
                "contact": {
                  "addressArray": [],
                  "emailArray": [],
                  "object": "Contact",
                  "phoneNumberArray": []
                },
                "firstFetchDate": "2020-09-26T01:19:19+00:00",
                "firstName": "MEI",
                "isVisible": true,
                "lastFetchDate": "2022-07-17T17:57:47+00:00",
                "lastName": "LIN",
                "middleName": "JUNG",
                "name": "LIN MEI JUNG",
                "namePrefix": null,
                "nameSuffix": null,
                "object": "Party",
                "partyAttorneyAssociations": {
                  "nextPageAPI": null,
                  "object": "PartyAttorneyAssociations",
                  "pageNumber": 1,
                  "partyAttorneyAssociationArray": [
                    {
                      "attorneyId": "ATTYar05a3aaac93d7",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar5eeb58e52dd6",
                      "partyId": "PRTYar14aa8794c4fe"
                    },
                    {
                      "attorneyId": "ATTYarda9db4bd742d",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar3c2a94797a89",
                      "partyId": "PRTYar14aa8794c4fe"
                    },
                    {
                      "attorneyId": "ATTYar8f0120e2dad1",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMarc8841de822f0",
                      "partyId": "PRTYar14aa8794c4fe"
                    },
                    {
                      "attorneyId": "ATTYar1f7e4ec6c328",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar476e32cfeaa3",
                      "partyId": "PRTYar14aa8794c4fe"
                    },
                    {
                      "attorneyId": "ATTYarb1f617bee9ac",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar14a308402684",
                      "partyId": "PRTYar14aa8794c4fe"
                    },
                    {
                      "attorneyId": "ATTYar190d6e7c6892",
                      "isVisible": false,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMarb981b9759716",
                      "partyId": "PRTYar14aa8794c4fe"
                    },
                    {
                      "attorneyId": "ATTYar9098453c5886",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar5e83d99730cf",
                      "partyId": "PRTYar14aa8794c4fe"
                    },
                    {
                      "attorneyId": "ATTYar3bca6a530082",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar6f7db8bdc413",
                      "partyId": "PRTYar14aa8794c4fe"
                    }
                  ],
                  "totalCount": 8,
                  "totalPages": 1
                },
                "partyClassificationType": "INDIVIDUAL",
                "partyId": "PRTYar14aa8794c4fe",
                "partyRole": {
                  "createdDate": "2022-05-27T00:50:33+00:00",
                  "description": null,
                  "name": "Appellant",
                  "object": "PartyRole",
                  "partyRoleGroup": "Party Offensive",
                  "partyRoleGroupId": "PTYGBnjxbx6tKNfVEP",
                  "partyRoleId": "PTYR4EZAKv3KnbrpaU"
                },
                "possibleNormPartyArray": [
                  {
                    "associatedNormAttorneysAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormAttorneys?pageNumber=1",
                    "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormJudges?pageNumber=1",
                    "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormLawFirms?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormPartyAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByNormParty?pageNumber=1&q=normPartyId:NPTY22222222222222",
                    "caseCountAnalyticsByOpposingNormPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/caseCountAnalyticsByOpposingNormParty?pageNumber=1",
                    "confidenceScore": 0.5,
                    "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222",
                    "normPartyId": "NPTY22222222222222",
                    "normPartyName": "DAAZ PROPERTIES, L.L.C.",
                    "object": "PossibleNormParty",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.69,
                      "otherPotentialNormParties": 0,
                      "phone": "Not_Provided_By_Data_Source",
                      "secretaryOfStateId": "Not_Provided_By_Data_Source"
                    }
                  }
                ],
                "sourcePartyRole": "APPELLANT"
              },
              {
                "attorneyRepresentationType": {
                  "attorneyRepresentationTypeId": "ATRPDTy7Tqdwk974XC",
                  "createdDate": "2022-03-28T04:59:20+00:00",
                  "name": "Attorney Represented",
                  "object": "AttorneyRepresentationType"
                },
                "contact": {
                  "addressArray": [],
                  "emailArray": [],
                  "object": "Contact",
                  "phoneNumberArray": []
                },
                "firstFetchDate": "2020-09-26T01:19:20+00:00",
                "firstName": "MING-CHAO",
                "isVisible": true,
                "lastFetchDate": "2022-07-17T17:57:44+00:00",
                "lastName": "HUANG",
                "middleName": null,
                "name": "HUANG MING-CHAO",
                "namePrefix": null,
                "nameSuffix": null,
                "object": "Party",
                "partyAttorneyAssociations": {
                  "nextPageAPI": null,
                  "object": "PartyAttorneyAssociations",
                  "pageNumber": 1,
                  "partyAttorneyAssociationArray": [
                    {
                      "attorneyId": "ATTYar05a3aaac93d7",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMarc0fa2ff51d9a",
                      "partyId": "PRTYar27730b3b4b31"
                    },
                    {
                      "attorneyId": "ATTYarda9db4bd742d",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMarcd6d3787377b",
                      "partyId": "PRTYar27730b3b4b31"
                    },
                    {
                      "attorneyId": "ATTYar8f0120e2dad1",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar78c930d1ed3d",
                      "partyId": "PRTYar27730b3b4b31"
                    },
                    {
                      "attorneyId": "ATTYar1f7e4ec6c328",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMarf1b50975b259",
                      "partyId": "PRTYar27730b3b4b31"
                    },
                    {
                      "attorneyId": "ATTYarb1f617bee9ac",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar6960fbbadeef",
                      "partyId": "PRTYar27730b3b4b31"
                    },
                    {
                      "attorneyId": "ATTYar190d6e7c6892",
                      "isVisible": false,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMardad5e61697d1",
                      "partyId": "PRTYar27730b3b4b31"
                    },
                    {
                      "attorneyId": "ATTYar9098453c5886",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar412bb38c4e99",
                      "partyId": "PRTYar27730b3b4b31"
                    },
                    {
                      "attorneyId": "ATTYar3bca6a530082",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMardad6e5bf0785",
                      "partyId": "PRTYar27730b3b4b31"
                    }
                  ],
                  "totalCount": 8,
                  "totalPages": 1
                },
                "partyClassificationType": "INDIVIDUAL",
                "partyId": "PRTYar27730b3b4b31",
                "partyRole": {
                  "createdDate": "2022-05-27T00:50:33+00:00",
                  "description": null,
                  "name": "Appellant",
                  "object": "PartyRole",
                  "partyRoleGroup": "Party Offensive",
                  "partyRoleGroupId": "PTYGBnjxbx6tKNfVEP",
                  "partyRoleId": "PTYR4EZAKv3KnbrpaU"
                },
                "possibleNormPartyArray": [
                  {
                    "associatedNormAttorneysAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormAttorneys?pageNumber=1",
                    "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormJudges?pageNumber=1",
                    "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormLawFirms?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormPartyAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByNormParty?pageNumber=1&q=normPartyId:NPTY22222222222222",
                    "caseCountAnalyticsByOpposingNormPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/caseCountAnalyticsByOpposingNormParty?pageNumber=1",
                    "confidenceScore": 0.5,
                    "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222",
                    "normPartyId": "NPTY22222222222222",
                    "normPartyName": "DAAZ PROPERTIES, L.L.C.",
                    "object": "PossibleNormParty",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.69,
                      "otherPotentialNormParties": 0,
                      "phone": "Not_Provided_By_Data_Source",
                      "secretaryOfStateId": "Not_Provided_By_Data_Source"
                    }
                  }
                ],
                "sourcePartyRole": "APPELLANT"
              },
              {
                "attorneyRepresentationType": {
                  "attorneyRepresentationTypeId": "ATRP2jCCwDRNaP97DX",
                  "createdDate": "2022-03-28T04:59:20+00:00",
                  "name": "Unrepresented",
                  "object": "AttorneyRepresentationType"
                },
                "contact": {
                  "addressArray": [],
                  "emailArray": [],
                  "object": "Contact",
                  "phoneNumberArray": []
                },
                "firstFetchDate": "2020-04-04T00:08:56+00:00",
                "firstName": "STATE OF CALIFORNIA FRANCHISE TAX BOARD",
                "isVisible": false,
                "lastFetchDate": "2020-04-22T05:04:45+00:00",
                "lastName": null,
                "middleName": null,
                "name": "STATE OF CALIFORNIA FRANCHISE TAX BOARD",
                "namePrefix": null,
                "nameSuffix": null,
                "object": "Party",
                "partyAttorneyAssociations": {
                  "nextPageAPI": null,
                  "object": "PartyAttorneyAssociations",
                  "pageNumber": 0,
                  "partyAttorneyAssociationArray": [],
                  "totalCount": 0,
                  "totalPages": 0
                },
                "partyClassificationType": "OTHER",
                "partyId": "PRTYar7d3a81bf4d4d",
                "partyRole": {
                  "createdDate": "2022-05-27T00:50:33+00:00",
                  "description": null,
                  "name": "Claimant",
                  "object": "PartyRole",
                  "partyRoleGroup": "Party Offensive",
                  "partyRoleGroupId": "PTYGBnjxbx6tKNfVEP",
                  "partyRoleId": "PTYRcxPxkhdTMCX4Cj"
                },
                "possibleNormPartyArray": [
                  {
                    "associatedNormAttorneysAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormAttorneys?pageNumber=1",
                    "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormJudges?pageNumber=1",
                    "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormLawFirms?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormPartyAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByNormParty?pageNumber=1&q=normPartyId:NPTY22222222222222",
                    "caseCountAnalyticsByOpposingNormPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/caseCountAnalyticsByOpposingNormParty?pageNumber=1",
                    "confidenceScore": 0.5,
                    "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222",
                    "normPartyId": "NPTY22222222222222",
                    "normPartyName": "DAAZ PROPERTIES, L.L.C.",
                    "object": "PossibleNormParty",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.69,
                      "otherPotentialNormParties": 0,
                      "phone": "Not_Provided_By_Data_Source",
                      "secretaryOfStateId": "Not_Provided_By_Data_Source"
                    }
                  }
                ],
                "sourcePartyRole": "CLAIMANT"
              },
              {
                "attorneyRepresentationType": {
                  "attorneyRepresentationTypeId": "ATRPDTy7Tqdwk974XC",
                  "createdDate": "2022-03-28T04:59:20+00:00",
                  "name": "Attorney Represented",
                  "object": "AttorneyRepresentationType"
                },
                "contact": {
                  "addressArray": [],
                  "emailArray": [],
                  "object": "Contact",
                  "phoneNumberArray": []
                },
                "firstFetchDate": "2021-04-19T12:52:14+00:00",
                "firstName": "ALICE",
                "isVisible": true,
                "lastFetchDate": "2022-07-17T17:57:42+00:00",
                "lastName": "ALARCON",
                "middleName": null,
                "name": "ALARCON ALICE",
                "namePrefix": null,
                "nameSuffix": null,
                "object": "Party",
                "partyAttorneyAssociations": {
                  "nextPageAPI": null,
                  "object": "PartyAttorneyAssociations",
                  "pageNumber": 1,
                  "partyAttorneyAssociationArray": [
                    {
                      "attorneyId": "ATTYar88dea303353d",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar13a11ea6797b",
                      "partyId": "PRTYar4a79142c8450"
                    },
                    {
                      "attorneyId": "ATTYaraef1933067a6",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMarb358d413bc16",
                      "partyId": "PRTYar4a79142c8450"
                    },
                    {
                      "attorneyId": "ATTYar2c3d4e9c7ce7",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar0e5ecf743a9d",
                      "partyId": "PRTYar4a79142c8450"
                    },
                    {
                      "attorneyId": "ATTYarca73e0515c40",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar044b266c0aed",
                      "partyId": "PRTYar4a79142c8450"
                    },
                    {
                      "attorneyId": "ATTYar705685924fd0",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMarc5925e650d5f",
                      "partyId": "PRTYar4a79142c8450"
                    },
                    {
                      "attorneyId": "ATTYara52f690e1b29",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar3b97825d653a",
                      "partyId": "PRTYar4a79142c8450"
                    },
                    {
                      "attorneyId": "ATTYar7735798bfa5f",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar8eda6b72734f",
                      "partyId": "PRTYar4a79142c8450"
                    },
                    {
                      "attorneyId": "ATTYar90ba6d78ed02",
                      "isVisible": false,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar17426d94ea34",
                      "partyId": "PRTYar4a79142c8450"
                    },
                    {
                      "attorneyId": "ATTYara860b72a11ac",
                      "isVisible": false,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMare9c4668c7e90",
                      "partyId": "PRTYar4a79142c8450"
                    },
                    {
                      "attorneyId": "ATTYar540f3795f94b",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMarcc83354889c3",
                      "partyId": "PRTYar4a79142c8450"
                    }
                  ],
                  "totalCount": 10,
                  "totalPages": 1
                },
                "partyClassificationType": "INDIVIDUAL",
                "partyId": "PRTYar4a79142c8450",
                "partyRole": {
                  "createdDate": "2022-05-27T00:50:33+00:00",
                  "description": null,
                  "name": "Claimant",
                  "object": "PartyRole",
                  "partyRoleGroup": "Party Offensive",
                  "partyRoleGroupId": "PTYGBnjxbx6tKNfVEP",
                  "partyRoleId": "PTYRcxPxkhdTMCX4Cj"
                },
                "possibleNormPartyArray": [
                  {
                    "associatedNormAttorneysAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormAttorneys?pageNumber=1",
                    "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormJudges?pageNumber=1",
                    "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormLawFirms?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormPartyAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByNormParty?pageNumber=1&q=normPartyId:NPTY22222222222222",
                    "caseCountAnalyticsByOpposingNormPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/caseCountAnalyticsByOpposingNormParty?pageNumber=1",
                    "confidenceScore": 0.5,
                    "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222",
                    "normPartyId": "NPTY22222222222222",
                    "normPartyName": "DAAZ PROPERTIES, L.L.C.",
                    "object": "PossibleNormParty",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.69,
                      "otherPotentialNormParties": 0,
                      "phone": "Not_Provided_By_Data_Source",
                      "secretaryOfStateId": "Not_Provided_By_Data_Source"
                    }
                  }
                ],
                "sourcePartyRole": "CLAIMANT REPORTER"
              },
              {
                "attorneyRepresentationType": {
                  "attorneyRepresentationTypeId": "ATRP2jCCwDRNaP97DX",
                  "createdDate": "2022-03-28T04:59:20+00:00",
                  "name": "Unrepresented",
                  "object": "AttorneyRepresentationType"
                },
                "contact": {
                  "addressArray": [],
                  "emailArray": [],
                  "object": "Contact",
                  "phoneNumberArray": []
                },
                "firstFetchDate": "2018-12-07T05:17:31+00:00",
                "firstName": "AMY",
                "isVisible": true,
                "lastFetchDate": "2022-07-17T17:57:44+00:00",
                "lastName": "HUANG",
                "middleName": null,
                "name": "HUANG AMY",
                "namePrefix": null,
                "nameSuffix": null,
                "object": "Party",
                "partyAttorneyAssociations": {
                  "nextPageAPI": null,
                  "object": "PartyAttorneyAssociations",
                  "pageNumber": 0,
                  "partyAttorneyAssociationArray": [],
                  "totalCount": 0,
                  "totalPages": 0
                },
                "partyClassificationType": "INDIVIDUAL",
                "partyId": "PRTYar9f10e1344739",
                "partyRole": {
                  "createdDate": "2022-05-27T00:50:33+00:00",
                  "description": null,
                  "name": "Decedent",
                  "object": "PartyRole",
                  "partyRoleGroup": "Participant",
                  "partyRoleGroupId": "PTYGZPUbQam7EQqkoN",
                  "partyRoleId": "PTYRDv9dMSiy3XDvA6"
                },
                "possibleNormPartyArray": [
                  {
                    "associatedNormAttorneysAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormAttorneys?pageNumber=1",
                    "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormJudges?pageNumber=1",
                    "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormLawFirms?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormPartyAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByNormParty?pageNumber=1&q=normPartyId:NPTY22222222222222",
                    "caseCountAnalyticsByOpposingNormPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/caseCountAnalyticsByOpposingNormParty?pageNumber=1",
                    "confidenceScore": 0.5,
                    "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222",
                    "normPartyId": "NPTY22222222222222",
                    "normPartyName": "DAAZ PROPERTIES, L.L.C.",
                    "object": "PossibleNormParty",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.69,
                      "otherPotentialNormParties": 0,
                      "phone": "Not_Provided_By_Data_Source",
                      "secretaryOfStateId": "Not_Provided_By_Data_Source"
                    }
                  }
                ],
                "sourcePartyRole": "DECEDENT"
              },
              {
                "attorneyRepresentationType": {
                  "attorneyRepresentationTypeId": "ATRPDTy7Tqdwk974XC",
                  "createdDate": "2022-03-28T04:59:20+00:00",
                  "name": "Attorney Represented",
                  "object": "AttorneyRepresentationType"
                },
                "contact": {
                  "addressArray": [],
                  "emailArray": [],
                  "object": "Contact",
                  "phoneNumberArray": []
                },
                "firstFetchDate": "2018-12-07T05:17:31+00:00",
                "firstName": "MICHAEL",
                "isVisible": true,
                "lastFetchDate": "2022-07-17T17:57:51+00:00",
                "lastName": "VELCHEREAN",
                "middleName": null,
                "name": "VELCHEREAN MICHAEL",
                "namePrefix": null,
                "nameSuffix": null,
                "object": "Party",
                "partyAttorneyAssociations": {
                  "nextPageAPI": null,
                  "object": "PartyAttorneyAssociations",
                  "pageNumber": 1,
                  "partyAttorneyAssociationArray": [
                    {
                      "attorneyId": "ATTYar37af591dd578",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar7f7872f6e141",
                      "partyId": "PRTYar92ea99913e29"
                    },
                    {
                      "attorneyId": "ATTYarb8a114450613",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar88839f6867da",
                      "partyId": "PRTYar92ea99913e29"
                    },
                    {
                      "attorneyId": "ATTYarcc554880952e",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar3c717ba626da",
                      "partyId": "PRTYar92ea99913e29"
                    },
                    {
                      "attorneyId": "ATTYare8c7c2d0334c",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar07096edab7a4",
                      "partyId": "PRTYar92ea99913e29"
                    },
                    {
                      "attorneyId": "ATTYardeaa251e8e2c",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar18ba8e443f27",
                      "partyId": "PRTYar92ea99913e29"
                    },
                    {
                      "attorneyId": "ATTYarf46968f907e6",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar2e79e2120dbf",
                      "partyId": "PRTYar92ea99913e29"
                    },
                    {
                      "attorneyId": "ATTYar307971da0049",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMarfcecc7e84a3d",
                      "partyId": "PRTYar92ea99913e29"
                    },
                    {
                      "attorneyId": "ATTYar6a2c1d644433",
                      "isVisible": false,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMarc7a8e04b1a56",
                      "partyId": "PRTYar92ea99913e29"
                    },
                    {
                      "attorneyId": "ATTYar44fe78ac16df",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMarc381f87a75db",
                      "partyId": "PRTYar92ea99913e29"
                    },
                    {
                      "attorneyId": "ATTYare2c99eb41f9e",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar7bc62fc16ca6",
                      "partyId": "PRTYar92ea99913e29"
                    },
                    {
                      "attorneyId": "ATTYar635ff45b4d46",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMarb6b2e13aabc4",
                      "partyId": "PRTYar92ea99913e29"
                    }
                  ],
                  "totalCount": 11,
                  "totalPages": 1
                },
                "partyClassificationType": "INDIVIDUAL",
                "partyId": "PRTYar92ea99913e29",
                "partyRole": {
                  "createdDate": "2022-05-27T00:50:33+00:00",
                  "description": null,
                  "name": "Petitioner",
                  "object": "PartyRole",
                  "partyRoleGroup": "Party Offensive",
                  "partyRoleGroupId": "PTYGBnjxbx6tKNfVEP",
                  "partyRoleId": "PTYR9F4zbteyj7ehmi"
                },
                "possibleNormPartyArray": [
                  {
                    "associatedNormAttorneysAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormAttorneys?pageNumber=1",
                    "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormJudges?pageNumber=1",
                    "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormLawFirms?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormPartyAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByNormParty?pageNumber=1&q=normPartyId:NPTY22222222222222",
                    "caseCountAnalyticsByOpposingNormPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/caseCountAnalyticsByOpposingNormParty?pageNumber=1",
                    "confidenceScore": 0.5,
                    "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222",
                    "normPartyId": "NPTY22222222222222",
                    "normPartyName": "DAAZ PROPERTIES, L.L.C.",
                    "object": "PossibleNormParty",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.69,
                      "otherPotentialNormParties": 0,
                      "phone": "Not_Provided_By_Data_Source",
                      "secretaryOfStateId": "Not_Provided_By_Data_Source"
                    }
                  }
                ],
                "sourcePartyRole": "PETITIONER"
              },
              {
                "attorneyRepresentationType": {
                  "attorneyRepresentationTypeId": "ATRPDTy7Tqdwk974XC",
                  "createdDate": "2022-03-28T04:59:20+00:00",
                  "name": "Attorney Represented",
                  "object": "AttorneyRepresentationType"
                },
                "contact": {
                  "addressArray": [],
                  "emailArray": [],
                  "object": "Contact",
                  "phoneNumberArray": []
                },
                "firstFetchDate": "2019-01-06T05:35:07+00:00",
                "firstName": "SOPHIA",
                "isVisible": false,
                "lastFetchDate": "2020-09-15T20:30:31+00:00",
                "lastName": "HUANG",
                "middleName": null,
                "name": "HUANG SOPHIA",
                "namePrefix": null,
                "nameSuffix": null,
                "object": "Party",
                "partyAttorneyAssociations": {
                  "nextPageAPI": null,
                  "object": "PartyAttorneyAssociations",
                  "pageNumber": 1,
                  "partyAttorneyAssociationArray": [
                    {
                      "attorneyId": "ATTYarf46968f907e6",
                      "isVisible": false,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMarbdc87aa7f7f6",
                      "partyId": "PRTYar7e672c560550"
                    },
                    {
                      "attorneyId": "ATTYar307971da0049",
                      "isVisible": false,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMarda8bdc82a52c",
                      "partyId": "PRTYar7e672c560550"
                    },
                    {
                      "attorneyId": "ATTYar6a2c1d644433",
                      "isVisible": false,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar27d159cfb7b3",
                      "partyId": "PRTYar7e672c560550"
                    },
                    {
                      "attorneyId": "ATTYar44fe78ac16df",
                      "isVisible": false,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMarb04d87c162d2",
                      "partyId": "PRTYar7e672c560550"
                    },
                    {
                      "attorneyId": "ATTYar635ff45b4d46",
                      "isVisible": false,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar1e4486acbc0a",
                      "partyId": "PRTYar7e672c560550"
                    },
                    {
                      "attorneyId": "ATTYare2c99eb41f9e",
                      "isVisible": false,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMara0df75e0ad8b",
                      "partyId": "PRTYar7e672c560550"
                    }
                  ],
                  "totalCount": 6,
                  "totalPages": 1
                },
                "partyClassificationType": "INDIVIDUAL",
                "partyId": "PRTYar7e672c560550",
                "partyRole": {
                  "createdDate": "2022-05-27T00:50:33+00:00",
                  "description": null,
                  "name": "Petitioner",
                  "object": "PartyRole",
                  "partyRoleGroup": "Party Offensive",
                  "partyRoleGroupId": "PTYGBnjxbx6tKNfVEP",
                  "partyRoleId": "PTYR9F4zbteyj7ehmi"
                },
                "possibleNormPartyArray": [
                  {
                    "associatedNormAttorneysAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormAttorneys?pageNumber=1",
                    "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormJudges?pageNumber=1",
                    "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormLawFirms?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormPartyAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByNormParty?pageNumber=1&q=normPartyId:NPTY22222222222222",
                    "caseCountAnalyticsByOpposingNormPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/caseCountAnalyticsByOpposingNormParty?pageNumber=1",
                    "confidenceScore": 0.5,
                    "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222",
                    "normPartyId": "NPTY22222222222222",
                    "normPartyName": "DAAZ PROPERTIES, L.L.C.",
                    "object": "PossibleNormParty",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.69,
                      "otherPotentialNormParties": 0,
                      "phone": "Not_Provided_By_Data_Source",
                      "secretaryOfStateId": "Not_Provided_By_Data_Source"
                    }
                  }
                ],
                "sourcePartyRole": "PETITIONER"
              },
              {
                "attorneyRepresentationType": {
                  "attorneyRepresentationTypeId": "ATRPDTy7Tqdwk974XC",
                  "createdDate": "2022-03-28T04:59:20+00:00",
                  "name": "Attorney Represented",
                  "object": "AttorneyRepresentationType"
                },
                "contact": {
                  "addressArray": [],
                  "emailArray": [],
                  "object": "Contact",
                  "phoneNumberArray": []
                },
                "firstFetchDate": "2019-01-09T01:09:45+00:00",
                "firstName": "MING-CHAO",
                "isVisible": true,
                "lastFetchDate": "2022-07-17T17:57:45+00:00",
                "lastName": "HUANG",
                "middleName": null,
                "name": "HUANG MING-CHAO",
                "namePrefix": null,
                "nameSuffix": null,
                "object": "Party",
                "partyAttorneyAssociations": {
                  "nextPageAPI": null,
                  "object": "PartyAttorneyAssociations",
                  "pageNumber": 1,
                  "partyAttorneyAssociationArray": [
                    {
                      "attorneyId": "ATTYar37af591dd578",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar92b0e09c9a6c",
                      "partyId": "PRTYar5ef1babdaa60"
                    },
                    {
                      "attorneyId": "ATTYarb8a114450613",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar6a8692b58fc6",
                      "partyId": "PRTYar5ef1babdaa60"
                    },
                    {
                      "attorneyId": "ATTYarcc554880952e",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar4b363c338533",
                      "partyId": "PRTYar5ef1babdaa60"
                    },
                    {
                      "attorneyId": "ATTYare8c7c2d0334c",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar7e37c02276a1",
                      "partyId": "PRTYar5ef1babdaa60"
                    },
                    {
                      "attorneyId": "ATTYardeaa251e8e2c",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar3e07d244eabe",
                      "partyId": "PRTYar5ef1babdaa60"
                    },
                    {
                      "attorneyId": "ATTYarf46968f907e6",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMarba9c020cf793",
                      "partyId": "PRTYar5ef1babdaa60"
                    },
                    {
                      "attorneyId": "ATTYar307971da0049",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMarafdbaf30b4d7",
                      "partyId": "PRTYar5ef1babdaa60"
                    },
                    {
                      "attorneyId": "ATTYar6a2c1d644433",
                      "isVisible": false,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar461b5e0ec067",
                      "partyId": "PRTYar5ef1babdaa60"
                    },
                    {
                      "attorneyId": "ATTYar44fe78ac16df",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar0c1ddd85ffd0",
                      "partyId": "PRTYar5ef1babdaa60"
                    },
                    {
                      "attorneyId": "ATTYar635ff45b4d46",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar68754268399b",
                      "partyId": "PRTYar5ef1babdaa60"
                    },
                    {
                      "attorneyId": "ATTYare2c99eb41f9e",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar75c96f6b3d09",
                      "partyId": "PRTYar5ef1babdaa60"
                    }
                  ],
                  "totalCount": 11,
                  "totalPages": 1
                },
                "partyClassificationType": "INDIVIDUAL",
                "partyId": "PRTYar5ef1babdaa60",
                "partyRole": {
                  "createdDate": "2022-05-27T00:50:33+00:00",
                  "description": null,
                  "name": "Petitioner",
                  "object": "PartyRole",
                  "partyRoleGroup": "Party Offensive",
                  "partyRoleGroupId": "PTYGBnjxbx6tKNfVEP",
                  "partyRoleId": "PTYR9F4zbteyj7ehmi"
                },
                "possibleNormPartyArray": [
                  {
                    "associatedNormAttorneysAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormAttorneys?pageNumber=1",
                    "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormJudges?pageNumber=1",
                    "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormLawFirms?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormPartyAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByNormParty?pageNumber=1&q=normPartyId:NPTY22222222222222",
                    "caseCountAnalyticsByOpposingNormPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/caseCountAnalyticsByOpposingNormParty?pageNumber=1",
                    "confidenceScore": 0.5,
                    "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222",
                    "normPartyId": "NPTY22222222222222",
                    "normPartyName": "DAAZ PROPERTIES, L.L.C.",
                    "object": "PossibleNormParty",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.69,
                      "otherPotentialNormParties": 0,
                      "phone": "Not_Provided_By_Data_Source",
                      "secretaryOfStateId": "Not_Provided_By_Data_Source"
                    }
                  }
                ],
                "sourcePartyRole": "PETITIONER"
              },
              {
                "attorneyRepresentationType": {
                  "attorneyRepresentationTypeId": "ATRPDTy7Tqdwk974XC",
                  "createdDate": "2022-03-28T04:59:20+00:00",
                  "name": "Attorney Represented",
                  "object": "AttorneyRepresentationType"
                },
                "contact": {
                  "addressArray": [],
                  "emailArray": [],
                  "object": "Contact",
                  "phoneNumberArray": []
                },
                "firstFetchDate": "2019-01-09T01:09:45+00:00",
                "firstName": "MEI",
                "isVisible": true,
                "lastFetchDate": "2022-07-17T17:57:47+00:00",
                "lastName": "LIN",
                "middleName": "JUNG",
                "name": "LIN MEI JUNG",
                "namePrefix": null,
                "nameSuffix": null,
                "object": "Party",
                "partyAttorneyAssociations": {
                  "nextPageAPI": null,
                  "object": "PartyAttorneyAssociations",
                  "pageNumber": 1,
                  "partyAttorneyAssociationArray": [
                    {
                      "attorneyId": "ATTYar37af591dd578",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar8bab419618a3",
                      "partyId": "PRTYarfc6d1e88947a"
                    },
                    {
                      "attorneyId": "ATTYarb8a114450613",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMarbbe10bd96f60",
                      "partyId": "PRTYarfc6d1e88947a"
                    },
                    {
                      "attorneyId": "ATTYarcc554880952e",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar586f9eea5881",
                      "partyId": "PRTYarfc6d1e88947a"
                    },
                    {
                      "attorneyId": "ATTYare8c7c2d0334c",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMarbbc9a45f249c",
                      "partyId": "PRTYarfc6d1e88947a"
                    },
                    {
                      "attorneyId": "ATTYardeaa251e8e2c",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMarbb956096c100",
                      "partyId": "PRTYarfc6d1e88947a"
                    },
                    {
                      "attorneyId": "ATTYarf46968f907e6",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar4c041b7d8966",
                      "partyId": "PRTYarfc6d1e88947a"
                    },
                    {
                      "attorneyId": "ATTYar307971da0049",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMarc8b823770dcd",
                      "partyId": "PRTYarfc6d1e88947a"
                    },
                    {
                      "attorneyId": "ATTYar6a2c1d644433",
                      "isVisible": false,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar540f2a0a6c9e",
                      "partyId": "PRTYarfc6d1e88947a"
                    },
                    {
                      "attorneyId": "ATTYar44fe78ac16df",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar9e116198b4a7",
                      "partyId": "PRTYarfc6d1e88947a"
                    },
                    {
                      "attorneyId": "ATTYar635ff45b4d46",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar2784254f8675",
                      "partyId": "PRTYarfc6d1e88947a"
                    },
                    {
                      "attorneyId": "ATTYare2c99eb41f9e",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar68cbcdea621a",
                      "partyId": "PRTYarfc6d1e88947a"
                    }
                  ],
                  "totalCount": 11,
                  "totalPages": 1
                },
                "partyClassificationType": "INDIVIDUAL",
                "partyId": "PRTYarfc6d1e88947a",
                "partyRole": {
                  "createdDate": "2022-05-27T00:50:33+00:00",
                  "description": null,
                  "name": "Petitioner",
                  "object": "PartyRole",
                  "partyRoleGroup": "Party Offensive",
                  "partyRoleGroupId": "PTYGBnjxbx6tKNfVEP",
                  "partyRoleId": "PTYR9F4zbteyj7ehmi"
                },
                "possibleNormPartyArray": [
                  {
                    "associatedNormAttorneysAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormAttorneys?pageNumber=1",
                    "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormJudges?pageNumber=1",
                    "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormLawFirms?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormPartyAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByNormParty?pageNumber=1&q=normPartyId:NPTY22222222222222",
                    "caseCountAnalyticsByOpposingNormPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/caseCountAnalyticsByOpposingNormParty?pageNumber=1",
                    "confidenceScore": 0.5,
                    "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222",
                    "normPartyId": "NPTY22222222222222",
                    "normPartyName": "DAAZ PROPERTIES, L.L.C.",
                    "object": "PossibleNormParty",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.69,
                      "otherPotentialNormParties": 0,
                      "phone": "Not_Provided_By_Data_Source",
                      "secretaryOfStateId": "Not_Provided_By_Data_Source"
                    }
                  }
                ],
                "sourcePartyRole": "PETITIONER"
              },
              {
                "attorneyRepresentationType": {
                  "attorneyRepresentationTypeId": "ATRPDTy7Tqdwk974XC",
                  "createdDate": "2022-03-28T04:59:20+00:00",
                  "name": "Attorney Represented",
                  "object": "AttorneyRepresentationType"
                },
                "contact": {
                  "addressArray": [],
                  "emailArray": [],
                  "object": "Contact",
                  "phoneNumberArray": []
                },
                "firstFetchDate": "2019-08-14T03:38:02+00:00",
                "firstName": "MICHAEL",
                "isVisible": true,
                "lastFetchDate": "2022-07-17T17:57:50+00:00",
                "lastName": "VELCHEREAN",
                "middleName": null,
                "name": "VELCHEREAN MICHAEL",
                "namePrefix": null,
                "nameSuffix": null,
                "object": "Party",
                "partyAttorneyAssociations": {
                  "nextPageAPI": null,
                  "object": "PartyAttorneyAssociations",
                  "pageNumber": 1,
                  "partyAttorneyAssociationArray": [
                    {
                      "attorneyId": "ATTYar88dea303353d",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMarf89d93ca1b10",
                      "partyId": "PRTYar2d32a26789ad"
                    },
                    {
                      "attorneyId": "ATTYaraef1933067a6",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMarc58b89cb5662",
                      "partyId": "PRTYar2d32a26789ad"
                    },
                    {
                      "attorneyId": "ATTYar2c3d4e9c7ce7",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar76d008ad2532",
                      "partyId": "PRTYar2d32a26789ad"
                    },
                    {
                      "attorneyId": "ATTYarca73e0515c40",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMarffff06d75f94",
                      "partyId": "PRTYar2d32a26789ad"
                    },
                    {
                      "attorneyId": "ATTYar7735798bfa5f",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar64217d07bb1c",
                      "partyId": "PRTYar2d32a26789ad"
                    },
                    {
                      "attorneyId": "ATTYar705685924fd0",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar690be09213f2",
                      "partyId": "PRTYar2d32a26789ad"
                    },
                    {
                      "attorneyId": "ATTYara52f690e1b29",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar5019116ede62",
                      "partyId": "PRTYar2d32a26789ad"
                    },
                    {
                      "attorneyId": "ATTYar90ba6d78ed02",
                      "isVisible": false,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMarf02aeefd2cb2",
                      "partyId": "PRTYar2d32a26789ad"
                    },
                    {
                      "attorneyId": "ATTYar540f3795f94b",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar75bb1f46d420",
                      "partyId": "PRTYar2d32a26789ad"
                    },
                    {
                      "attorneyId": "ATTYara860b72a11ac",
                      "isVisible": false,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar2a46e5cc06db",
                      "partyId": "PRTYar2d32a26789ad"
                    }
                  ],
                  "totalCount": 10,
                  "totalPages": 1
                },
                "partyClassificationType": "INDIVIDUAL",
                "partyId": "PRTYar2d32a26789ad",
                "partyRole": {
                  "createdDate": "2022-05-27T00:50:33+00:00",
                  "description": null,
                  "name": "Respondent",
                  "object": "PartyRole",
                  "partyRoleGroup": "Party Defensive",
                  "partyRoleGroupId": "PTYG73uQdgJdpA3ebc",
                  "partyRoleId": "PTYR7HcEREuPGAf853"
                },
                "possibleNormPartyArray": [
                  {
                    "associatedNormAttorneysAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormAttorneys?pageNumber=1",
                    "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormJudges?pageNumber=1",
                    "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormLawFirms?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormPartyAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByNormParty?pageNumber=1&q=normPartyId:NPTY22222222222222",
                    "caseCountAnalyticsByOpposingNormPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/caseCountAnalyticsByOpposingNormParty?pageNumber=1",
                    "confidenceScore": 0.5,
                    "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222",
                    "normPartyId": "NPTY22222222222222",
                    "normPartyName": "DAAZ PROPERTIES, L.L.C.",
                    "object": "PossibleNormParty",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.69,
                      "otherPotentialNormParties": 0,
                      "phone": "Not_Provided_By_Data_Source",
                      "secretaryOfStateId": "Not_Provided_By_Data_Source"
                    }
                  }
                ],
                "sourcePartyRole": "RESPONDENT"
              },
              {
                "attorneyRepresentationType": {
                  "attorneyRepresentationTypeId": "ATRPDTy7Tqdwk974XC",
                  "createdDate": "2022-03-28T04:59:20+00:00",
                  "name": "Attorney Represented",
                  "object": "AttorneyRepresentationType"
                },
                "contact": {
                  "addressArray": [],
                  "emailArray": [],
                  "object": "Contact",
                  "phoneNumberArray": []
                },
                "firstFetchDate": "2020-12-06T01:42:40+00:00",
                "firstName": "FANFARE TRADING INC.",
                "isVisible": true,
                "lastFetchDate": "2022-07-17T17:57:43+00:00",
                "lastName": null,
                "middleName": null,
                "name": "FANFARE TRADING INC.",
                "namePrefix": null,
                "nameSuffix": null,
                "object": "Party",
                "partyAttorneyAssociations": {
                  "nextPageAPI": null,
                  "object": "PartyAttorneyAssociations",
                  "pageNumber": 1,
                  "partyAttorneyAssociationArray": [
                    {
                      "attorneyId": "ATTYar88dea303353d",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMarbe707694e051",
                      "partyId": "PRTYar32a3f289bd03"
                    },
                    {
                      "attorneyId": "ATTYaraef1933067a6",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMarabfadc151500",
                      "partyId": "PRTYar32a3f289bd03"
                    },
                    {
                      "attorneyId": "ATTYar2c3d4e9c7ce7",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMarec8b8d235bdf",
                      "partyId": "PRTYar32a3f289bd03"
                    },
                    {
                      "attorneyId": "ATTYarca73e0515c40",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar1cdc375fd89c",
                      "partyId": "PRTYar32a3f289bd03"
                    },
                    {
                      "attorneyId": "ATTYar705685924fd0",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar108a3541aebc",
                      "partyId": "PRTYar32a3f289bd03"
                    },
                    {
                      "attorneyId": "ATTYara52f690e1b29",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar46b270cd244b",
                      "partyId": "PRTYar32a3f289bd03"
                    },
                    {
                      "attorneyId": "ATTYar7735798bfa5f",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMare5599dbc58a3",
                      "partyId": "PRTYar32a3f289bd03"
                    },
                    {
                      "attorneyId": "ATTYar90ba6d78ed02",
                      "isVisible": false,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar4d1c0208a63d",
                      "partyId": "PRTYar32a3f289bd03"
                    },
                    {
                      "attorneyId": "ATTYara860b72a11ac",
                      "isVisible": false,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMarb2e6c6ebb62b",
                      "partyId": "PRTYar32a3f289bd03"
                    },
                    {
                      "attorneyId": "ATTYar540f3795f94b",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMard8389b107802",
                      "partyId": "PRTYar32a3f289bd03"
                    }
                  ],
                  "totalCount": 10,
                  "totalPages": 1
                },
                "partyClassificationType": "COMPANY",
                "partyId": "PRTYar32a3f289bd03",
                "partyRole": {
                  "createdDate": "2022-05-27T00:50:33+00:00",
                  "description": null,
                  "name": "Respondent",
                  "object": "PartyRole",
                  "partyRoleGroup": "Party Defensive",
                  "partyRoleGroupId": "PTYG73uQdgJdpA3ebc",
                  "partyRoleId": "PTYR7HcEREuPGAf853"
                },
                "possibleNormPartyArray": [
                  {
                    "associatedNormAttorneysAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormAttorneys?pageNumber=1",
                    "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormJudges?pageNumber=1",
                    "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormLawFirms?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormPartyAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByNormParty?pageNumber=1&q=normPartyId:NPTY22222222222222",
                    "caseCountAnalyticsByOpposingNormPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/caseCountAnalyticsByOpposingNormParty?pageNumber=1",
                    "confidenceScore": 0.5,
                    "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222",
                    "normPartyId": "NPTY22222222222222",
                    "normPartyName": "DAAZ PROPERTIES, L.L.C.",
                    "object": "PossibleNormParty",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.69,
                      "otherPotentialNormParties": 0,
                      "phone": "Not_Provided_By_Data_Source",
                      "secretaryOfStateId": "Not_Provided_By_Data_Source"
                    }
                  }
                ],
                "sourcePartyRole": "RESPONDENT"
              },
              {
                "attorneyRepresentationType": {
                  "attorneyRepresentationTypeId": "ATRPDTy7Tqdwk974XC",
                  "createdDate": "2022-03-28T04:59:20+00:00",
                  "name": "Attorney Represented",
                  "object": "AttorneyRepresentationType"
                },
                "contact": {
                  "addressArray": [],
                  "emailArray": [],
                  "object": "Contact",
                  "phoneNumberArray": []
                },
                "firstFetchDate": "2020-09-26T01:19:21+00:00",
                "firstName": "AILEEN",
                "isVisible": true,
                "lastFetchDate": "2022-07-17T17:57:43+00:00",
                "lastName": "FEDERIZO",
                "middleName": null,
                "name": "FEDERIZO AILEEN",
                "namePrefix": null,
                "nameSuffix": null,
                "object": "Party",
                "partyAttorneyAssociations": {
                  "nextPageAPI": null,
                  "object": "PartyAttorneyAssociations",
                  "pageNumber": 1,
                  "partyAttorneyAssociationArray": [
                    {
                      "attorneyId": "ATTYar88dea303353d",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMardce1ca7baf89",
                      "partyId": "PRTYar2876f30368ee"
                    },
                    {
                      "attorneyId": "ATTYaraef1933067a6",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar4f09872a4e1d",
                      "partyId": "PRTYar2876f30368ee"
                    },
                    {
                      "attorneyId": "ATTYar2c3d4e9c7ce7",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar71c7bce3ff2f",
                      "partyId": "PRTYar2876f30368ee"
                    },
                    {
                      "attorneyId": "ATTYarca73e0515c40",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMarfb059b4ba6c9",
                      "partyId": "PRTYar2876f30368ee"
                    },
                    {
                      "attorneyId": "ATTYar7735798bfa5f",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar1788bb2b45d9",
                      "partyId": "PRTYar2876f30368ee"
                    },
                    {
                      "attorneyId": "ATTYara860b72a11ac",
                      "isVisible": false,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar5665949fcadd",
                      "partyId": "PRTYar2876f30368ee"
                    },
                    {
                      "attorneyId": "ATTYar705685924fd0",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar25527b7c10ec",
                      "partyId": "PRTYar2876f30368ee"
                    },
                    {
                      "attorneyId": "ATTYara52f690e1b29",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar5aa910d64778",
                      "partyId": "PRTYar2876f30368ee"
                    },
                    {
                      "attorneyId": "ATTYar90ba6d78ed02",
                      "isVisible": false,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMarf6afbfc8a2b1",
                      "partyId": "PRTYar2876f30368ee"
                    },
                    {
                      "attorneyId": "ATTYar540f3795f94b",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMarba657cf433b9",
                      "partyId": "PRTYar2876f30368ee"
                    }
                  ],
                  "totalCount": 10,
                  "totalPages": 1
                },
                "partyClassificationType": "INDIVIDUAL",
                "partyId": "PRTYar2876f30368ee",
                "partyRole": {
                  "createdDate": "2022-05-27T00:50:33+00:00",
                  "description": null,
                  "name": "Respondent",
                  "object": "PartyRole",
                  "partyRoleGroup": "Party Defensive",
                  "partyRoleGroupId": "PTYG73uQdgJdpA3ebc",
                  "partyRoleId": "PTYR7HcEREuPGAf853"
                },
                "possibleNormPartyArray": [
                  {
                    "associatedNormAttorneysAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormAttorneys?pageNumber=1",
                    "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormJudges?pageNumber=1",
                    "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormLawFirms?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormPartyAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByNormParty?pageNumber=1&q=normPartyId:NPTY22222222222222",
                    "caseCountAnalyticsByOpposingNormPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/caseCountAnalyticsByOpposingNormParty?pageNumber=1",
                    "confidenceScore": 0.5,
                    "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222",
                    "normPartyId": "NPTY22222222222222",
                    "normPartyName": "DAAZ PROPERTIES, L.L.C.",
                    "object": "PossibleNormParty",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.69,
                      "otherPotentialNormParties": 0,
                      "phone": "Not_Provided_By_Data_Source",
                      "secretaryOfStateId": "Not_Provided_By_Data_Source"
                    }
                  }
                ],
                "sourcePartyRole": "RESPONDENT (TO APPEAL)"
              },
              {
                "attorneyRepresentationType": {
                  "attorneyRepresentationTypeId": "ATRPDTy7Tqdwk974XC",
                  "createdDate": "2022-03-28T04:59:20+00:00",
                  "name": "Attorney Represented",
                  "object": "AttorneyRepresentationType"
                },
                "contact": {
                  "addressArray": [],
                  "emailArray": [],
                  "object": "Contact",
                  "phoneNumberArray": []
                },
                "firstFetchDate": "2020-09-26T01:19:22+00:00",
                "firstName": "MICHAEL",
                "isVisible": true,
                "lastFetchDate": "2022-07-17T17:57:48+00:00",
                "lastName": "VELCHEREAN",
                "middleName": null,
                "name": "VELCHEREAN MICHAEL",
                "namePrefix": null,
                "nameSuffix": null,
                "object": "Party",
                "partyAttorneyAssociations": {
                  "nextPageAPI": null,
                  "object": "PartyAttorneyAssociations",
                  "pageNumber": 1,
                  "partyAttorneyAssociationArray": [
                    {
                      "attorneyId": "ATTYar88dea303353d",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar163e54063159",
                      "partyId": "PRTYare947bf8f10f0"
                    },
                    {
                      "attorneyId": "ATTYaraef1933067a6",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMarcb5b2d4c30b3",
                      "partyId": "PRTYare947bf8f10f0"
                    },
                    {
                      "attorneyId": "ATTYar2c3d4e9c7ce7",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar6a40e21f6a5b",
                      "partyId": "PRTYare947bf8f10f0"
                    },
                    {
                      "attorneyId": "ATTYarca73e0515c40",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMarb2d37d0f75ce",
                      "partyId": "PRTYare947bf8f10f0"
                    },
                    {
                      "attorneyId": "ATTYar7735798bfa5f",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMarf9d92dbbb5f0",
                      "partyId": "PRTYare947bf8f10f0"
                    },
                    {
                      "attorneyId": "ATTYara860b72a11ac",
                      "isVisible": false,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar336b60a1e65a",
                      "partyId": "PRTYare947bf8f10f0"
                    },
                    {
                      "attorneyId": "ATTYar705685924fd0",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar613758807b2c",
                      "partyId": "PRTYare947bf8f10f0"
                    },
                    {
                      "attorneyId": "ATTYara52f690e1b29",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMarefd06bda9f8a",
                      "partyId": "PRTYare947bf8f10f0"
                    },
                    {
                      "attorneyId": "ATTYar90ba6d78ed02",
                      "isVisible": false,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar469ffd9aa644",
                      "partyId": "PRTYare947bf8f10f0"
                    },
                    {
                      "attorneyId": "ATTYar540f3795f94b",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar6de57f4f9cb7",
                      "partyId": "PRTYare947bf8f10f0"
                    }
                  ],
                  "totalCount": 10,
                  "totalPages": 1
                },
                "partyClassificationType": "INDIVIDUAL",
                "partyId": "PRTYare947bf8f10f0",
                "partyRole": {
                  "createdDate": "2022-05-27T00:50:33+00:00",
                  "description": null,
                  "name": "Respondent",
                  "object": "PartyRole",
                  "partyRoleGroup": "Party Defensive",
                  "partyRoleGroupId": "PTYG73uQdgJdpA3ebc",
                  "partyRoleId": "PTYR7HcEREuPGAf853"
                },
                "possibleNormPartyArray": [
                  {
                    "associatedNormAttorneysAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormAttorneys?pageNumber=1",
                    "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormJudges?pageNumber=1",
                    "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormLawFirms?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormPartyAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByNormParty?pageNumber=1&q=normPartyId:NPTY22222222222222",
                    "caseCountAnalyticsByOpposingNormPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/caseCountAnalyticsByOpposingNormParty?pageNumber=1",
                    "confidenceScore": 0.5,
                    "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222",
                    "normPartyId": "NPTY22222222222222",
                    "normPartyName": "DAAZ PROPERTIES, L.L.C.",
                    "object": "PossibleNormParty",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.69,
                      "otherPotentialNormParties": 0,
                      "phone": "Not_Provided_By_Data_Source",
                      "secretaryOfStateId": "Not_Provided_By_Data_Source"
                    }
                  }
                ],
                "sourcePartyRole": "RESPONDENT (TO APPEAL)"
              },
              {
                "attorneyRepresentationType": {
                  "attorneyRepresentationTypeId": "ATRPDTy7Tqdwk974XC",
                  "createdDate": "2022-03-28T04:59:20+00:00",
                  "name": "Attorney Represented",
                  "object": "AttorneyRepresentationType"
                },
                "contact": {
                  "addressArray": [],
                  "emailArray": [],
                  "object": "Contact",
                  "phoneNumberArray": []
                },
                "firstFetchDate": "2019-04-28T02:20:56+00:00",
                "firstName": "AILEEN",
                "isVisible": true,
                "lastFetchDate": "2022-07-17T17:57:44+00:00",
                "lastName": "FEDERIZO",
                "middleName": null,
                "name": "FEDERIZO AILEEN",
                "namePrefix": null,
                "nameSuffix": null,
                "object": "Party",
                "partyAttorneyAssociations": {
                  "nextPageAPI": null,
                  "object": "PartyAttorneyAssociations",
                  "pageNumber": 1,
                  "partyAttorneyAssociationArray": [
                    {
                      "attorneyId": "ATTYar3e9f689043f8",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar7591bc38b5fc",
                      "partyId": "PRTYar9f8ef656d301"
                    },
                    {
                      "attorneyId": "ATTYar11c8eead1faf",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar011ebc55da73",
                      "partyId": "PRTYar9f8ef656d301"
                    },
                    {
                      "attorneyId": "ATTYar210991f576c7",
                      "isVisible": false,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMaree5add7c6c9b",
                      "partyId": "PRTYar9f8ef656d301"
                    }
                  ],
                  "totalCount": 3,
                  "totalPages": 1
                },
                "partyClassificationType": "INDIVIDUAL",
                "partyId": "PRTYar9f8ef656d301",
                "partyRole": {
                  "createdDate": "2022-05-27T00:50:33+00:00",
                  "description": null,
                  "name": "Administrator",
                  "object": "PartyRole",
                  "partyRoleGroup": "Participant",
                  "partyRoleGroupId": "PTYGZPUbQam7EQqkoN",
                  "partyRoleId": "PTYRVRgMKueGmhnxRN"
                },
                "possibleNormPartyArray": [
                  {
                    "associatedNormAttorneysAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormAttorneys?pageNumber=1",
                    "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormJudges?pageNumber=1",
                    "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormLawFirms?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormPartyAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByNormParty?pageNumber=1&q=normPartyId:NPTY22222222222222",
                    "caseCountAnalyticsByOpposingNormPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/caseCountAnalyticsByOpposingNormParty?pageNumber=1",
                    "confidenceScore": 0.5,
                    "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222",
                    "normPartyId": "NPTY22222222222222",
                    "normPartyName": "DAAZ PROPERTIES, L.L.C.",
                    "object": "PossibleNormParty",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.69,
                      "otherPotentialNormParties": 0,
                      "phone": "Not_Provided_By_Data_Source",
                      "secretaryOfStateId": "Not_Provided_By_Data_Source"
                    }
                  }
                ],
                "sourcePartyRole": "SPECIAL ADMINSTRATOR"
              },
              {
                "attorneyRepresentationType": {
                  "attorneyRepresentationTypeId": "ATRPDTy7Tqdwk974XC",
                  "createdDate": "2022-03-28T04:59:20+00:00",
                  "name": "Attorney Represented",
                  "object": "AttorneyRepresentationType"
                },
                "contact": {
                  "addressArray": [],
                  "emailArray": [],
                  "object": "Contact",
                  "phoneNumberArray": []
                },
                "firstFetchDate": "2020-09-26T01:19:22+00:00",
                "firstName": "SOPHIA",
                "isVisible": true,
                "lastFetchDate": "2022-07-17T17:57:46+00:00",
                "lastName": "HUANG",
                "middleName": null,
                "name": "HUANG SOPHIA",
                "namePrefix": null,
                "nameSuffix": null,
                "object": "Party",
                "partyAttorneyAssociations": {
                  "nextPageAPI": null,
                  "object": "PartyAttorneyAssociations",
                  "pageNumber": 1,
                  "partyAttorneyAssociationArray": [
                    {
                      "attorneyId": "ATTYarc0418624a26e",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar6d6e99e59810",
                      "partyId": "PRTYar22ab4bc72b15"
                    },
                    {
                      "attorneyId": "ATTYar414416c2922e",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMarfa57332227ca",
                      "partyId": "PRTYar22ab4bc72b15"
                    },
                    {
                      "attorneyId": "ATTYare7d3a7492a3d",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar0eab1296416c",
                      "partyId": "PRTYar22ab4bc72b15"
                    },
                    {
                      "attorneyId": "ATTYar3e331159d5c4",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar32e5b6930433",
                      "partyId": "PRTYar22ab4bc72b15"
                    },
                    {
                      "attorneyId": "ATTYarfaf0a97cb539",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar7debcace8257",
                      "partyId": "PRTYar22ab4bc72b15"
                    }
                  ],
                  "totalCount": 5,
                  "totalPages": 1
                },
                "partyClassificationType": "INDIVIDUAL",
                "partyId": "PRTYar22ab4bc72b15",
                "partyRole": {
                  "createdDate": "2022-05-27T00:50:33+00:00",
                  "description": null,
                  "name": "Guardian Ad Litem",
                  "object": "PartyRole",
                  "partyRoleGroup": "Participant",
                  "partyRoleGroupId": "PTYGZPUbQam7EQqkoN",
                  "partyRoleId": "PTYRjNc9C4dqA3CBba"
                },
                "possibleNormPartyArray": [
                  {
                    "associatedNormAttorneysAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormAttorneys?pageNumber=1",
                    "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormJudges?pageNumber=1",
                    "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormLawFirms?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormPartyAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByNormParty?pageNumber=1&q=normPartyId:NPTY22222222222222",
                    "caseCountAnalyticsByOpposingNormPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/caseCountAnalyticsByOpposingNormParty?pageNumber=1",
                    "confidenceScore": 0.5,
                    "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222",
                    "normPartyId": "NPTY22222222222222",
                    "normPartyName": "DAAZ PROPERTIES, L.L.C.",
                    "object": "PossibleNormParty",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.69,
                      "otherPotentialNormParties": 0,
                      "phone": "Not_Provided_By_Data_Source",
                      "secretaryOfStateId": "Not_Provided_By_Data_Source"
                    }
                  }
                ],
                "sourcePartyRole": "GUARDIAN AD LITEM"
              },
              {
                "attorneyRepresentationType": {
                  "attorneyRepresentationTypeId": "ATRPDTy7Tqdwk974XC",
                  "createdDate": "2022-03-28T04:59:20+00:00",
                  "name": "Attorney Represented",
                  "object": "AttorneyRepresentationType"
                },
                "contact": {
                  "addressArray": [],
                  "emailArray": [],
                  "object": "Contact",
                  "phoneNumberArray": []
                },
                "firstFetchDate": "2021-01-19T17:48:32+00:00",
                "firstName": "JACKSON",
                "isVisible": true,
                "lastFetchDate": "2022-07-17T17:57:42+00:00",
                "lastName": "CHEN",
                "middleName": null,
                "name": "CHEN JACKSON",
                "namePrefix": null,
                "nameSuffix": null,
                "object": "Party",
                "partyAttorneyAssociations": {
                  "nextPageAPI": null,
                  "object": "PartyAttorneyAssociations",
                  "pageNumber": 1,
                  "partyAttorneyAssociationArray": [
                    {
                      "attorneyId": "ATTYarc0418624a26e",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMarf86050d04f6b",
                      "partyId": "PRTYare90e11768ee3"
                    },
                    {
                      "attorneyId": "ATTYar414416c2922e",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar3fa6e631bc9d",
                      "partyId": "PRTYare90e11768ee3"
                    },
                    {
                      "attorneyId": "ATTYare7d3a7492a3d",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar0dabe80a4320",
                      "partyId": "PRTYare90e11768ee3"
                    },
                    {
                      "attorneyId": "ATTYar3e331159d5c4",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMarade4f659e5a3",
                      "partyId": "PRTYare90e11768ee3"
                    },
                    {
                      "attorneyId": "ATTYarfaf0a97cb539",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar9bb8a661ed13",
                      "partyId": "PRTYare90e11768ee3"
                    }
                  ],
                  "totalCount": 5,
                  "totalPages": 1
                },
                "partyClassificationType": "INDIVIDUAL",
                "partyId": "PRTYare90e11768ee3",
                "partyRole": {
                  "createdDate": "2022-05-27T00:50:33+00:00",
                  "description": null,
                  "name": "Guardian Ad Litem",
                  "object": "PartyRole",
                  "partyRoleGroup": "Participant",
                  "partyRoleGroupId": "PTYGZPUbQam7EQqkoN",
                  "partyRoleId": "PTYRjNc9C4dqA3CBba"
                },
                "possibleNormPartyArray": [
                  {
                    "associatedNormAttorneysAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormAttorneys?pageNumber=1",
                    "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormJudges?pageNumber=1",
                    "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormLawFirms?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormPartyAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByNormParty?pageNumber=1&q=normPartyId:NPTY22222222222222",
                    "caseCountAnalyticsByOpposingNormPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/caseCountAnalyticsByOpposingNormParty?pageNumber=1",
                    "confidenceScore": 0.5,
                    "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222",
                    "normPartyId": "NPTY22222222222222",
                    "normPartyName": "DAAZ PROPERTIES, L.L.C.",
                    "object": "PossibleNormParty",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.69,
                      "otherPotentialNormParties": 0,
                      "phone": "Not_Provided_By_Data_Source",
                      "secretaryOfStateId": "Not_Provided_By_Data_Source"
                    }
                  }
                ],
                "sourcePartyRole": "GUARDIAN AD LITEM"
              },
              {
                "attorneyRepresentationType": {
                  "attorneyRepresentationTypeId": "ATRP2jCCwDRNaP97DX",
                  "createdDate": "2022-03-28T04:59:20+00:00",
                  "name": "Unrepresented",
                  "object": "AttorneyRepresentationType"
                },
                "contact": {
                  "addressArray": [],
                  "emailArray": [],
                  "object": "Contact",
                  "phoneNumberArray": []
                },
                "firstFetchDate": "2021-04-19T12:52:17+00:00",
                "firstName": "RONALD",
                "isVisible": true,
                "lastFetchDate": "2022-07-17T17:57:42+00:00",
                "lastName": "BELSOME",
                "middleName": "LANCE",
                "name": "BELSOME RONALD LANCE",
                "namePrefix": null,
                "nameSuffix": null,
                "object": "Party",
                "partyAttorneyAssociations": {
                  "nextPageAPI": null,
                  "object": "PartyAttorneyAssociations",
                  "pageNumber": 0,
                  "partyAttorneyAssociationArray": [],
                  "totalCount": 0,
                  "totalPages": 0
                },
                "partyClassificationType": "INDIVIDUAL",
                "partyId": "PRTYar803980e4f3a7",
                "partyRole": null,
                "possibleNormPartyArray": [
                  {
                    "associatedNormAttorneysAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormAttorneys?pageNumber=1",
                    "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormJudges?pageNumber=1",
                    "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormLawFirms?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormPartyAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByNormParty?pageNumber=1&q=normPartyId:NPTY22222222222222",
                    "caseCountAnalyticsByOpposingNormPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/caseCountAnalyticsByOpposingNormParty?pageNumber=1",
                    "confidenceScore": 0.5,
                    "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222",
                    "normPartyId": "NPTY22222222222222",
                    "normPartyName": "DAAZ PROPERTIES, L.L.C.",
                    "object": "PossibleNormParty",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.69,
                      "otherPotentialNormParties": 0,
                      "phone": "Not_Provided_By_Data_Source",
                      "secretaryOfStateId": "Not_Provided_By_Data_Source"
                    }
                  }
                ],
                "sourcePartyRole": "DEPOSITOR"
              },
              {
                "attorneyRepresentationType": {
                  "attorneyRepresentationTypeId": "ATRP2jCCwDRNaP97DX",
                  "createdDate": "2022-03-28T04:59:20+00:00",
                  "name": "Unrepresented",
                  "object": "AttorneyRepresentationType"
                },
                "contact": {
                  "addressArray": [],
                  "emailArray": [],
                  "object": "Contact",
                  "phoneNumberArray": []
                },
                "firstFetchDate": "2022-01-20T19:04:39+00:00",
                "firstName": "FANFARE TRADING INC.",
                "isVisible": true,
                "lastFetchDate": "2022-07-17T17:57:43+00:00",
                "lastName": null,
                "middleName": null,
                "name": "FANFARE TRADING INC.",
                "namePrefix": null,
                "nameSuffix": null,
                "object": "Party",
                "partyAttorneyAssociations": {
                  "nextPageAPI": null,
                  "object": "PartyAttorneyAssociations",
                  "pageNumber": 0,
                  "partyAttorneyAssociationArray": [],
                  "totalCount": 0,
                  "totalPages": 0
                },
                "partyClassificationType": "COMPANY",
                "partyId": "PRTYar46da09641cd6",
                "partyRole": null,
                "possibleNormPartyArray": [
                  {
                    "associatedNormAttorneysAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormAttorneys?pageNumber=1",
                    "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormJudges?pageNumber=1",
                    "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormLawFirms?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormPartyAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByNormParty?pageNumber=1&q=normPartyId:NPTY22222222222222",
                    "caseCountAnalyticsByOpposingNormPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/caseCountAnalyticsByOpposingNormParty?pageNumber=1",
                    "confidenceScore": 0.5,
                    "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222",
                    "normPartyId": "NPTY22222222222222",
                    "normPartyName": "DAAZ PROPERTIES, L.L.C.",
                    "object": "PossibleNormParty",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.69,
                      "otherPotentialNormParties": 0,
                      "phone": "Not_Provided_By_Data_Source",
                      "secretaryOfStateId": "Not_Provided_By_Data_Source"
                    }
                  }
                ],
                "sourcePartyRole": "OBJECTOR"
              },
              {
                "attorneyRepresentationType": {
                  "attorneyRepresentationTypeId": "ATRPDTy7Tqdwk974XC",
                  "createdDate": "2022-03-28T04:59:20+00:00",
                  "name": "Attorney Represented",
                  "object": "AttorneyRepresentationType"
                },
                "contact": {
                  "addressArray": [],
                  "emailArray": [],
                  "object": "Contact",
                  "phoneNumberArray": []
                },
                "firstFetchDate": "2020-09-26T01:19:21+00:00",
                "firstName": "FANFARE TRADING INC.",
                "isVisible": false,
                "lastFetchDate": "2020-12-03T06:14:47+00:00",
                "lastName": null,
                "middleName": null,
                "name": "FANFARE TRADING INC.",
                "namePrefix": null,
                "nameSuffix": null,
                "object": "Party",
                "partyAttorneyAssociations": {
                  "nextPageAPI": null,
                  "object": "PartyAttorneyAssociations",
                  "pageNumber": 1,
                  "partyAttorneyAssociationArray": [
                    {
                      "attorneyId": "ATTYardccc3e198460",
                      "isVisible": false,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar21c3400ae8a0",
                      "partyId": "PRTYar8e13ba222e64"
                    }
                  ],
                  "totalCount": 1,
                  "totalPages": 1
                },
                "partyClassificationType": "COMPANY",
                "partyId": "PRTYar8e13ba222e64",
                "partyRole": null,
                "possibleNormPartyArray": [
                  {
                    "associatedNormAttorneysAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormAttorneys?pageNumber=1",
                    "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormJudges?pageNumber=1",
                    "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormLawFirms?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormPartyAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByNormParty?pageNumber=1&q=normPartyId:NPTY22222222222222",
                    "caseCountAnalyticsByOpposingNormPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/caseCountAnalyticsByOpposingNormParty?pageNumber=1",
                    "confidenceScore": 0.5,
                    "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222",
                    "normPartyId": "NPTY22222222222222",
                    "normPartyName": "DAAZ PROPERTIES, L.L.C.",
                    "object": "PossibleNormParty",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.69,
                      "otherPotentialNormParties": 0,
                      "phone": "Not_Provided_By_Data_Source",
                      "secretaryOfStateId": "Not_Provided_By_Data_Source"
                    }
                  }
                ],
                "sourcePartyRole": "INTERESTED PARTY"
              },
              {
                "attorneyRepresentationType": {
                  "attorneyRepresentationTypeId": "ATRPDTy7Tqdwk974XC",
                  "createdDate": "2022-03-28T04:59:20+00:00",
                  "name": "Attorney Represented",
                  "object": "AttorneyRepresentationType"
                },
                "contact": {
                  "addressArray": [],
                  "emailArray": [],
                  "object": "Contact",
                  "phoneNumberArray": []
                },
                "firstFetchDate": "2019-05-17T01:49:09+00:00",
                "firstName": "YU",
                "isVisible": true,
                "lastFetchDate": "2022-07-17T17:57:46+00:00",
                "lastName": "HUANG",
                "middleName": "CHING",
                "name": "HUANG YU CHING",
                "namePrefix": null,
                "nameSuffix": null,
                "object": "Party",
                "partyAttorneyAssociations": {
                  "nextPageAPI": null,
                  "object": "PartyAttorneyAssociations",
                  "pageNumber": 1,
                  "partyAttorneyAssociationArray": [
                    {
                      "attorneyId": "ATTYar3591f7835b2e",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar0c9805fbf6a1",
                      "partyId": "PRTYar42f429bea98c"
                    },
                    {
                      "attorneyId": "ATTYar3f7e41e96cb8",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar462e8da2a629",
                      "partyId": "PRTYar42f429bea98c"
                    },
                    {
                      "attorneyId": "ATTYar17d5a63460fc",
                      "isVisible": true,
                      "object": "PartyAttorneyAssociation",
                      "partyAttorneyAssociationId": "PATMar4ad618c2ae84",
                      "partyId": "PRTYar42f429bea98c"
                    }
                  ],
                  "totalCount": 3,
                  "totalPages": 1
                },
                "partyClassificationType": "INDIVIDUAL",
                "partyId": "PRTYar42f429bea98c",
                "partyRole": null,
                "possibleNormPartyArray": [
                  {
                    "associatedNormAttorneysAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormAttorneys?pageNumber=1",
                    "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormJudges?pageNumber=1",
                    "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormLawFirms?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormPartyAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByNormParty?pageNumber=1&q=normPartyId:NPTY22222222222222",
                    "caseCountAnalyticsByOpposingNormPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/caseCountAnalyticsByOpposingNormParty?pageNumber=1",
                    "confidenceScore": 0.5,
                    "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222",
                    "normPartyId": "NPTY22222222222222",
                    "normPartyName": "DAAZ PROPERTIES, L.L.C.",
                    "object": "PossibleNormParty",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.69,
                      "otherPotentialNormParties": 0,
                      "phone": "Not_Provided_By_Data_Source",
                      "secretaryOfStateId": "Not_Provided_By_Data_Source"
                    }
                  }
                ],
                "sourcePartyRole": "CREDITOR"
              },
              {
                "attorneyRepresentationType": {
                  "attorneyRepresentationTypeId": "ATRP2jCCwDRNaP97DX",
                  "createdDate": "2022-03-28T04:59:20+00:00",
                  "name": "Unrepresented",
                  "object": "AttorneyRepresentationType"
                },
                "contact": {
                  "addressArray": [],
                  "emailArray": [],
                  "object": "Contact",
                  "phoneNumberArray": []
                },
                "firstFetchDate": "2020-02-03T11:59:03+00:00",
                "firstName": "LOS ANGELES SUPERIOR COURT",
                "isVisible": true,
                "lastFetchDate": "2022-07-17T17:57:48+00:00",
                "lastName": null,
                "middleName": null,
                "name": "LOS ANGELES SUPERIOR COURT",
                "namePrefix": null,
                "nameSuffix": null,
                "object": "Party",
                "partyAttorneyAssociations": {
                  "nextPageAPI": null,
                  "object": "PartyAttorneyAssociations",
                  "pageNumber": 0,
                  "partyAttorneyAssociationArray": [],
                  "totalCount": 0,
                  "totalPages": 0
                },
                "partyClassificationType": "OTHER",
                "partyId": "PRTYar08b447e5e98e",
                "partyRole": null,
                "possibleNormPartyArray": [
                  {
                    "associatedNormAttorneysAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormAttorneys?pageNumber=1",
                    "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormJudges?pageNumber=1",
                    "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormLawFirms?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormPartyAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByNormParty?pageNumber=1&q=normPartyId:NPTY22222222222222",
                    "caseCountAnalyticsByOpposingNormPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/caseCountAnalyticsByOpposingNormParty?pageNumber=1",
                    "confidenceScore": 0.5,
                    "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222",
                    "normPartyId": "NPTY22222222222222",
                    "normPartyName": "DAAZ PROPERTIES, L.L.C.",
                    "object": "PossibleNormParty",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.69,
                      "otherPotentialNormParties": 0,
                      "phone": "Not_Provided_By_Data_Source",
                      "secretaryOfStateId": "Not_Provided_By_Data_Source"
                    }
                  }
                ],
                "sourcePartyRole": "COURT"
              },
              {
                "attorneyRepresentationType": {
                  "attorneyRepresentationTypeId": "ATRP2jCCwDRNaP97DX",
                  "createdDate": "2022-03-28T04:59:20+00:00",
                  "name": "Unrepresented",
                  "object": "AttorneyRepresentationType"
                },
                "contact": {
                  "addressArray": [],
                  "emailArray": [],
                  "object": "Contact",
                  "phoneNumberArray": []
                },
                "firstFetchDate": "2019-09-15T09:50:45+00:00",
                "firstName": "GUY",
                "isVisible": false,
                "lastFetchDate": "2020-02-04T12:01:02+00:00",
                "lastName": "BRYDON",
                "middleName": null,
                "name": "BRYDON GUY",
                "namePrefix": null,
                "nameSuffix": null,
                "object": "Party",
                "partyAttorneyAssociations": {
                  "nextPageAPI": null,
                  "object": "PartyAttorneyAssociations",
                  "pageNumber": 0,
                  "partyAttorneyAssociationArray": [],
                  "totalCount": 0,
                  "totalPages": 0
                },
                "partyClassificationType": "INDIVIDUAL",
                "partyId": "PRTYara885ca43e108",
                "partyRole": null,
                "possibleNormPartyArray": [
                  {
                    "associatedNormAttorneysAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormAttorneys?pageNumber=1",
                    "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormJudges?pageNumber=1",
                    "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormLawFirms?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormPartyAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByNormParty?pageNumber=1&q=normPartyId:NPTY22222222222222",
                    "caseCountAnalyticsByOpposingNormPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/caseCountAnalyticsByOpposingNormParty?pageNumber=1",
                    "confidenceScore": 0.5,
                    "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222",
                    "normPartyId": "NPTY22222222222222",
                    "normPartyName": "DAAZ PROPERTIES, L.L.C.",
                    "object": "PossibleNormParty",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.69,
                      "otherPotentialNormParties": 0,
                      "phone": "Not_Provided_By_Data_Source",
                      "secretaryOfStateId": "Not_Provided_By_Data_Source"
                    }
                  }
                ],
                "sourcePartyRole": "PROBATE REFEREE"
              },
              {
                "attorneyRepresentationType": {
                  "attorneyRepresentationTypeId": "ATRP2jCCwDRNaP97DX",
                  "createdDate": "2022-03-28T04:59:20+00:00",
                  "name": "Unrepresented",
                  "object": "AttorneyRepresentationType"
                },
                "contact": {
                  "addressArray": [],
                  "emailArray": [],
                  "object": "Contact",
                  "phoneNumberArray": []
                },
                "firstFetchDate": "2020-02-11T12:07:42+00:00",
                "firstName": "GUY",
                "isVisible": true,
                "lastFetchDate": "2022-07-17T17:57:42+00:00",
                "lastName": "BRYDON",
                "middleName": "F",
                "name": "BRYDON GUY F.",
                "namePrefix": null,
                "nameSuffix": null,
                "object": "Party",
                "partyAttorneyAssociations": {
                  "nextPageAPI": null,
                  "object": "PartyAttorneyAssociations",
                  "pageNumber": 0,
                  "partyAttorneyAssociationArray": [],
                  "totalCount": 0,
                  "totalPages": 0
                },
                "partyClassificationType": "INDIVIDUAL",
                "partyId": "PRTYar0818e6752b32",
                "partyRole": null,
                "possibleNormPartyArray": [
                  {
                    "associatedNormAttorneysAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormAttorneys?pageNumber=1",
                    "associatedNormJudgesAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormJudges?pageNumber=1",
                    "associatedNormLawFirmsAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/associatedNormLawFirms?pageNumber=1",
                    "bestMatch": true,
                    "caseCountAnalyticsByNormPartyAPI": "https://enterpriseapi.unicourt.com/caseCountAnalyticsByNormParty?pageNumber=1&q=normPartyId:NPTY22222222222222",
                    "caseCountAnalyticsByOpposingNormPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222/caseCountAnalyticsByOpposingNormParty?pageNumber=1",
                    "confidenceScore": 0.5,
                    "normPartyAPI": "https://enterpriseapi.unicourt.com/normParty/NPTY22222222222222",
                    "normPartyId": "NPTY22222222222222",
                    "normPartyName": "DAAZ PROPERTIES, L.L.C.",
                    "object": "PossibleNormParty",
                    "scoreConstituents": {
                      "address": "Not_Provided_By_Data_Source",
                      "email": "Not_Provided_By_Data_Source",
                      "nameSimilarityScore": 0.69,
                      "otherPotentialNormParties": 0,
                      "phone": "Not_Provided_By_Data_Source",
                      "secretaryOfStateId": "Not_Provided_By_Data_Source"
                    }
                  }
                ],
                "sourcePartyRole": "PROBATE REFEREE"
              }
            ],
            "totalCount": 24,
            "totalPages": 1
          },
          "relatedCases": {
            "nextPageAPI": null,
            "object": "RelatedCases",
            "pageNumber": 0,
            "relatedCaseArray": [],
            "totalCount": 0,
            "totalPages": 0
          },
          "sourceCaseData": {
            "natureOfSuitArray": [],
            "object": "SourceCaseData",
            "sourceCaseStatus": "OPEN",
            "sourceCaseType": "DECEDENT'S ESTATE",
            "sourceCauseOfActionArray": [
              {
                "firstFetchDate": "2020-01-03T05:25:00+00:00",
                "isVisible": true,
                "lastFetchDate": "2020-03-14T06:56:00+00:00",
                "object": "SourceCauseOfAction",
                "sourceCauseOfAction": "Trademark Infringement",
                "sourceCauseOfActionRaw": "15:44 Trademark Infringement",
                "sourceStatute": "15:44"
              }
            ],
            "sourceChargeArray": [
              {
                "firstFetchDate": "2020-01-03T05:25:00+00:00",
                "isVisible": true,
                "lastFetchDate": "2020-03-14T06:56:00+00:00",
                "object": "SourceCharge",
                "sourceCharge": "THREATENING A LAW ENFORCEMENT OFFICER",
                "sourceChargeAdditionalDataArray": [],
                "sourceChargeDegree": "First Degree",
                "sourceChargeRaw": "836.12.2 THREATENING A LAW ENFORCEMENT OFFICER",
                "sourceChargeSeverity": "Misdemeanor",
                "sourceStatute": "836.12.2"
              }
            ],
            "sourceCourt": "STANLEY MOSK COURTHOUSE",
            "sourcePageData": [
              {
                "additionalSourceData": {
                  "extractedFields": null,
                  "rawOrderedDataArray": [
                    {
                      "childArray": [],
                      "lbl": "Case Number",
                      "ord": 0,
                      "val": "18STPB11082"
                    },
                    {
                      "childArray": [],
                      "lbl": "Case Title",
                      "ord": 1,
                      "val": "HUANG, AMY - DECEDENT"
                    },
                    {
                      "childArray": [],
                      "lbl": "Case Type",
                      "ord": 2,
                      "val": "PROBATE"
                    },
                    {
                      "childArray": [],
                      "lbl": "Filing Date",
                      "ord": 3,
                      "val": "12/05/2018"
                    }
                  ]
                },
                "firstFetchDate": "2022-02-16T22:09:04+00:00",
                "lastFetchDate": "2022-07-17T17:57:40+00:00",
                "object": "SourcePageData",
                "pageName": "caseDocumentImages"
              }
            ]
          },
          "sourceDataStatus": null,
          "url": "https://unicourt.com/case/ca-la23-huang-amy-decedent-313589"
        }
      },
      "CaseApipartyAssociationForAttorneyResponse": {
        "value": {
          "nextPageAPI": null,
          "object": "PartyAttorneyAssociations",
          "pageNumber": 1,
          "partyAttorneyAssociationArray": [
            {
              "attorneyId": "ATTYgr3ae043d84ebc",
              "isVisible": true,
              "object": "PartyAttorneyAssociation",
              "partyAttorneyAssociationId": "PATMgraf45f1878bad",
              "partyId": "PRTYgr7742be69a4ca"
            },
            {
              "attorneyId": "ATTYgr3ae043d84ebc",
              "isVisible": true,
              "object": "PartyAttorneyAssociation",
              "partyAttorneyAssociationId": "PATMgrddd23ce0c695",
              "partyId": "PRTYgr5e0bbe260bd3"
            }
          ],
          "totalCount": 2,
          "totalPages": 1
        }
      },
      "CaseDocumentOrderCallbackFailureDocumentUnavailable": {
        "value": {
          "callbackGeneratedDate": "2023-01-02T09:35:27+00:00",
          "caseDocument": null,
          "caseDocumentId": "CDOCaq7429e304c427",
          "caseDocumentOrderCallbackAPI": "https://enterpriseapi.unicourt.com/caseDocumentOrder/callbacks/CBDO5YQ63b2a55fG33",
          "caseDocumentOrderCallbackId": "CBDO5YQ63b2a55fG33",
          "exception": {
            "code": "UN101",
            "details": "The Document is no longer available in the Court.",
            "message": "NO_LONGER_AVAILABLE_IN_COURT",
            "object": "Exception"
          },
          "file": null,
          "object": "CaseDocumentOrderCallback",
          "status": "FAILURE"
        }
      },
      "CaseDocumentOrderCallbackFailureDownloadedDocument": {
        "value": {
          "callbackGeneratedDate": "2023-01-02T09:35:27+00:00",
          "caseDocument": null,
          "caseDocumentId": "CDOCam5ecae8a71e13",
          "caseDocumentOrderCallbackAPI": "https://enterpriseapi.unicourt.com/caseDocumentOrder/callbacks/CBDO5YQ63b2a55fG33",
          "caseDocumentOrderCallbackId": "CBDO5YQ63b2a55fG33",
          "exception": {
            "code": "UN400",
            "details": "Cannot accept caseDocumentOrder request as the requested document is already available in UniCourt Crowd Source Library.",
            "message": "INVALID_INPUT",
            "object": "Exception"
          },
          "file": null,
          "object": "CaseDocumentOrderCallback",
          "status": "FAILURE"
        }
      },
      "CaseDocumentOrderCallbackFailurePreviewDownloaded": {
        "value": {
          "callbackGeneratedDate": "2023-01-02T09:35:27+00:00",
          "caseDocument": null,
          "caseDocumentId": "CDOCdr7f3116941052",
          "caseDocumentOrderCallbackAPI": "https://enterpriseapi.unicourt.com/caseDocumentOrder/callbacks/CBDO5YQ63b2a55fG33",
          "caseDocumentOrderCallbackId": "CBDO5YQ63b2a55fG33",
          "exception": {
            "code": "UN400",
            "details": "Cannot accept preview caseDocumentOrder request as the requested preview document is already available in UniCourt Crowd Source Library.",
            "message": "INVALID_INPUT",
            "object": "Exception"
          },
          "file": null,
          "object": "CaseDocumentOrderCallback",
          "status": "FAILURE"
        }
      },
      "CaseDocumentOrderCallbackFailurePreviewNotSupported": {
        "value": {
          "callbackGeneratedDate": "2023-01-02T09:35:27+00:00",
          "caseDocument": null,
          "caseDocumentId": "CDOCbe0b9c8f107321",
          "caseDocumentOrderCallbackAPI": "https://enterpriseapi.unicourt.com/caseDocumentOrder/callbacks/CBDO5YQ63b2a55fG33",
          "caseDocumentOrderCallbackId": "CBDO5YQ63b2a55fG33",
          "exception": {
            "code": "UN501",
            "details": "Preview caseDocumentOrder feature is not supported by the FL DUVAL court.",
            "message": "FEATURE_NOT_SUPPORTED",
            "object": "Exception"
          },
          "file": null,
          "object": "CaseDocumentOrderCallback",
          "status": "FAILURE"
        }
      },
      "CaseDocumentOrderCallbackInProgress": {
        "value": {
          "caseDocument": null,
          "caseDocumentId": "CDOC3Ygn47Yuteq3R",
          "caseDocumentOrderCallbackAPI": "https://enterpriseapi.unicourt.com/caseDocumentOrder/callbacks/CBDOv6Hgd62a988a65",
          "caseDocumentOrderCallbackId": "CBDO3Ygn4ooAvNenww",
          "exception": null,
          "file": null,
          "object": "CaseDocumentOrderCallback",
          "status": "IN_PROGRESS"
        }
      },
      "CaseDocumentOrderCallbackSuccess": {
        "value": {
          "callbackGeneratedDate": "2022-05-27T13:56:32+00:00",
          "caseDocument": {
            "addedToLibraryDate": "2022-05-27T13:56:30+00:00",
            "caseDocumentId": "CDOCdldea56768c2e2",
            "childDocumentIdArray": [],
            "description": "JURY TRIAL; Judicial Officer: BELLAN, MELISSA; Hearing Time: 9:00 AM; Cancel Reason: BY COURT ADMINISTRATOR",
            "documentFiledDate": "2022-07-12T00:00:00+00:00",
            "downloadAPI": "https://enterpriseapi.unicourt.com/caseDocumentDownload/CDOCdldea56768c2e2",
            "estimatedOrderDuration": "withinMinutes",
            "firstFetchDate": "2022-05-27T06:23:17+00:00",
            "inLibrary": true,
            "isPreviewAvailable": false,
            "name": "CCL#2 JURY TRIAL LTR",
            "object": "CaseDocument",
            "pages": null,
            "parentDocumentId": null,
            "previewDocument": null,
            "price": 0,
            "sortOrder": null,
            "sourceDataStatus": null
          },
          "caseDocumentId": "CDOCdldea56768c2e2",
          "caseDocumentOrderCallbackAPI": "https://enterpriseapi.unicourt.com/caseDocumentOrder/callbacks/CBDO6290d860NMkto0",
          "caseDocumentOrderCallbackId": "CBDO6290d860NMkto0",
          "exception": null,
          "file": {
            "expiryDate": "2022-07-08T09:41:39+00:00",
            "fileUrl": "https://casedocs.unicourt.com/fl/mac/CDOCcrcfa6f5382361_1676967145.pdf?Expires=1677571948&Key-Pair-Id=K1K4HTY1FAWDYU&Signature=VOYB8~Ox1MBwHQQM~R1WJhVh92aubgoMU48ObN4YPqGrhKFxfIg1yquS4BEqTkr5eQ2VepbUoAefwGBJxUYNGpblSvX7FfSV-VI6P~B6ZcIqPt1ZmeQBD6IDGTJN646mzAE~xDPmHvJgCUWtcfx4zOgWnKeDMpifnM7RqK3rhWPTtxbi-ue6C8o57TaJB~hXjfWTBcl2JIGDD8dg8fidGdoT2rlnhuP~nJbGQstetZ~rHI-w7sbOMU5PX8NyJYnCRE8LywWPRsfGjgyZ1U2imT1t~QzA1wWSTQFmupr65RB-o26XASDhlYWt2As8Dm7mFeKK1uwL1v5HAUkDzlS34A__",
            "name": "CCL#2 JURY TRIAL LTR",
            "object": "ExportFile"
          },
          "object": "CaseDocumentOrderCallback",
          "status": "COMPLETE"
        }
      },
      "CaseDocumentOrderPreviewRequest": {
        "value": {
          "caseDocumentId": "CDOCage0aa6685b00b",
          "isPreviewOnly": true
        }
      },
      "CaseDocumentOrderRequest": {
        "value": {
          "caseDocumentId": "CDOCcre989d654fa05",
          "isPreviewOnly": false
        }
      },
      "CaseExportCallbackFailure": {
        "value": {
          "callbackGeneratedDate": "2022-06-20T17:07:28+00:00",
          "caseExportCallbackAPI": "https://enterpriseapi.unicourt.com/caseExport/callbacks/CBCEbOH62b0a94fc93",
          "caseExportCallbackId": "CBCEbOH62b0a94fc93",
          "caseId": "CASEhq2c32o4900a48",
          "exception": {
            "code": "UN404",
            "details": "Requested caseId is invalid.",
            "message": "RESOURCE_NOT_FOUND",
            "object": "Exception"
          },
          "file": null,
          "object": "CaseExportCallback",
          "status": "FAILURE"
        }
      },
      "CaseExportCallbackInProgress": {
        "value": {
          "callbackGeneratedDate": null,
          "caseExportCallbackAPI": "https://enterpriseapi.unicourt.com/caseExport/callbacks/CBCEG4p62443dedRM3",
          "caseExportCallbackId": "CBCEG4p62443dedRM3",
          "caseId": "CASEak7aa69cdf27a1",
          "exception": null,
          "file": null,
          "object": "CaseExportCallback",
          "status": "IN_PROGRESS"
        }
      },
      "CaseExportCallbackSuccess": {
        "value": {
          "callbackGeneratedDate": "2022-05-25T13:39:18+00:00",
          "caseExportCallbackAPI": "https://enterpriseapi.unicourt.com/caseExport/callbacks/CBCEoX628e3179ARG2",
          "caseExportCallbackId": "CBCEoX628e3179ARG2",
          "caseId": "CASEhq2c3224900a48",
          "exception": null,
          "file": {
            "expiryDate": "2022-07-08T09:41:39+00:00",
            "fileUrl": "https://ctf.unicourt.com/p1653419993/CASEhq2c3224900a48.zip?Expires=1677597883&Key-Pair-Id=K1K4HTY1FAWDYU&Signature=IPLU9PP24AR0y6SZ46nlv8JQzwgEBh~i9QCYvoXl7PLwgiWiw959YBBmAscVEZdplb63gelMlbOjnUmh~nC8Jp7HrUu0ILo0Cjeu99YdHuHg-aYwcEXCnN5UUn66DS3X5qfyP9RJ8AbWVD9kVZar3DWPCDBiaectnbYNRWXqvjnwbKXgLv7vAqual27OcaL09pmyMwXbf5gZWnzDmlaHUAJLZIOhJd8mwEVL~StSS5-UOvnTQUMO5~by0GoCqNch4y5jo--OgNy61PheGw1oCIjBK7lLLO7La66GKoVBv~vvp1RM~-x3zLuPbxFo9OnMM6Fzu0ioOC25OT~58JlLiQ__",
            "name": "case/production/p1653419993/CASEhq2c3224900a48.zip",
            "object": "ExportFile"
          },
          "object": "CaseExportCallback",
          "status": "COMPLETE"
        }
      },
      "CasePacerDocumentOrderRequest": {
        "value": {
          "caseDocumentId": "CDOCdgd2e087b53a6b",
          "isPreviewOnly": false,
          "pacerOptions": {
            "pacerClientCode": "Test UniCourt API",
            "pacerUserId": "URKYwer3tyh5r56gq2"
          }
        }
      },
      "CaseTrackComplete": {
        "value": {
          "case": {
            "attorneys": {
              "attorneyArray": [
                {
                  "attorneyAnalyticsAPI": null,
                  "attorneyId": "ATTYgub9535a0e65ff",
                  "attorneyLawFirmArray": [
                    {
                      "attorneyLawFirmId": "ALFIgu2be725a0aaf0",
                      "firstFetchDate": "2021-07-07T06:05:56+00:00",
                      "isVisible": true,
                      "lastFetchDate": "2022-01-09T12:05:23+00:00",
                      "lawFirmAnalyticsAPI": null,
                      "name": "Gutride Safier LLP",
                      "normLawFirmId": null,
                      "object": "AttorneyLawFirm"
                    }
                  ],
                  "attorneyType": {
                    "attorneyTypeId": "ATYPRPk3LNobYmtqwF",
                    "createdDate": "2022-03-28T04:59:12+00:00",
                    "name": "Attorney",
                    "object": "AttorneyType"
                  },
                  "barNumber": null,
                  "contact": {
                    "addressArray": [
                      {
                        "city": "San Francisco",
                        "countryCode": "USA",
                        "countryName": "United States of America",
                        "firstFetchDate": "2021-07-07T06:05:56+00:00",
                        "isVisible": true,
                        "lastFetchDate": "2022-01-09T12:05:23+00:00",
                        "latitude": null,
                        "longitude": null,
                        "object": "Address",
                        "stateCode": "CA",
                        "stateName": "CALIFORNIA",
                        "streetAddress1": "100 Pine Street, Suite 1250",
                        "streetAddress2": null,
                        "zip": "94111",
                        "zip4": null
                      }
                    ],
                    "emailArray": [
                      {
                        "emailId": "seth@gutridesafier.com",
                        "firstFetchDate": "2021-07-07T06:05:56+00:00",
                        "isVisible": true,
                        "lastFetchDate": "2022-01-09T12:05:23+00:00",
                        "object": "Email"
                      }
                    ],
                    "object": "Contact",
                    "phoneNumberArray": [
                      {
                        "firstFetchDate": "2021-07-07T06:05:56+00:00",
                        "isVisible": true,
                        "lastFetchDate": "2022-01-09T12:05:23+00:00",
                        "object": "Phone",
                        "phoneNumber": "(415) 449-6469",
                        "phoneType": "OFFICE"
                      },
                      {
                        "firstFetchDate": "2021-07-07T06:05:56+00:00",
                        "isVisible": true,
                        "lastFetchDate": "2022-01-09T12:05:23+00:00",
                        "object": "Phone",
                        "phoneNumber": "(415) 271-6469",
                        "phoneType": "DEFAULT"
                      }
                    ]
                  },
                  "firstFetchDate": "2019-10-03T05:12:22+00:00",
                  "firstName": "Seth",
                  "isVisible": true,
                  "lastFetchDate": "2022-01-09T12:05:23+00:00",
                  "lastName": "Safier",
                  "middleName": "A",
                  "name": "Seth A. Safier",
                  "namePrefix": null,
                  "nameSuffix": null,
                  "normAttorneyId": null,
                  "normLawFirmIdArray": [],
                  "object": "Attorney",
                  "partyAttorneyAssociations": {
                    "nextPageAPI": "https://enterpriseapi.unicourt.com/attorney/ATTYgub9535a0e65ff/associatedParties?pageNumber=2",
                    "object": "PartyAttorneyAssociations",
                    "pageNumber": 1,
                    "partyAttorneyAssociationArray": [
                      {
                        "attorneyId": "ATTYgub9535a0e65ff",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgu3bc0330781b7",
                        "partyId": "PRTYgu4899baa8e395"
                      },
                      {
                        "attorneyId": "ATTYgub9535a0e65ff",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgu03138bb099bb",
                        "partyId": "PRTYguf4d2b2822a8a"
                      },
                      {
                        "attorneyId": "ATTYgub9535a0e65ff",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgua6917f661810",
                        "partyId": "PRTYgu1114d76c1475"
                      },
                      {
                        "attorneyId": "ATTYgub9535a0e65ff",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgu0444016b775e",
                        "partyId": "PRTYgu925533afa045"
                      },
                      {
                        "attorneyId": "ATTYgub9535a0e65ff",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMguf5e0bb2b5cba",
                        "partyId": "PRTYgu432ea7e921e5"
                      },
                      {
                        "attorneyId": "ATTYgub9535a0e65ff",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgua54b9d200c68",
                        "partyId": "PRTYguaad349df0b12"
                      },
                      {
                        "attorneyId": "ATTYgub9535a0e65ff",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgu0a12b19636ab",
                        "partyId": "PRTYgude2a797637de"
                      },
                      {
                        "attorneyId": "ATTYgub9535a0e65ff",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgub897f0f4b445",
                        "partyId": "PRTYgu53944be641bb"
                      },
                      {
                        "attorneyId": "ATTYgub9535a0e65ff",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgu6a21094d0fb0",
                        "partyId": "PRTYgu91b1717441f6"
                      },
                      {
                        "attorneyId": "ATTYgub9535a0e65ff",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMguf145245b818e",
                        "partyId": "PRTYgu6cb91121e83f"
                      },
                      {
                        "attorneyId": "ATTYgub9535a0e65ff",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgu8ecc065965aa",
                        "partyId": "PRTYguf02742c20571"
                      },
                      {
                        "attorneyId": "ATTYgub9535a0e65ff",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgucbccdda0b9db",
                        "partyId": "PRTYgu370b60916354"
                      },
                      {
                        "attorneyId": "ATTYgub9535a0e65ff",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgu9619f878ab9c",
                        "partyId": "PRTYgu7a65fe9b122e"
                      },
                      {
                        "attorneyId": "ATTYgub9535a0e65ff",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMguff3d38ae7d51",
                        "partyId": "PRTYgu99823a8c8445"
                      },
                      {
                        "attorneyId": "ATTYgub9535a0e65ff",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMguf7a736a3cec7",
                        "partyId": "PRTYgu8cc45bae60df"
                      },
                      {
                        "attorneyId": "ATTYgub9535a0e65ff",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgufdd9bd26e65e",
                        "partyId": "PRTYgu30aa5ec53f29"
                      },
                      {
                        "attorneyId": "ATTYgub9535a0e65ff",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgua44e5a3898be",
                        "partyId": "PRTYgu3d0f02bfb0dd"
                      },
                      {
                        "attorneyId": "ATTYgub9535a0e65ff",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgu081270d01b10",
                        "partyId": "PRTYgu8b76d605bfdc"
                      },
                      {
                        "attorneyId": "ATTYgub9535a0e65ff",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgu2fd96bc21a5e",
                        "partyId": "PRTYgu6829297b3fc0"
                      },
                      {
                        "attorneyId": "ATTYgub9535a0e65ff",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMguf98858c32575",
                        "partyId": "PRTYgu9d59d0b54443"
                      },
                      {
                        "attorneyId": "ATTYgub9535a0e65ff",
                        "isVisible": true,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgu74ae9c1df03f",
                        "partyId": "PRTYgu43a4b6200a10"
                      },
                      {
                        "attorneyId": "ATTYgub9535a0e65ff",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgu9403888566bb",
                        "partyId": "PRTYgu915ed51c952c"
                      },
                      {
                        "attorneyId": "ATTYgub9535a0e65ff",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgud24748a431c6",
                        "partyId": "PRTYgua05b77d1d275"
                      },
                      {
                        "attorneyId": "ATTYgub9535a0e65ff",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgu08a78e6615eb",
                        "partyId": "PRTYgu25d30693074d"
                      },
                      {
                        "attorneyId": "ATTYgub9535a0e65ff",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgu9e01c6c4e5d6",
                        "partyId": "PRTYguc76cb5b9ff01"
                      }
                    ],
                    "totalCount": 45,
                    "totalPages": 2
                  },
                  "sourceAttorneyType": "ATTORNEY"
                }
              ],
              "nextPageAPI": "https://enterpriseapi.unicourt.com/case/CASEgu93749bd4f133/attorneys?pageNumber=2",
              "object": "Attorneys",
              "pageNumber": 1,
              "totalCount": 1154,
              "totalPages": 47
            },
            "caseDocuments": {
              "caseDocumentArray": [
                {
                  "addedToLibraryDate": null,
                  "caseDocumentId": "CDOCdg602aba0ebd17",
                  "childDocumentIdArray": [],
                  "description": "RESTRICTED",
                  "documentFiledDate": "2022-10-18T00:00:00+00:00",
                  "downloadAPI": null,
                  "firstFetchDate": "2022-10-30T22:40:30+00:00",
                  "inLibrary": false,
                  "isPreviewAvailable": false,
                  "name": "3611",
                  "object": "CaseDocument",
                  "pages": null,
                  "parentDocumentId": null,
                  "previewDocument": null,
                  "price": null,
                  "sortOrder": 8858,
                  "sourceDataStatus": null
                },
                {
                  "addedToLibraryDate": null,
                  "caseDocumentId": "CDOCdg6eedf356e4b9",
                  "childDocumentIdArray": [],
                  "description": "*Restricted*",
                  "documentFiledDate": "2022-10-17T00:00:00+00:00",
                  "downloadAPI": null,
                  "firstFetchDate": "2022-10-30T22:40:29+00:00",
                  "inLibrary": false,
                  "isPreviewAvailable": false,
                  "name": "3610 #5",
                  "object": "CaseDocument",
                  "pages": null,
                  "parentDocumentId": "CDOCdgbfec0e297082",
                  "previewDocument": null,
                  "price": null,
                  "sortOrder": 8857,
                  "sourceDataStatus": null
                }
              ],
              "nextPageAPI": "https://enterpriseapi.unicourt.com/case/CASEgu93749bd4f133/documents?pageNumber=2",
              "object": "CaseDocuments",
              "pageNumber": 1,
              "totalCount": 8948,
              "totalPages": 90
            },
            "caseId": "CASEgu93749bd4f133",
            "caseName": "In Re: Juul Labs, Inc., Marketing, Sales Practices, and Products Liability Litigation",
            "caseNumber": "3:19-md-02913",
            "caseStats": {
              "allCaseDocumentCount": 5585,
              "attorneyCount": 1154,
              "caseDocumentInLibraryCount": 31,
              "docketEntryCount": 2793,
              "freeCaseDocumentCount": 23,
              "hearingCount": 0,
              "judgeCount": 1,
              "object": "CaseStats",
              "paidCaseDocumentCount": 5562,
              "partyCount": 3925,
              "relatedCaseCount": 10
            },
            "caseStatus": {
              "caseClassArray": [
                "Civil",
                "Criminal"
              ],
              "caseStatusGroup": "Open",
              "caseStatusGroupId": "CSSGCYoBCJ3A8j4MX4",
              "caseStatusId": "CSSTVnE3shD3CGtkcZ",
              "createdDate": "2022-03-28T04:58:47+00:00",
              "name": "Open",
              "object": "CaseStatus"
            },
            "caseType": {
              "areaOfLaw": "Personal Injury and Torts",
              "areaOfLawId": "AOFLAQAm5WsAdhXKdH",
              "caseClass": "Civil",
              "caseClassId": "CSCLNjbKTN7Yfo2wdb",
              "caseTypeGroup": "Product Liability",
              "caseTypeGroupId": "CTYGGJBRVqYHmvuQui",
              "caseTypeId": "CTYPGJBRVqYHmvuQui",
              "caseTypeTag": null,
              "createdDate": "2022-03-28T04:58:37+00:00",
              "name": null,
              "object": "CaseType",
              "saliCode": "TORT"
            },
            "causeOfActionArray": [],
            "chargeArray": [],
            "court": {
              "additionalLevels": null,
              "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTDAD6ZYGvmFFjRj/appealCourts",
              "container": "Northern District of California",
              "containerType": "District",
              "courtId": "CORTDAD6ZYGvmFFjRj",
              "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTDAD6ZYGvmFFjRj/courtLocations",
              "courtServiceStatusAPI": null,
              "courtSystemId": "COSY8rpkvJ4kMi4ZYD",
              "courtTypeId": "COTPLurdwRD5jyKSYb",
              "createdDate": "2022-07-08T05:49:53+00:00",
              "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTDAD6ZYGvmFFjRj/jurisdictionGeo",
              "name": "California Northern District",
              "nameAka": "U.S. District Court for the Northern District of California",
              "object": "Court",
              "system": "U.S. District Courts",
              "type": "Federal"
            },
            "courtLocation": {
              "city": "San Francisco",
              "courtLocationId": "COLOKevjJdrbKd97wQ",
              "courtServiceStatusAPI": null,
              "courtsForCourtLocationAPI": "https://enterpriseapi.unicourt.com/masterData/courtLocation/COLOKevjJdrbKd97wQ/courts",
              "createdDate": "2022-07-08T05:49:53+00:00",
              "name": "Phillip Burton Federal Building and U.S. Courthouse",
              "object": "CourtLocation",
              "stateName": "California",
              "streetAddress1": "450 Golden Gate Avenue",
              "streetAddress2": null
            },
            "courtServiceStatusAPI": null,
            "courtServiceStatusId": null,
            "docketEntries": {
              "docketEntryArray": [
                {
                  "boundary": null,
                  "docketBadge": "DOCKET",
                  "docketEntryDate": "2021-10-15T00:00:00+00:00",
                  "docketEntryPrimaryDocuments": {
                    "caseDocumentArray": [
                      {
                        "addedToLibraryDate": null,
                        "caseDocumentId": "CDOCdgfb2cfe44a79c",
                        "childDocumentIdArray": [],
                        "description": null,
                        "documentFiledDate": "2021-10-15T00:00:00+00:00",
                        "downloadAPI": null,
                        "firstFetchDate": "2021-10-16T13:27:53+00:00",
                        "inLibrary": false,
                        "isPreviewAvailable": false,
                        "name": "2458",
                        "object": "CaseDocument",
                        "pages": 15,
                        "parentDocumentId": null,
                        "previewDocument": null,
                        "price": 1.5,
                        "sortOrder": 3829,
                        "sourceDataStatus": null
                      }
                    ],
                    "nextPageAPI": null,
                    "object": "DocketEntryPrimaryDocuments",
                    "pageNumber": 1,
                    "totalCount": 1,
                    "totalPages": 1
                  },
                  "docketEntrySecondaryDocuments": {
                    "caseDocumentArray": [],
                    "nextPageAPI": null,
                    "object": "DocketEntrySecondaryDocuments",
                    "pageNumber": 0,
                    "totalCount": 0,
                    "totalPages": 0
                  },
                  "docketNumber": 2458,
                  "lastFetchDate": "2021-10-17T11:31:32+00:00",
                  "object": "DocketEntry",
                  "referencedDocketNumberArray": [],
                  "sortOrder": 2494,
                  "text": "(#2458) Joint Discovery Status Report filed by All Plaintiffs. (London, Sarah) (Filed on 10/15/2021) (Entered: 10/15/2021)",
                  "textStructured": null
                }
              ],
              "nextPageAPI": "https://enterpriseapi.unicourt.com/case/CASEgu93749bd4f133/docketEntries?pageNumber=2",
              "object": "DocketEntries",
              "pageNumber": 1,
              "totalCount": 2593,
              "totalPages": 26
            },
            "exportAPI": "https://enterpriseapi.unicourt.com/caseExport/CASEgu93749bd4f133",
            "filedDate": "2019-10-02T00:00:00+00:00",
            "firstFetchDate": "2019-10-03T05:04:52+00:00",
            "hasDocumentsWithPreview": false,
            "hasOnlyMetaInfo": false,
            "hearings": {
              "hearingArray": [],
              "nextPageAPI": null,
              "object": "Hearings",
              "pageNumber": 0,
              "totalCount": 0,
              "totalPages": 0
            },
            "judges": {
              "judgeArray": [
                {
                  "contact": {
                    "addressArray": [],
                    "emailArray": [],
                    "object": "Contact",
                    "phoneNumberArray": []
                  },
                  "firstFetchDate": "2019-10-03T05:12:30+00:00",
                  "firstName": "William",
                  "isVisible": true,
                  "judgeAnalyticsAPI": null,
                  "judgeId": "JUDGgu35d95a5737bf",
                  "judgeType": {
                    "createdDate": "2022-03-28T04:59:06+00:00",
                    "judgeTypeId": "JGTPSZBRSRcT94vpaA",
                    "name": "Presiding Judge",
                    "object": "JudgeType"
                  },
                  "lastFetchDate": "2022-01-09T12:11:24+00:00",
                  "lastName": "Orrick",
                  "middleName": "H",
                  "name": "William H. Orrick",
                  "namePrefix": null,
                  "nameSuffix": null,
                  "normJudgeId": null,
                  "object": "Judge",
                  "sourceJudgeType": "PRESIDING"
                }
              ],
              "nextPageAPI": null,
              "object": "Judges",
              "pageNumber": 1,
              "totalCount": 1,
              "totalPages": 1
            },
            "lastFetchDate": "2022-01-10T11:29:55+00:00",
            "lastFetchDateWithUpdates": "2022-01-08T11:28:07+00:00",
            "object": "Case",
            "participantsLastFetchDate": "2022-01-07T09:49:03+00:00",
            "parties": {
              "nextPageAPI": "https://enterpriseapi.unicourt.com/case/CASEgu93749bd4f133/parties?pageNumber=2",
              "object": "Parties",
              "pageNumber": 1,
              "partyArray": [
                {
                  "attorneyRepresentationType": {
                    "attorneyRepresentationTypeId": "ATRPDTy7Tqdwk974XC",
                    "createdDate": "2022-03-28T04:59:20+00:00",
                    "name": "Attorney Represented",
                    "object": "AttorneyRepresentationType"
                  },
                  "contact": {
                    "addressArray": [],
                    "emailArray": [],
                    "object": "Contact",
                    "phoneNumberArray": []
                  },
                  "firstFetchDate": "2019-10-03T05:12:26+00:00",
                  "firstName": "David",
                  "isVisible": false,
                  "lastFetchDate": "2022-01-09T12:06:03+00:00",
                  "lastName": "Kugler",
                  "middleName": null,
                  "name": "David Kugler",
                  "namePrefix": null,
                  "nameSuffix": null,
                  "normPartyId": null,
                  "object": "Party",
                  "partyAnalyticsAPI": null,
                  "partyAttorneyAssociations": {
                    "nextPageAPI": null,
                    "object": "PartyAttorneyAssociations",
                    "pageNumber": 1,
                    "partyAttorneyAssociationArray": [
                      {
                        "attorneyId": "ATTYgu60fac2c00ddb",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMguff5c68e321d4",
                        "partyId": "PRTYgu25d30693074d"
                      },
                      {
                        "attorneyId": "ATTYgu4177c8a6f898",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMguc08c86e1fdb5",
                        "partyId": "PRTYgu25d30693074d"
                      },
                      {
                        "attorneyId": "ATTYguc324146a49f8",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgu8f5aaf59ed67",
                        "partyId": "PRTYgu25d30693074d"
                      },
                      {
                        "attorneyId": "ATTYgu26b1365a23cd",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgu5e11360f574c",
                        "partyId": "PRTYgu25d30693074d"
                      },
                      {
                        "attorneyId": "ATTYgu04389a0b9429",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgu04a8ee633c07",
                        "partyId": "PRTYgu25d30693074d"
                      },
                      {
                        "attorneyId": "ATTYgubd9f7e17c01f",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgu827625efb4e2",
                        "partyId": "PRTYgu25d30693074d"
                      },
                      {
                        "attorneyId": "ATTYgu224b4a9fd59e",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgu4b75ecec2ed5",
                        "partyId": "PRTYgu25d30693074d"
                      },
                      {
                        "attorneyId": "ATTYgua70f6c1f0903",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgu06bd8c3338b8",
                        "partyId": "PRTYgu25d30693074d"
                      },
                      {
                        "attorneyId": "ATTYgub3dfc26ac01b",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgu542a35ab4043",
                        "partyId": "PRTYgu25d30693074d"
                      },
                      {
                        "attorneyId": "ATTYgud355408d9a04",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgu85fc082d9885",
                        "partyId": "PRTYgu25d30693074d"
                      },
                      {
                        "attorneyId": "ATTYgu27755c14bdfd",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMguc5563cf21256",
                        "partyId": "PRTYgu25d30693074d"
                      },
                      {
                        "attorneyId": "ATTYgue932086804b4",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgu3c989cbd350d",
                        "partyId": "PRTYgu25d30693074d"
                      },
                      {
                        "attorneyId": "ATTYgu2af8bf4d94a4",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgu4325e58c3f2a",
                        "partyId": "PRTYgu25d30693074d"
                      },
                      {
                        "attorneyId": "ATTYguca9119dfb600",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgu0852cc10f22a",
                        "partyId": "PRTYgu25d30693074d"
                      },
                      {
                        "attorneyId": "ATTYgu73d66e922438",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgu8d32bd2fbb41",
                        "partyId": "PRTYgu25d30693074d"
                      },
                      {
                        "attorneyId": "ATTYgub9535a0e65ff",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgu08a78e6615eb",
                        "partyId": "PRTYgu25d30693074d"
                      }
                    ],
                    "totalCount": 16,
                    "totalPages": 1
                  },
                  "partyClassificationType": "INDIVIDUAL",
                  "partyId": "PRTYgu25d30693074d",
                  "partyRole": {
                    "createdDate": "2022-05-27T00:50:33+00:00",
                    "description": null,
                    "name": "Plaintiff",
                    "object": "PartyRole",
                    "partyRoleGroup": "Party Offensive",
                    "partyRoleGroupId": "PTYGBnjxbx6tKNfVEP",
                    "partyRoleId": "PTYRiP8nMgPxBsPc5i"
                  },
                  "sourcePartyRole": "PLAINTIFF"
                },
                {
                  "attorneyRepresentationType": {
                    "attorneyRepresentationTypeId": "ATRPDTy7Tqdwk974XC",
                    "createdDate": "2022-03-28T04:59:20+00:00",
                    "name": "Attorney Represented",
                    "object": "AttorneyRepresentationType"
                  },
                  "contact": {
                    "addressArray": [],
                    "emailArray": [],
                    "object": "Contact",
                    "phoneNumberArray": []
                  },
                  "firstFetchDate": "2019-10-03T05:12:24+00:00",
                  "firstName": "Jonathan",
                  "isVisible": true,
                  "lastFetchDate": "2022-01-09T12:06:08+00:00",
                  "lastName": "Mardis",
                  "middleName": null,
                  "name": "Jonathan Mardis",
                  "namePrefix": null,
                  "nameSuffix": null,
                  "normPartyId": null,
                  "object": "Party",
                  "partyAnalyticsAPI": null,
                  "partyAttorneyAssociations": {
                    "nextPageAPI": null,
                    "object": "PartyAttorneyAssociations",
                    "pageNumber": 1,
                    "partyAttorneyAssociationArray": [
                      {
                        "attorneyId": "ATTYgu26b1365a23cd",
                        "isVisible": true,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgu3437e8c3e6a8",
                        "partyId": "PRTYgu06ab248028d0"
                      },
                      {
                        "attorneyId": "ATTYgu27755c14bdfd",
                        "isVisible": true,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgu55b2b0302f78",
                        "partyId": "PRTYgu06ab248028d0"
                      },
                      {
                        "attorneyId": "ATTYgue932086804b4",
                        "isVisible": true,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgu68266117898e",
                        "partyId": "PRTYgu06ab248028d0"
                      },
                      {
                        "attorneyId": "ATTYgub9535a0e65ff",
                        "isVisible": true,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgu258afc8cfaf1",
                        "partyId": "PRTYgu06ab248028d0"
                      },
                      {
                        "attorneyId": "ATTYgu73d66e922438",
                        "isVisible": true,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgu0ee4b001b87e",
                        "partyId": "PRTYgu06ab248028d0"
                      },
                      {
                        "attorneyId": "ATTYgu2af8bf4d94a4",
                        "isVisible": true,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgu4d5f56f79a5d",
                        "partyId": "PRTYgu06ab248028d0"
                      }
                    ],
                    "totalCount": 6,
                    "totalPages": 1
                  },
                  "partyClassificationType": "INDIVIDUAL",
                  "partyId": "PRTYgu06ab248028d0",
                  "partyRole": {
                    "createdDate": "2022-05-27T00:50:33+00:00",
                    "description": null,
                    "name": "Plaintiff",
                    "object": "PartyRole",
                    "partyRoleGroup": "Party Offensive",
                    "partyRoleGroupId": "PTYGBnjxbx6tKNfVEP",
                    "partyRoleId": "PTYRiP8nMgPxBsPc5i"
                  },
                  "sourcePartyRole": "PLAINTIFF"
                },
                {
                  "attorneyRepresentationType": {
                    "attorneyRepresentationTypeId": "ATRPDTy7Tqdwk974XC",
                    "createdDate": "2022-03-28T04:59:20+00:00",
                    "name": "Attorney Represented",
                    "object": "AttorneyRepresentationType"
                  },
                  "contact": {
                    "addressArray": [],
                    "emailArray": [],
                    "object": "Contact",
                    "phoneNumberArray": []
                  },
                  "firstFetchDate": "2019-10-03T05:12:23+00:00",
                  "firstName": "W.T.",
                  "isVisible": false,
                  "lastFetchDate": "2022-01-09T12:06:06+00:00",
                  "lastName": null,
                  "middleName": null,
                  "name": "W.T.",
                  "namePrefix": null,
                  "nameSuffix": null,
                  "normPartyId": null,
                  "object": "Party",
                  "partyAnalyticsAPI": null,
                  "partyAttorneyAssociations": {
                    "nextPageAPI": null,
                    "object": "PartyAttorneyAssociations",
                    "pageNumber": 1,
                    "partyAttorneyAssociationArray": [
                      {
                        "attorneyId": "ATTYgu60fac2c00ddb",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgu11af165bca02",
                        "partyId": "PRTYguee7efd685099"
                      },
                      {
                        "attorneyId": "ATTYgu4177c8a6f898",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMguca8966b25d32",
                        "partyId": "PRTYguee7efd685099"
                      },
                      {
                        "attorneyId": "ATTYguc324146a49f8",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgu8e7113895154",
                        "partyId": "PRTYguee7efd685099"
                      },
                      {
                        "attorneyId": "ATTYgu26b1365a23cd",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgu8ea2adb1d785",
                        "partyId": "PRTYguee7efd685099"
                      },
                      {
                        "attorneyId": "ATTYgu04389a0b9429",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMguc389269d8997",
                        "partyId": "PRTYguee7efd685099"
                      },
                      {
                        "attorneyId": "ATTYgubd9f7e17c01f",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMguceb309b6533e",
                        "partyId": "PRTYguee7efd685099"
                      },
                      {
                        "attorneyId": "ATTYgu224b4a9fd59e",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgua04bcb750b73",
                        "partyId": "PRTYguee7efd685099"
                      },
                      {
                        "attorneyId": "ATTYgua70f6c1f0903",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgu7c2f12c86a28",
                        "partyId": "PRTYguee7efd685099"
                      },
                      {
                        "attorneyId": "ATTYgub3dfc26ac01b",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgu1f95896d318a",
                        "partyId": "PRTYguee7efd685099"
                      },
                      {
                        "attorneyId": "ATTYgud355408d9a04",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgu877bc8d09e6b",
                        "partyId": "PRTYguee7efd685099"
                      },
                      {
                        "attorneyId": "ATTYgu27755c14bdfd",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgu69b3ceaa270c",
                        "partyId": "PRTYguee7efd685099"
                      },
                      {
                        "attorneyId": "ATTYgue932086804b4",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgud52f8102ee02",
                        "partyId": "PRTYguee7efd685099"
                      },
                      {
                        "attorneyId": "ATTYgu2af8bf4d94a4",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgu3249708b0fe8",
                        "partyId": "PRTYguee7efd685099"
                      },
                      {
                        "attorneyId": "ATTYguca9119dfb600",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgu963b7a63ab38",
                        "partyId": "PRTYguee7efd685099"
                      },
                      {
                        "attorneyId": "ATTYgu73d66e922438",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgu00de7f1b9c41",
                        "partyId": "PRTYguee7efd685099"
                      },
                      {
                        "attorneyId": "ATTYgub9535a0e65ff",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgu5619b78454c0",
                        "partyId": "PRTYguee7efd685099"
                      }
                    ],
                    "totalCount": 16,
                    "totalPages": 1
                  },
                  "partyClassificationType": "COMPANY",
                  "partyId": "PRTYguee7efd685099",
                  "partyRole": {
                    "createdDate": "2022-05-27T00:50:33+00:00",
                    "description": null,
                    "name": "Plaintiff",
                    "object": "PartyRole",
                    "partyRoleGroup": "Party Offensive",
                    "partyRoleGroupId": "PTYGBnjxbx6tKNfVEP",
                    "partyRoleId": "PTYRiP8nMgPxBsPc5i"
                  },
                  "sourcePartyRole": "PLAINTIFF"
                },
                {
                  "attorneyRepresentationType": {
                    "attorneyRepresentationTypeId": "ATRPDTy7Tqdwk974XC",
                    "createdDate": "2022-03-28T04:59:20+00:00",
                    "name": "Attorney Represented",
                    "object": "AttorneyRepresentationType"
                  },
                  "contact": {
                    "addressArray": [],
                    "emailArray": [],
                    "object": "Contact",
                    "phoneNumberArray": []
                  },
                  "firstFetchDate": "2019-10-03T05:12:26+00:00",
                  "firstName": "Anthony",
                  "isVisible": false,
                  "lastFetchDate": "2022-01-09T12:05:54+00:00",
                  "lastName": "Smith",
                  "middleName": null,
                  "name": "Anthony Smith",
                  "namePrefix": null,
                  "nameSuffix": null,
                  "normPartyId": null,
                  "object": "Party",
                  "partyAnalyticsAPI": null,
                  "partyAttorneyAssociations": {
                    "nextPageAPI": null,
                    "object": "PartyAttorneyAssociations",
                    "pageNumber": 1,
                    "partyAttorneyAssociationArray": [
                      {
                        "attorneyId": "ATTYgu48d234fec560",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgu067a9e8b3d11",
                        "partyId": "PRTYguc76cb5b9ff01"
                      },
                      {
                        "attorneyId": "ATTYgu60fac2c00ddb",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgu98cc049c54fe",
                        "partyId": "PRTYguc76cb5b9ff01"
                      },
                      {
                        "attorneyId": "ATTYgua6bcd9387d4b",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgu8e0895b7f107",
                        "partyId": "PRTYguc76cb5b9ff01"
                      },
                      {
                        "attorneyId": "ATTYgub2188df1aa8c",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMguecd060d14f68",
                        "partyId": "PRTYguc76cb5b9ff01"
                      },
                      {
                        "attorneyId": "ATTYgu4177c8a6f898",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgu5fbd05e540c5",
                        "partyId": "PRTYguc76cb5b9ff01"
                      },
                      {
                        "attorneyId": "ATTYguc324146a49f8",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgu03a3863cace2",
                        "partyId": "PRTYguc76cb5b9ff01"
                      },
                      {
                        "attorneyId": "ATTYgu26b1365a23cd",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgu49d48f1b6847",
                        "partyId": "PRTYguc76cb5b9ff01"
                      },
                      {
                        "attorneyId": "ATTYgu04389a0b9429",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgu79bb58951a47",
                        "partyId": "PRTYguc76cb5b9ff01"
                      },
                      {
                        "attorneyId": "ATTYgubd9f7e17c01f",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMguae4e12c54040",
                        "partyId": "PRTYguc76cb5b9ff01"
                      },
                      {
                        "attorneyId": "ATTYguf556f035bba0",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMguab0124ec21ea",
                        "partyId": "PRTYguc76cb5b9ff01"
                      },
                      {
                        "attorneyId": "ATTYgu224b4a9fd59e",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgu51776d0fa2e1",
                        "partyId": "PRTYguc76cb5b9ff01"
                      },
                      {
                        "attorneyId": "ATTYgua70f6c1f0903",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgua2a05e1a348a",
                        "partyId": "PRTYguc76cb5b9ff01"
                      },
                      {
                        "attorneyId": "ATTYgub3dfc26ac01b",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMguda1e153eafa9",
                        "partyId": "PRTYguc76cb5b9ff01"
                      },
                      {
                        "attorneyId": "ATTYgud355408d9a04",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgu231eee95a91e",
                        "partyId": "PRTYguc76cb5b9ff01"
                      },
                      {
                        "attorneyId": "ATTYgu27755c14bdfd",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgu81d6594db7ed",
                        "partyId": "PRTYguc76cb5b9ff01"
                      },
                      {
                        "attorneyId": "ATTYgue932086804b4",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgue245bb2b3393",
                        "partyId": "PRTYguc76cb5b9ff01"
                      },
                      {
                        "attorneyId": "ATTYgu2af8bf4d94a4",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgu6c9b112fd7d0",
                        "partyId": "PRTYguc76cb5b9ff01"
                      },
                      {
                        "attorneyId": "ATTYguca9119dfb600",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgu6ba9727d003d",
                        "partyId": "PRTYguc76cb5b9ff01"
                      },
                      {
                        "attorneyId": "ATTYgu73d66e922438",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgu37169fb5b889",
                        "partyId": "PRTYguc76cb5b9ff01"
                      },
                      {
                        "attorneyId": "ATTYgub9535a0e65ff",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgu9e01c6c4e5d6",
                        "partyId": "PRTYguc76cb5b9ff01"
                      }
                    ],
                    "totalCount": 20,
                    "totalPages": 1
                  },
                  "partyClassificationType": "INDIVIDUAL",
                  "partyId": "PRTYguc76cb5b9ff01",
                  "partyRole": {
                    "createdDate": "2022-05-27T00:50:33+00:00",
                    "description": null,
                    "name": "Plaintiff",
                    "object": "PartyRole",
                    "partyRoleGroup": "Party Offensive",
                    "partyRoleGroupId": "PTYGBnjxbx6tKNfVEP",
                    "partyRoleId": "PTYRiP8nMgPxBsPc5i"
                  },
                  "sourcePartyRole": "PLAINTIFF"
                },
                {
                  "attorneyRepresentationType": {
                    "attorneyRepresentationTypeId": "ATRPDTy7Tqdwk974XC",
                    "createdDate": "2022-03-28T04:59:20+00:00",
                    "name": "Attorney Represented",
                    "object": "AttorneyRepresentationType"
                  },
                  "contact": {
                    "addressArray": [],
                    "emailArray": [],
                    "object": "Contact",
                    "phoneNumberArray": []
                  },
                  "firstFetchDate": "2019-10-03T05:12:23+00:00",
                  "firstName": "Hasnat",
                  "isVisible": false,
                  "lastFetchDate": "2022-01-09T12:05:59+00:00",
                  "lastName": "Ahmad",
                  "middleName": null,
                  "name": "Hasnat Ahmad",
                  "namePrefix": null,
                  "nameSuffix": null,
                  "normPartyId": null,
                  "object": "Party",
                  "partyAnalyticsAPI": null,
                  "partyAttorneyAssociations": {
                    "nextPageAPI": null,
                    "object": "PartyAttorneyAssociations",
                    "pageNumber": 1,
                    "partyAttorneyAssociationArray": [
                      {
                        "attorneyId": "ATTYgu60fac2c00ddb",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgubec7bd262a25",
                        "partyId": "PRTYgu2b6f910b6386"
                      },
                      {
                        "attorneyId": "ATTYguca533e083627",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgud99bb03fe973",
                        "partyId": "PRTYgu2b6f910b6386"
                      },
                      {
                        "attorneyId": "ATTYgu4177c8a6f898",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgu373534df147b",
                        "partyId": "PRTYgu2b6f910b6386"
                      },
                      {
                        "attorneyId": "ATTYguc324146a49f8",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMguef011f67cc09",
                        "partyId": "PRTYgu2b6f910b6386"
                      },
                      {
                        "attorneyId": "ATTYgu26b1365a23cd",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgu2b4535ca570d",
                        "partyId": "PRTYgu2b6f910b6386"
                      },
                      {
                        "attorneyId": "ATTYgu04389a0b9429",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgu43ba158ed9d5",
                        "partyId": "PRTYgu2b6f910b6386"
                      },
                      {
                        "attorneyId": "ATTYgubd9f7e17c01f",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgueede98954b54",
                        "partyId": "PRTYgu2b6f910b6386"
                      },
                      {
                        "attorneyId": "ATTYguc168e8c0311c",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMguef74b6e34713",
                        "partyId": "PRTYgu2b6f910b6386"
                      },
                      {
                        "attorneyId": "ATTYgu224b4a9fd59e",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgu1a741015d043",
                        "partyId": "PRTYgu2b6f910b6386"
                      },
                      {
                        "attorneyId": "ATTYgua70f6c1f0903",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgu3c18f38992dc",
                        "partyId": "PRTYgu2b6f910b6386"
                      },
                      {
                        "attorneyId": "ATTYgub3dfc26ac01b",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgu89ad4257f6a9",
                        "partyId": "PRTYgu2b6f910b6386"
                      },
                      {
                        "attorneyId": "ATTYgu25036d670467",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgu560c3d802c84",
                        "partyId": "PRTYgu2b6f910b6386"
                      },
                      {
                        "attorneyId": "ATTYgud355408d9a04",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgu5fe224080628",
                        "partyId": "PRTYgu2b6f910b6386"
                      },
                      {
                        "attorneyId": "ATTYgu27755c14bdfd",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMguc10e3c4ecd97",
                        "partyId": "PRTYgu2b6f910b6386"
                      },
                      {
                        "attorneyId": "ATTYgue932086804b4",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgu873013cb627a",
                        "partyId": "PRTYgu2b6f910b6386"
                      },
                      {
                        "attorneyId": "ATTYgu2af8bf4d94a4",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgu1a26a2a0d78f",
                        "partyId": "PRTYgu2b6f910b6386"
                      },
                      {
                        "attorneyId": "ATTYguca9119dfb600",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMguc98cd8be85e6",
                        "partyId": "PRTYgu2b6f910b6386"
                      },
                      {
                        "attorneyId": "ATTYgu73d66e922438",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgu2765dacd9ae0",
                        "partyId": "PRTYgu2b6f910b6386"
                      },
                      {
                        "attorneyId": "ATTYgub9535a0e65ff",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgub3507cb75843",
                        "partyId": "PRTYgu2b6f910b6386"
                      }
                    ],
                    "totalCount": 19,
                    "totalPages": 1
                  },
                  "partyClassificationType": "INDIVIDUAL",
                  "partyId": "PRTYgu2b6f910b6386",
                  "partyRole": {
                    "createdDate": "2022-05-27T00:50:33+00:00",
                    "description": null,
                    "name": "Plaintiff",
                    "object": "PartyRole",
                    "partyRoleGroup": "Party Offensive",
                    "partyRoleGroupId": "PTYGBnjxbx6tKNfVEP",
                    "partyRoleId": "PTYRiP8nMgPxBsPc5i"
                  },
                  "sourcePartyRole": "PLAINTIFF"
                },
                {
                  "attorneyRepresentationType": {
                    "attorneyRepresentationTypeId": "ATRPDTy7Tqdwk974XC",
                    "createdDate": "2022-03-28T04:59:20+00:00",
                    "name": "Attorney Represented",
                    "object": "AttorneyRepresentationType"
                  },
                  "contact": {
                    "addressArray": [],
                    "emailArray": [],
                    "object": "Contact",
                    "phoneNumberArray": []
                  },
                  "firstFetchDate": "2019-10-03T05:12:23+00:00",
                  "firstName": "J.D.",
                  "isVisible": true,
                  "lastFetchDate": "2022-01-09T12:06:02+00:00",
                  "lastName": null,
                  "middleName": null,
                  "name": "J.D.",
                  "namePrefix": null,
                  "nameSuffix": null,
                  "normPartyId": null,
                  "object": "Party",
                  "partyAnalyticsAPI": null,
                  "partyAttorneyAssociations": {
                    "nextPageAPI": null,
                    "object": "PartyAttorneyAssociations",
                    "pageNumber": 1,
                    "partyAttorneyAssociationArray": [
                      {
                        "attorneyId": "ATTYgu60fac2c00ddb",
                        "isVisible": true,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgu6f6863adb4a1",
                        "partyId": "PRTYgu9e5b93a4066c"
                      },
                      {
                        "attorneyId": "ATTYgua6bcd9387d4b",
                        "isVisible": true,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgu66d1c8032971",
                        "partyId": "PRTYgu9e5b93a4066c"
                      },
                      {
                        "attorneyId": "ATTYguca533e083627",
                        "isVisible": true,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgua55086a14086",
                        "partyId": "PRTYgu9e5b93a4066c"
                      },
                      {
                        "attorneyId": "ATTYgu4177c8a6f898",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgua604ea679ebc",
                        "partyId": "PRTYgu9e5b93a4066c"
                      },
                      {
                        "attorneyId": "ATTYguc324146a49f8",
                        "isVisible": true,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgu9bf3d8673ff8",
                        "partyId": "PRTYgu9e5b93a4066c"
                      },
                      {
                        "attorneyId": "ATTYgu26b1365a23cd",
                        "isVisible": true,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgu0c49c52514db",
                        "partyId": "PRTYgu9e5b93a4066c"
                      },
                      {
                        "attorneyId": "ATTYgu04389a0b9429",
                        "isVisible": true,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMguc093dde19ce6",
                        "partyId": "PRTYgu9e5b93a4066c"
                      },
                      {
                        "attorneyId": "ATTYgubd9f7e17c01f",
                        "isVisible": true,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgu0bbb82214e03",
                        "partyId": "PRTYgu9e5b93a4066c"
                      },
                      {
                        "attorneyId": "ATTYguc168e8c0311c",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgu48f9c5b032bc",
                        "partyId": "PRTYgu9e5b93a4066c"
                      },
                      {
                        "attorneyId": "ATTYgu224b4a9fd59e",
                        "isVisible": true,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgu969070ac8820",
                        "partyId": "PRTYgu9e5b93a4066c"
                      },
                      {
                        "attorneyId": "ATTYgua70f6c1f0903",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgu714b2c9ec8f8",
                        "partyId": "PRTYgu9e5b93a4066c"
                      },
                      {
                        "attorneyId": "ATTYgub3dfc26ac01b",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgu55eff64c7966",
                        "partyId": "PRTYgu9e5b93a4066c"
                      },
                      {
                        "attorneyId": "ATTYgud355408d9a04",
                        "isVisible": true,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgu35dffd41488c",
                        "partyId": "PRTYgu9e5b93a4066c"
                      },
                      {
                        "attorneyId": "ATTYgu27755c14bdfd",
                        "isVisible": true,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgu97ec77376aed",
                        "partyId": "PRTYgu9e5b93a4066c"
                      },
                      {
                        "attorneyId": "ATTYgue932086804b4",
                        "isVisible": true,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgufdae071c917c",
                        "partyId": "PRTYgu9e5b93a4066c"
                      },
                      {
                        "attorneyId": "ATTYgu2af8bf4d94a4",
                        "isVisible": true,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgu2cdf7801c1c3",
                        "partyId": "PRTYgu9e5b93a4066c"
                      },
                      {
                        "attorneyId": "ATTYguca9119dfb600",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgu4c51771c35b8",
                        "partyId": "PRTYgu9e5b93a4066c"
                      },
                      {
                        "attorneyId": "ATTYgu73d66e922438",
                        "isVisible": true,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgu3f1a7674ad63",
                        "partyId": "PRTYgu9e5b93a4066c"
                      },
                      {
                        "attorneyId": "ATTYgub9535a0e65ff",
                        "isVisible": true,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgu3733f4019ec8",
                        "partyId": "PRTYgu9e5b93a4066c"
                      }
                    ],
                    "totalCount": 19,
                    "totalPages": 1
                  },
                  "partyClassificationType": "COMPANY",
                  "partyId": "PRTYgu9e5b93a4066c",
                  "partyRole": {
                    "createdDate": "2022-05-27T00:50:33+00:00",
                    "description": null,
                    "name": "Plaintiff",
                    "object": "PartyRole",
                    "partyRoleGroup": "Party Offensive",
                    "partyRoleGroupId": "PTYGBnjxbx6tKNfVEP",
                    "partyRoleId": "PTYRiP8nMgPxBsPc5i"
                  },
                  "sourcePartyRole": "PLAINTIFF"
                },
                {
                  "attorneyRepresentationType": {
                    "attorneyRepresentationTypeId": "ATRPDTy7Tqdwk974XC",
                    "createdDate": "2022-03-28T04:59:20+00:00",
                    "name": "Attorney Represented",
                    "object": "AttorneyRepresentationType"
                  },
                  "contact": {
                    "addressArray": [],
                    "emailArray": [],
                    "object": "Contact",
                    "phoneNumberArray": []
                  },
                  "firstFetchDate": "2019-10-03T05:12:22+00:00",
                  "firstName": "Tracie",
                  "isVisible": false,
                  "lastFetchDate": "2022-01-09T12:06:04+00:00",
                  "lastName": "Kugler",
                  "middleName": null,
                  "name": "Tracie Kugler",
                  "namePrefix": null,
                  "nameSuffix": null,
                  "normPartyId": null,
                  "object": "Party",
                  "partyAnalyticsAPI": null,
                  "partyAttorneyAssociations": {
                    "nextPageAPI": null,
                    "object": "PartyAttorneyAssociations",
                    "pageNumber": 1,
                    "partyAttorneyAssociationArray": [
                      {
                        "attorneyId": "ATTYgu60fac2c00ddb",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgu1e159b2cd975",
                        "partyId": "PRTYgued713617780d"
                      },
                      {
                        "attorneyId": "ATTYgu4177c8a6f898",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgu89cd4fd2bcaf",
                        "partyId": "PRTYgued713617780d"
                      },
                      {
                        "attorneyId": "ATTYguc324146a49f8",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgu453bfbfd87da",
                        "partyId": "PRTYgued713617780d"
                      },
                      {
                        "attorneyId": "ATTYgu26b1365a23cd",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMguaae69747ce0c",
                        "partyId": "PRTYgued713617780d"
                      },
                      {
                        "attorneyId": "ATTYgu04389a0b9429",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgude1d9a95a9d2",
                        "partyId": "PRTYgued713617780d"
                      },
                      {
                        "attorneyId": "ATTYgubd9f7e17c01f",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMguc125e7371420",
                        "partyId": "PRTYgued713617780d"
                      },
                      {
                        "attorneyId": "ATTYgu224b4a9fd59e",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgue4bc5a734f93",
                        "partyId": "PRTYgued713617780d"
                      },
                      {
                        "attorneyId": "ATTYgua70f6c1f0903",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgub3d32af3fb82",
                        "partyId": "PRTYgued713617780d"
                      },
                      {
                        "attorneyId": "ATTYgub3dfc26ac01b",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgu7ce9f9293f11",
                        "partyId": "PRTYgued713617780d"
                      },
                      {
                        "attorneyId": "ATTYgud355408d9a04",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgue90a13f82c6f",
                        "partyId": "PRTYgued713617780d"
                      },
                      {
                        "attorneyId": "ATTYgu27755c14bdfd",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMguddcc998a1808",
                        "partyId": "PRTYgued713617780d"
                      },
                      {
                        "attorneyId": "ATTYgue932086804b4",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMguc030ddb80565",
                        "partyId": "PRTYgued713617780d"
                      },
                      {
                        "attorneyId": "ATTYgu2af8bf4d94a4",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgu85c5599c7480",
                        "partyId": "PRTYgued713617780d"
                      },
                      {
                        "attorneyId": "ATTYguca9119dfb600",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgucba978d2ee64",
                        "partyId": "PRTYgued713617780d"
                      },
                      {
                        "attorneyId": "ATTYgu73d66e922438",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgu2224b1faa955",
                        "partyId": "PRTYgued713617780d"
                      },
                      {
                        "attorneyId": "ATTYgub9535a0e65ff",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgudc0318f831c6",
                        "partyId": "PRTYgued713617780d"
                      }
                    ],
                    "totalCount": 16,
                    "totalPages": 1
                  },
                  "partyClassificationType": "INDIVIDUAL",
                  "partyId": "PRTYgued713617780d",
                  "partyRole": {
                    "createdDate": "2022-05-27T00:50:33+00:00",
                    "description": null,
                    "name": "Plaintiff",
                    "object": "PartyRole",
                    "partyRoleGroup": "Party Offensive",
                    "partyRoleGroupId": "PTYGBnjxbx6tKNfVEP",
                    "partyRoleId": "PTYRiP8nMgPxBsPc5i"
                  },
                  "sourcePartyRole": "PLAINTIFF"
                },
                {
                  "attorneyRepresentationType": {
                    "attorneyRepresentationTypeId": "ATRPDTy7Tqdwk974XC",
                    "createdDate": "2022-03-28T04:59:20+00:00",
                    "name": "Attorney Represented",
                    "object": "AttorneyRepresentationType"
                  },
                  "contact": {
                    "addressArray": [],
                    "emailArray": [],
                    "object": "Contact",
                    "phoneNumberArray": []
                  },
                  "firstFetchDate": "2019-10-03T05:12:22+00:00",
                  "firstName": "Tommy",
                  "isVisible": false,
                  "lastFetchDate": "2022-01-09T12:05:55+00:00",
                  "lastName": "Benham",
                  "middleName": null,
                  "name": "Tommy Benham",
                  "namePrefix": null,
                  "nameSuffix": null,
                  "normPartyId": null,
                  "object": "Party",
                  "partyAnalyticsAPI": null,
                  "partyAttorneyAssociations": {
                    "nextPageAPI": null,
                    "object": "PartyAttorneyAssociations",
                    "pageNumber": 1,
                    "partyAttorneyAssociationArray": [
                      {
                        "attorneyId": "ATTYgu60fac2c00ddb",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMguc045b724ddb1",
                        "partyId": "PRTYgu8020a5a053c2"
                      },
                      {
                        "attorneyId": "ATTYgua6bcd9387d4b",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMgu519a62f4c718",
                        "partyId": "PRTYgu8020a5a053c2"
                      }
                    ],
                    "totalCount": 18,
                    "totalPages": 1
                  },
                  "partyClassificationType": "INDIVIDUAL",
                  "partyId": "PRTYgu8020a5a053c2",
                  "partyRole": {
                    "createdDate": "2022-05-27T00:50:33+00:00",
                    "description": null,
                    "name": "Plaintiff",
                    "object": "PartyRole",
                    "partyRoleGroup": "Party Offensive",
                    "partyRoleGroupId": "PTYGBnjxbx6tKNfVEP",
                    "partyRoleId": "PTYRiP8nMgPxBsPc5i"
                  },
                  "sourcePartyRole": "PLAINTIFF"
                }
              ],
              "totalCount": 3925,
              "totalPages": 157
            },
            "relatedCases": {
              "nextPageAPI": null,
              "object": "RelatedCases",
              "pageNumber": 1,
              "relatedCaseArray": [
                {
                  "additionalSourceData": {
                    "extractedFields": {
                      "link": "/cgi-bin/DktRpt.pl?357628",
                      "pacer_case_id": "357628"
                    },
                    "rawOrderedDataArray": []
                  },
                  "caseAPI": "https://enterpriseapi.unicourt.com/case/CASEgu07f846b9e317",
                  "caseId": "CASEgu07f846b9e317",
                  "caseName": null,
                  "caseNumber": "3:20-cv-02345-WHO",
                  "caseRelationshipType": {
                    "caseRelationshipTypeId": "CRTP4WH9aQoT7GtEkL",
                    "createdDate": "2022-03-28T04:59:33+00:00",
                    "name": "Related Case",
                    "object": "CaseRelationshipType"
                  },
                  "isVisible": false,
                  "object": "RelatedCase",
                  "sourceCaseRelationshipType": "RELATED CASES"
                },
                {
                  "additionalSourceData": {
                    "extractedFields": {
                      "link": "/cgi-bin/DktRpt.pl?358010",
                      "pacer_case_id": "358010"
                    },
                    "rawOrderedDataArray": []
                  },
                  "caseAPI": "https://enterpriseapi.unicourt.com/case/CASEguc286568221f9",
                  "caseId": "CASEguc286568221f9",
                  "caseName": null,
                  "caseNumber": "3:20-cv-02512-WHO",
                  "caseRelationshipType": {
                    "caseRelationshipTypeId": "CRTP4WH9aQoT7GtEkL",
                    "createdDate": "2022-03-28T04:59:33+00:00",
                    "name": "Related Case",
                    "object": "CaseRelationshipType"
                  },
                  "isVisible": false,
                  "object": "RelatedCase",
                  "sourceCaseRelationshipType": "RELATED CASES"
                }
              ],
              "totalCount": 10,
              "totalPages": 1
            },
            "sourceCaseData": {
              "natureOfSuitArray": [],
              "object": "SourceCaseData",
              "sourceCaseStatus": "PENDING",
              "sourceCaseType": "365",
              "sourceCauseOfActionArray": [],
              "sourceChargeArray": [],
              "sourceCourt": "CANDCE",
              "sourcePageData": []
            },
            "sourceDataStatus": null,
            "url": "https://unicourt.com/case/pc-db5-in-re-juul-labs-inc-marketing-sales-practices-and-products-liability-litigation-224370"
          },
          "caseAPI": "https://enterpriseapi.unicourt.com/case/CASEgpaddcf6c792d4",
          "caseId": "CASEgpaddcf6c792d4",
          "lastFetchDate": null,
          "lastFetchDateWithUpdates": null,
          "lastTrackedDetails": {
            "lastTrackDate": "2022-11-15T11:00:05+00:00",
            "lastTrackException": null,
            "object": "LastTrackedDetails",
            "pacerOptions": null
          },
          "object": "CaseTrack",
          "pacerOptions": {
            "additionalPageArray": [
              {
                "fetchIfOlderThanDays": 30,
                "page": "associatedCases"
              },
              {
                "fetchIfOlderThanDays": 15,
                "page": "caseSummary"
              },
              {
                "fetchIfOlderThanDays": 15,
                "page": "listOfCreditors"
              }
            ],
            "fetchParticipantsIfOlderThanDays": 30,
            "object": "CaseUpdatePacerOptionsResponse",
            "pacerClientCode": "Test UniCourt API",
            "pacerUserId": "URKYwer3tyh5r56gq2",
            "refreshType": "fetchNewDocketEntries"
          },
          "schedule": {
            "days": [],
            "object": "Schedule",
            "type": "daily"
          }
        }
      },
      "CaseTrackFailure": {
        "value": {
          "case": null,
          "caseAPI": "https://enterpriseapi.unicourt.com/case/CASEjaeec3233effa2",
          "caseId": "CASEjaeec3233effa2",
          "lastFetchDate": null,
          "lastFetchDateWithUpdates": null,
          "lastTrackedDetails": {
            "lastTrackDate": "2022-11-15T11:00:05+00:00",
            "lastTrackException": {
              "code": "UN101",
              "details": "The Case is no longer available in the Court",
              "message": "NO_LONGER_AVAILABLE_IN_COURT",
              "object": "Exception"
            },
            "object": "LastTrackedDetails",
            "pacerOptions": null
          },
          "object": "CaseTrack",
          "pacerOptions": null,
          "schedule": {
            "days": [],
            "object": "Schedule",
            "type": "daily"
          }
        }
      },
      "CaseUpdatePacerRequest": {
        "value": {
          "caseId": "CASEgu33e26e59141b",
          "pacerOptions": {
            "additionalPageArray": [
              {
                "fetchIfOlderThanDays": 30,
                "page": "associatedCases"
              },
              {
                "fetchIfOlderThanDays": 15,
                "page": "caseSummary"
              },
              {
                "fetchIfOlderThanDays": 15,
                "page": "listOfCreditors"
              }
            ],
            "fetchParticipantsIfOlderThanDays": 30,
            "pacerClientCode": "Test UniCourt API",
            "pacerUserId": "URKYwer3tyh5r56gq2",
            "refreshType": "fetchNewDocketEntries"
          }
        }
      },
      "CaseUpdateRequest": {
        "value": {
          "caseId": "CASEak99a698ea5413"
        }
      },
      "CaseUpdateResponseWhenStatusIsComplete": {
        "value": {
          "case": {
            "attorneys": {
              "attorneyArray": [
                {
                  "attorneyAnalyticsAPI": null,
                  "attorneyId": "ATTYak359025082a6a",
                  "attorneyLawFirmArray": [],
                  "attorneyType": {
                    "attorneyTypeId": "ATYPRPk3LNobYmtqwF",
                    "createdDate": "2022-03-24T11:33:52+00:00",
                    "name": "Attorney",
                    "object": "AttorneyType"
                  },
                  "barNumber": null,
                  "contact": {
                    "addressArray": [],
                    "emailArray": [],
                    "object": "Contact",
                    "phoneNumberArray": []
                  },
                  "firstFetchDate": "2013-07-21T09:48:26+00:00",
                  "firstName": "CITY OF LOS ANGELES",
                  "isVisible": false,
                  "lastFetchDate": "2016-06-06T09:03:47+00:00",
                  "lastName": null,
                  "middleName": null,
                  "name": "CITY OF LOS ANGELES",
                  "namePrefix": null,
                  "nameSuffix": null,
                  "normAttorneyId": null,
                  "normLawFirmIdArray": [],
                  "object": "Attorney",
                  "partyAttorneyAssociations": {
                    "nextPageAPI": null,
                    "object": "PartyAttorneyAssociations",
                    "pageNumber": 1,
                    "partyAttorneyAssociationArray": [
                      {
                        "attorneyId": "ATTYak359025082a6a",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMak9c6b602c3c0a",
                        "partyId": "PRTYakb997f5e0e0d7"
                      }
                    ],
                    "totalCount": 1,
                    "totalPages": 1
                  },
                  "sourceAttorneyType": "ATTORNEY"
                },
                {
                  "attorneyAnalyticsAPI": null,
                  "attorneyId": "ATTYak779eef5398c8",
                  "attorneyLawFirmArray": [],
                  "attorneyType": {
                    "attorneyTypeId": "ATYPRPk3LNobYmtqwF",
                    "createdDate": "2022-03-24T11:33:52+00:00",
                    "name": "Attorney",
                    "object": "AttorneyType"
                  },
                  "barNumber": null,
                  "contact": {
                    "addressArray": [],
                    "emailArray": [],
                    "object": "Contact",
                    "phoneNumberArray": []
                  },
                  "firstFetchDate": "2013-07-21T09:48:26+00:00",
                  "firstName": "RUTH",
                  "isVisible": false,
                  "lastFetchDate": "2016-06-06T09:03:47+00:00",
                  "lastName": "BIRD",
                  "middleName": null,
                  "name": "BIRD, RUTH",
                  "namePrefix": null,
                  "nameSuffix": null,
                  "normAttorneyId": null,
                  "normLawFirmIdArray": [],
                  "object": "Attorney",
                  "partyAttorneyAssociations": {
                    "nextPageAPI": null,
                    "object": "PartyAttorneyAssociations",
                    "pageNumber": 1,
                    "partyAttorneyAssociationArray": [
                      {
                        "attorneyId": "ATTYak779eef5398c8",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMakffc0128c19f4",
                        "partyId": "PRTYak21a2d603404e"
                      }
                    ],
                    "totalCount": 1,
                    "totalPages": 1
                  },
                  "sourceAttorneyType": "ATTORNEY"
                }
              ],
              "nextPageAPI": null,
              "object": "Attorneys",
              "pageNumber": 1,
              "totalCount": 2,
              "totalPages": 1
            },
            "caseDocuments": {
              "caseDocumentArray": [],
              "nextPageAPI": null,
              "object": "CaseDocuments",
              "pageNumber": 0,
              "totalCount": 0,
              "totalPages": 0
            },
            "caseId": "CASEak99a698ea5413",
            "caseName": "CITY OF LOS ANGELES VS BIRD, RUTH",
            "caseNumber": "13K09504",
            "caseStats": {
              "allCaseDocumentCount": 0,
              "attorneyCount": 2,
              "caseDocumentInLibraryCount": 0,
              "docketEntryCount": 10,
              "freeCaseDocumentCount": 0,
              "hearingCount": 0,
              "judgeCount": 0,
              "object": "CaseStats",
              "paidCaseDocumentCount": 0,
              "partyCount": 2,
              "relatedCaseCount": 0
            },
            "caseStatus": {
              "caseClassArray": [
                "Civil",
                "Criminal"
              ],
              "caseStatusGroup": "Closed",
              "caseStatusGroupId": "CSSG6ERqyFdydo52WK",
              "caseStatusId": "CSSTbacAYUd7MM5xUM",
              "createdDate": "2022-03-24T11:33:36+00:00",
              "name": "Closed",
              "object": "CaseStatus"
            },
            "caseType": {
              "areaOfLaw": null,
              "areaOfLawId": null,
              "caseClass": "Civil",
              "caseClassId": "CSCLNjbKTN7Yfo2wdb",
              "caseTypeGroup": null,
              "caseTypeGroupId": null,
              "caseTypeId": "CTYPNjbKTN7Yfo2wdb",
              "caseTypeTag": null,
              "createdDate": "2022-03-24T11:33:15+00:00",
              "name": null,
              "object": "CaseType",
              "saliCode": "TAXR"
            },
            "causeOfActionArray": [],
            "chargeArray": [],
            "court": {
              "additionalLevels": null,
              "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/appealCourts?pageNumber=1",
              "container": null,
              "containerType": null,
              "courtId": "CORTV4vCEaKrhystBz",
              "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/courtLocations?pageNumber=1",
              "courtServiceStatusAPI": null,
              "courtSystemId": "COSYACHBdMewtaG5DY",
              "courtTypeId": "COTPm8jjc2PAydpFhq",
              "createdDate": "2022-03-24T11:31:08+00:00",
              "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/jurisdictionGeo?pageNumber=1",
              "name": "Los Angeles County Superior Court",
              "nameAka": "Los Angeles County Superior Court of California",
              "object": "Court",
              "system": "California Superior Courts",
              "type": "State"
            },
            "courtLocation": {
              "city": "Los Angeles",
              "courtLocationId": "COLO6b82CkRqS846hx",
              "courtServiceStatusAPI": null,
              "courtsForCourtLocationAPI": "https://enterpriseapi.unicourt.com/masterData/courtLocation/COLO6b82CkRqS846hx/courts?pageNumber=1",
              "createdDate": "2022-07-01T08:22:02+00:00",
              "name": "Stanley Mosk Courthouse",
              "object": "CourtLocation",
              "stateName": "California",
              "streetAddress1": "111 North Hill Street",
              "streetAddress2": null
            },
            "courtServiceStatusAPI": null,
            "courtServiceStatusId": null,
            "docketEntries": {
              "docketEntryArray": [
                {
                  "boundary": "first",
                  "docketBadge": "DOCKET",
                  "docketEntryDate": "2031-07-02T00:00:00-07:00",
                  "docketEntryPrimaryDocuments": {
                    "caseDocumentArray": [],
                    "nextPageAPI": null,
                    "object": "DocketEntryPrimaryDocuments",
                    "pageNumber": 0,
                    "totalCount": 0,
                    "totalPages": 0
                  },
                  "docketEntrySecondaryDocuments": {
                    "caseDocumentArray": [],
                    "nextPageAPI": null,
                    "object": "DocketEntrySecondaryDocuments",
                    "pageNumber": 0,
                    "totalCount": 0,
                    "totalPages": 0
                  },
                  "docketNumber": null,
                  "lastFetchDate": "2022-05-30T14:38:08+00:00",
                  "object": "DocketEntry",
                  "referencedDocketNumberArray": [],
                  "sortOrder": 9,
                  "text": "PARKING APPEAL FILED",
                  "textStructured": {
                    "extractedFields": null,
                    "rawOrderedDataArray": [
                      {
                        "childArray": [],
                        "lbl": null,
                        "ord": 0,
                        "val": "PARKING APPEAL FILED"
                      }
                    ]
                  }
                },
                {
                  "boundary": null,
                  "docketBadge": "DOCKET",
                  "docketEntryDate": "2031-07-02T00:00:00-07:00",
                  "docketEntryPrimaryDocuments": {
                    "caseDocumentArray": [],
                    "nextPageAPI": null,
                    "object": "DocketEntryPrimaryDocuments",
                    "pageNumber": 0,
                    "totalCount": 0,
                    "totalPages": 0
                  },
                  "docketEntrySecondaryDocuments": {
                    "caseDocumentArray": [],
                    "nextPageAPI": null,
                    "object": "DocketEntrySecondaryDocuments",
                    "pageNumber": 0,
                    "totalCount": 0,
                    "totalPages": 0
                  },
                  "docketNumber": null,
                  "lastFetchDate": "2022-05-30T14:38:08+00:00",
                  "object": "DocketEntry",
                  "referencedDocketNumberArray": [],
                  "sortOrder": 8,
                  "text": "APPEAL FROM ADMINISTRATIVE DECISION",
                  "textStructured": {
                    "extractedFields": null,
                    "rawOrderedDataArray": [
                      {
                        "childArray": [],
                        "lbl": null,
                        "ord": 0,
                        "val": "APPEAL FROM ADMINISTRATIVE DECISION"
                      }
                    ]
                  }
                },
                {
                  "boundary": null,
                  "docketBadge": "DOCKET",
                  "docketEntryDate": "2013-08-29T00:00:00-07:00",
                  "docketEntryPrimaryDocuments": {
                    "caseDocumentArray": [],
                    "nextPageAPI": null,
                    "object": "DocketEntryPrimaryDocuments",
                    "pageNumber": 0,
                    "totalCount": 0,
                    "totalPages": 0
                  },
                  "docketEntrySecondaryDocuments": {
                    "caseDocumentArray": [],
                    "nextPageAPI": null,
                    "object": "DocketEntrySecondaryDocuments",
                    "pageNumber": 0,
                    "totalCount": 0,
                    "totalPages": 0
                  },
                  "docketNumber": null,
                  "lastFetchDate": "2022-05-30T14:38:08+00:00",
                  "object": "DocketEntry",
                  "referencedDocketNumberArray": [],
                  "sortOrder": 7,
                  "text": "NOTICE OF DECISION-ADMINISTRATIVE APPEAL NOTICE OF DECISION-ADMINISTRATIVE APPEAL AFFIRMED.",
                  "textStructured": {
                    "extractedFields": null,
                    "rawOrderedDataArray": [
                      {
                        "childArray": [],
                        "lbl": null,
                        "ord": 0,
                        "val": "NOTICE OF DECISION-ADMINISTRATIVE APPEAL NOTICE OF DECISION-ADMINISTRATIVE APPEAL AFFIRMED."
                      }
                    ]
                  }
                },
                {
                  "boundary": null,
                  "docketBadge": "DOCKET",
                  "docketEntryDate": "2013-08-12T00:00:00-07:00",
                  "docketEntryPrimaryDocuments": {
                    "caseDocumentArray": [],
                    "nextPageAPI": null,
                    "object": "DocketEntryPrimaryDocuments",
                    "pageNumber": 0,
                    "totalCount": 0,
                    "totalPages": 0
                  },
                  "docketEntrySecondaryDocuments": {
                    "caseDocumentArray": [],
                    "nextPageAPI": null,
                    "object": "DocketEntrySecondaryDocuments",
                    "pageNumber": 0,
                    "totalCount": 0,
                    "totalPages": 0
                  },
                  "docketNumber": null,
                  "lastFetchDate": "2022-05-30T14:38:08+00:00",
                  "object": "DocketEntry",
                  "referencedDocketNumberArray": [],
                  "sortOrder": 6,
                  "text": "NOTICE OF RESCHEDULED TRIAL TIME TO 8:30 A.M. FILED AND MAILED",
                  "textStructured": {
                    "extractedFields": null,
                    "rawOrderedDataArray": [
                      {
                        "childArray": [],
                        "lbl": null,
                        "ord": 0,
                        "val": "NOTICE OF RESCHEDULED TRIAL TIME TO 8:30 A.M. FILED AND MAILED"
                      }
                    ]
                  }
                },
                {
                  "boundary": null,
                  "docketBadge": "DOCKET",
                  "docketEntryDate": "2013-07-17T00:00:00-07:00",
                  "docketEntryPrimaryDocuments": {
                    "caseDocumentArray": [],
                    "nextPageAPI": null,
                    "object": "DocketEntryPrimaryDocuments",
                    "pageNumber": 0,
                    "totalCount": 0,
                    "totalPages": 0
                  },
                  "docketEntrySecondaryDocuments": {
                    "caseDocumentArray": [],
                    "nextPageAPI": null,
                    "object": "DocketEntrySecondaryDocuments",
                    "pageNumber": 0,
                    "totalCount": 0,
                    "totalPages": 0
                  },
                  "docketNumber": null,
                  "lastFetchDate": "2022-05-30T14:38:08+00:00",
                  "object": "DocketEntry",
                  "referencedDocketNumberArray": [],
                  "sortOrder": 5,
                  "text": "HEARING DATE SET FOR 08/29/13, 01:30 PM, DEPT 77",
                  "textStructured": {
                    "extractedFields": null,
                    "rawOrderedDataArray": [
                      {
                        "childArray": [],
                        "lbl": null,
                        "ord": 0,
                        "val": "HEARING DATE SET FOR 08/29/13, 01:30 PM, DEPT 77"
                      }
                    ]
                  }
                },
                {
                  "boundary": null,
                  "docketBadge": "DOCKET",
                  "docketEntryDate": "2013-07-17T00:00:00-07:00",
                  "docketEntryPrimaryDocuments": {
                    "caseDocumentArray": [],
                    "nextPageAPI": null,
                    "object": "DocketEntryPrimaryDocuments",
                    "pageNumber": 0,
                    "totalCount": 0,
                    "totalPages": 0
                  },
                  "docketEntrySecondaryDocuments": {
                    "caseDocumentArray": [],
                    "nextPageAPI": null,
                    "object": "DocketEntrySecondaryDocuments",
                    "pageNumber": 0,
                    "totalCount": 0,
                    "totalPages": 0
                  },
                  "docketNumber": null,
                  "lastFetchDate": "2022-05-30T14:38:08+00:00",
                  "object": "DocketEntry",
                  "referencedDocketNumberArray": [],
                  "sortOrder": 4,
                  "text": "CLERK'S CERTIFICATE OF SERVICE MAILED-REQUEST FOR ADMINISTRATIVE FILE",
                  "textStructured": {
                    "extractedFields": null,
                    "rawOrderedDataArray": [
                      {
                        "childArray": [],
                        "lbl": null,
                        "ord": 0,
                        "val": "CLERK'S CERTIFICATE OF SERVICE MAILED-REQUEST FOR ADMINISTRATIVE FILE"
                      }
                    ]
                  }
                },
                {
                  "boundary": null,
                  "docketBadge": "DOCKET",
                  "docketEntryDate": "2013-07-02T00:00:00-07:00",
                  "docketEntryPrimaryDocuments": {
                    "caseDocumentArray": [],
                    "nextPageAPI": null,
                    "object": "DocketEntryPrimaryDocuments",
                    "pageNumber": 0,
                    "totalCount": 0,
                    "totalPages": 0
                  },
                  "docketEntrySecondaryDocuments": {
                    "caseDocumentArray": [],
                    "nextPageAPI": null,
                    "object": "DocketEntrySecondaryDocuments",
                    "pageNumber": 0,
                    "totalCount": 0,
                    "totalPages": 0
                  },
                  "docketNumber": null,
                  "lastFetchDate": "2022-05-30T14:38:08+00:00",
                  "object": "DocketEntry",
                  "referencedDocketNumberArray": [],
                  "sortOrder": 3,
                  "text": "PROOF OF SERVICE /NOTICE OF APPEAL-PARKING FILED",
                  "textStructured": {
                    "extractedFields": null,
                    "rawOrderedDataArray": [
                      {
                        "childArray": [],
                        "lbl": null,
                        "ord": 0,
                        "val": "PROOF OF SERVICE /NOTICE OF APPEAL-PARKING FILED"
                      }
                    ]
                  }
                },
                {
                  "boundary": null,
                  "docketBadge": "DOCKET",
                  "docketEntryDate": "2013-07-02T00:00:00-07:00",
                  "docketEntryPrimaryDocuments": {
                    "caseDocumentArray": [],
                    "nextPageAPI": null,
                    "object": "DocketEntryPrimaryDocuments",
                    "pageNumber": 0,
                    "totalCount": 0,
                    "totalPages": 0
                  },
                  "docketEntrySecondaryDocuments": {
                    "caseDocumentArray": [],
                    "nextPageAPI": null,
                    "object": "DocketEntrySecondaryDocuments",
                    "pageNumber": 0,
                    "totalCount": 0,
                    "totalPages": 0
                  },
                  "docketNumber": null,
                  "lastFetchDate": "2022-05-30T14:38:08+00:00",
                  "object": "DocketEntry",
                  "referencedDocketNumberArray": [],
                  "sortOrder": 2,
                  "text": "FEE WAIVER FILED -CASE FILING FEE.",
                  "textStructured": {
                    "extractedFields": null,
                    "rawOrderedDataArray": [
                      {
                        "childArray": [],
                        "lbl": null,
                        "ord": 0,
                        "val": "FEE WAIVER FILED -CASE FILING FEE."
                      }
                    ]
                  }
                },
                {
                  "boundary": null,
                  "docketBadge": "DOCKET",
                  "docketEntryDate": "2013-07-02T00:00:00-07:00",
                  "docketEntryPrimaryDocuments": {
                    "caseDocumentArray": [],
                    "nextPageAPI": null,
                    "object": "DocketEntryPrimaryDocuments",
                    "pageNumber": 0,
                    "totalCount": 0,
                    "totalPages": 0
                  },
                  "docketEntrySecondaryDocuments": {
                    "caseDocumentArray": [],
                    "nextPageAPI": null,
                    "object": "DocketEntrySecondaryDocuments",
                    "pageNumber": 0,
                    "totalCount": 0,
                    "totalPages": 0
                  },
                  "docketNumber": null,
                  "lastFetchDate": "2022-05-30T14:38:08+00:00",
                  "object": "DocketEntry",
                  "referencedDocketNumberArray": [],
                  "sortOrder": 1,
                  "text": "APPELLANT/RESPONDENT ADDRESS",
                  "textStructured": {
                    "extractedFields": null,
                    "rawOrderedDataArray": [
                      {
                        "childArray": [],
                        "lbl": null,
                        "ord": 0,
                        "val": "APPELLANT/RESPONDENT ADDRESS"
                      }
                    ]
                  }
                },
                {
                  "boundary": "last",
                  "docketBadge": "DOCKET",
                  "docketEntryDate": "2013-07-02T00:00:00-07:00",
                  "docketEntryPrimaryDocuments": {
                    "caseDocumentArray": [],
                    "nextPageAPI": null,
                    "object": "DocketEntryPrimaryDocuments",
                    "pageNumber": 0,
                    "totalCount": 0,
                    "totalPages": 0
                  },
                  "docketEntrySecondaryDocuments": {
                    "caseDocumentArray": [],
                    "nextPageAPI": null,
                    "object": "DocketEntrySecondaryDocuments",
                    "pageNumber": 0,
                    "totalCount": 0,
                    "totalPages": 0
                  },
                  "docketNumber": null,
                  "lastFetchDate": "2022-05-30T14:38:08+00:00",
                  "object": "DocketEntry",
                  "referencedDocketNumberArray": [],
                  "sortOrder": 0,
                  "text": "PARKING CITATION NO 4206272685 PARKING CITATION NO 4206272685",
                  "textStructured": {
                    "extractedFields": null,
                    "rawOrderedDataArray": [
                      {
                        "childArray": [],
                        "lbl": null,
                        "ord": 0,
                        "val": "PARKING CITATION NO 4206272685 PARKING CITATION NO 4206272685"
                      }
                    ]
                  }
                }
              ],
              "nextPageAPI": null,
              "object": "DocketEntries",
              "pageNumber": 1,
              "totalCount": 10,
              "totalPages": 1
            },
            "exportAPI": "https://enterpriseapi.unicourt.com/caseExport/CASEak99a698ea5413",
            "filedDate": "2031-07-02T00:00:00+00:00",
            "firstFetchDate": "2013-07-21T09:48:26+00:00",
            "hasDocumentsWithPreview": false,
            "hasOnlyMetaInfo": false,
            "hearings": {
              "hearingArray": [],
              "nextPageAPI": null,
              "object": "Hearings",
              "pageNumber": 0,
              "totalCount": 0,
              "totalPages": 0
            },
            "isClassAction": false,
            "judges": {
              "judgeArray": [],
              "nextPageAPI": null,
              "object": "Judges",
              "pageNumber": 0,
              "totalCount": 0,
              "totalPages": 0
            },
            "lastFetchDate": "2022-05-30T14:38:07+00:00",
            "lastFetchDateWithUpdates": "2020-01-13T17:56:37+00:00",
            "object": "Case",
            "participantsLastFetchDate": "2022-05-30T14:38:07+00:00",
            "parties": {
              "nextPageAPI": null,
              "object": "Parties",
              "pageNumber": 1,
              "partyArray": [
                {
                  "attorneyRepresentationType": {
                    "attorneyRepresentationTypeId": "ATRP2jCCwDRNaP97DX",
                    "createdDate": "2022-03-24T11:33:56+00:00",
                    "name": "Unrepresented",
                    "object": "AttorneyRepresentationType"
                  },
                  "contact": {
                    "addressArray": [],
                    "emailArray": [],
                    "object": "Contact",
                    "phoneNumberArray": []
                  },
                  "firstFetchDate": "2013-07-21T09:48:26+00:00",
                  "firstName": "CITY OF LOS ANGELES",
                  "isVisible": true,
                  "lastFetchDate": "2022-05-30T14:38:06+00:00",
                  "lastName": null,
                  "middleName": null,
                  "name": "CITY OF LOS ANGELES",
                  "namePrefix": null,
                  "nameSuffix": null,
                  "normPartyId": null,
                  "object": "Party",
                  "partyAnalyticsAPI": null,
                  "partyAttorneyAssociations": {
                    "nextPageAPI": null,
                    "object": "PartyAttorneyAssociations",
                    "pageNumber": 1,
                    "partyAttorneyAssociationArray": [
                      {
                        "attorneyId": "ATTYak359025082a6a",
                        "isVisible": false,
                        "object": "PartyAttorneyAssociation",
                        "partyAttorneyAssociationId": "PATMak9c6b602c3c0a",
                        "partyId": "PRTYakb997f5e0e0d7"
                      }
                    ],
                    "totalCount": 1,
                    "totalPages": 1
                  },
                  "partyClassificationType": "OTHER",
                  "partyId": "PRTYakb997f5e0e0d7",
                  "partyRole": {
                    "createdDate": "2022-05-19T05:15:55+00:00",
                    "description": null,
                    "name": "Plaintiff",
                    "object": "PartyRole",
                    "partyRoleGroup": "Party Offensive",
                    "partyRoleGroupId": "PTYGBnjxbx6tKNfVEP",
                    "partyRoleId": "PTYRiP8nMgPxBsPc5i"
                  },
                  "sourcePartyRole": "PLAINTIFF"
                },
                {
                  "attorneyRepresentationType": {
                    "attorneyRepresentationTypeId": "ATRP2jCCwDRNaP97DX",
                    "createdDate": "2022-03-24T11:33:56+00:00",
                    "name": "Unrepresented",
                    "object": "AttorneyRepresentationType"
                  },
                  "contact": {
                    "addressArray": [],
                    "emailArray": [],
                    "object": "Contact",
                    "phoneNumberArray": []
                  },
                  "firstFetchDate": "2013-07-21T09:48:26+00:00",
                  "firstName": "RUTH",
                  "isVisible": true,
                  "lastFetchDate": "2022-05-30T14:38:06+00:00",
                  "lastName": "BIRD",
                  "middleName": null,
                  "name": "BIRD RUTH",
                  "namePrefix": null,
                  "nameSuffix": null,
                  "normPartyId": null,
                  "object": "Party",
                  "partyAnalyticsAPI": null,
                  "partyAttorneyAssociations": {
                    "nextPageAPI": null,
                    "object": "PartyAttorneyAssociations",
                    "pageNumber": 0,
                    "partyAttorneyAssociationArray": [],
                    "totalCount": 0,
                    "totalPages": 0
                  },
                  "partyClassificationType": "INDIVIDUAL",
                  "partyId": "PRTYak21a2d603404e",
                  "partyRole": {
                    "createdDate": "2022-05-19T05:15:55+00:00",
                    "description": null,
                    "name": "Defendant",
                    "object": "PartyRole",
                    "partyRoleGroup": "Party Defensive",
                    "partyRoleGroupId": "PTYG73uQdgJdpA3ebc",
                    "partyRoleId": "PTYRKo8tkTBFvJdCQp"
                  },
                  "sourcePartyRole": "DEFENDANT"
                }
              ],
              "totalCount": 2,
              "totalPages": 1
            },
            "relatedCases": {
              "nextPageAPI": null,
              "object": "RelatedCases",
              "pageNumber": 0,
              "relatedCaseArray": [],
              "totalCount": 0,
              "totalPages": 0
            },
            "sourceCaseData": {
              "natureOfSuitArray": [],
              "object": "SourceCaseData",
              "sourceCaseStatus": "DISPOSED",
              "sourceCaseType": "CIVIL",
              "sourceCauseOfActionArray": [],
              "sourceChargeArray": [],
              "sourceCourt": "STANLEY MOSK COURTHOUSE",
              "sourcePageData": []
            },
            "sourceDataStatus": null,
            "url": null
          },
          "caseAPI": "https://enterpriseapi.unicourt.com/case/CASEak99a698ea5413",
          "caseId": "CASEak99a698ea5413",
          "exception": null,
          "object": "CaseUpdate",
          "pacerOptions": null,
          "requestedDate": "2031-07-02T00:00:00+00:00",
          "status": "COMPLETE"
        }
      },
      "CaseUpdateResponseWhenStatusIsFailure": {
        "value": {
          "case": null,
          "caseAPI": "https://enterpriseapi.unicourt.com/case/CASEhzcde7525188dd",
          "caseId": "CASEhzcde7525188dd",
          "exception": {
            "code": "UN100",
            "details": "This Case is no longer available as it is Sealed from the Court.",
            "message": "SEALED",
            "object": "Exception"
          },
          "object": "CaseUpdate",
          "pacerOptions": null,
          "requestedDate": "2031-07-02T00:00:00+00:00",
          "status": "FAILURE"
        }
      },
      "CaseUpdateResponseWhenStatusIsInProgress": {
        "value": {
          "case": null,
          "caseAPI": "https://enterpriseapi.unicourt.com/case/CASEhq9d8b72d0800c",
          "caseId": "CASEhq9d8b72d0800c",
          "exception": null,
          "object": "CaseUpdate",
          "pacerOptions": null,
          "requestedDate": "2031-07-02T00:00:00+00:00",
          "status": "IN_PROGRESS"
        }
      },
      "CourtCoverage": {
        "value": {
          "caseClassCoverageArray": [
            {
              "caseClass": {
                "caseClassId": "CSCLNjbKTN7Yfo2wdb",
                "createdDate": "2020-05-07T10:17:56+00:00",
                "name": "Civil",
                "object": "CaseClass"
              },
              "caseCount": 1480157,
              "caseDocumentInLibraryCount": 1256,
              "caseDocumentInLibraryInLastThirtyDaysCount": 1480157,
              "casesInLastThirtyDaysCount": 8889,
              "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=((Court:(courtId:\"CORTV4vCEaKrhystBz\")) AND (CaseClass:(caseClassId:\"CSCLNjbKTN7Yfo2wdb\")))",
              "freeCaseDocumentCount": 12545,
              "freeCaseDocumentsInLastThirtyDaysCount": 12545,
              "object": "CaseClassCoverage",
              "paidCaseDocumentCount": 12545,
              "paidCaseDocumentsInLastThirtyDaysCount": 125
            },
            {
              "caseClass": {
                "caseClassId": "CSCLMrcrvoUeZHmsgk",
                "createdDate": "2022-03-28T04:58:47+00:00",
                "name": "Criminal",
                "object": "CaseClass"
              },
              "caseCount": 1480157,
              "caseDocumentInLibraryCount": 1256,
              "caseDocumentInLibraryInLastThirtyDaysCount": 1480157,
              "casesInLastThirtyDaysCount": 8889,
              "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=((Court:(courtId:\"CORTV4vCEaKrhystBz\")) AND (CaseClass:(caseClassId:\"CSCLMrcrvoUeZHmsgk\")))",
              "freeCaseDocumentCount": 12545,
              "freeCaseDocumentsInLastThirtyDaysCount": 12545,
              "object": "CaseClassCoverage",
              "paidCaseDocumentCount": 12545,
              "paidCaseDocumentsInLastThirtyDaysCount": 125
            },
            {
              "caseClass": {
                "caseClassId": "CSCLNjbKTN7Yfo2wdb",
                "createdDate": "2020-05-07T10:17:56+00:00",
                "name": "Family",
                "object": "CaseClass"
              },
              "caseCount": 1480157,
              "caseDocumentInLibraryCount": 1256,
              "caseDocumentInLibraryInLastThirtyDaysCount": 1480157,
              "casesInLastThirtyDaysCount": 8889,
              "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=((Court:(courtId:\"CORTV4vCEaKrhystBz\")) AND (CaseClass:(caseClassId:\"CSCLNjbKTN7Yfo2wdb\")))",
              "freeCaseDocumentCount": 12545,
              "freeCaseDocumentsInLastThirtyDaysCount": 12545,
              "object": "CaseClassCoverage",
              "paidCaseDocumentCount": 12545,
              "paidCaseDocumentsInLastThirtyDaysCount": 125
            },
            {
              "caseClass": {
                "caseClassId": "CSCLNjbKTN7Yfo2wdb",
                "createdDate": "2020-05-07T10:17:56+00:00",
                "name": "Probate",
                "object": "CaseClass"
              },
              "caseCount": 1480157,
              "caseDocumentInLibraryCount": 1256,
              "caseDocumentInLibraryInLastThirtyDaysCount": 1480157,
              "casesInLastThirtyDaysCount": 8889,
              "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=((Court:(courtId:\"CORTV4vCEaKrhystBz\")) AND (CaseClass:(caseClassId:\"CSCLNjbKTN7Yfo2wdb\")))",
              "freeCaseDocumentCount": 12545,
              "freeCaseDocumentsInLastThirtyDaysCount": 12545,
              "object": "CaseClassCoverage",
              "paidCaseDocumentCount": 12545,
              "paidCaseDocumentsInLastThirtyDaysCount": 125
            }
          ],
          "court": {
            "additionalLevels": null,
            "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/appealCourts?pageNumber=1",
            "container": null,
            "containerType": null,
            "courtId": "CORTV4vCEaKrhystBz",
            "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/courtLocations?pageNumber=1",
            "courtServiceStatusAPI": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=court%3A%28courtId%3A%22CORTV4vCEaKrhystBz%29%22",
            "courtSystemId": "COSYACHBdMewtaG5DY",
            "courtTypeId": "COTPm8jjc2PAydpFhq",
            "createdDate": "2020-05-07T10:17:56+00:00",
            "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/jurisdictionGeo?pageNumber=1",
            "name": "Los Angeles County Superior Court",
            "nameAka": "Los Angeles County Superior Court of California",
            "object": "Court",
            "system": "California Superior Courts",
            "type": "State"
          },
          "lastUpdateCountDate": "2022-09-30T12:45:01+00:00",
          "object": "CourtCoverage",
          "totalCaseCount": 1480157,
          "totalCaseDocumentInLibraryCount": 25466,
          "totalCaseDocumentInLibraryInLastThirtyDaysCount": 25466,
          "totalCasesInLastThirtyDaysCount": 8889,
          "totalFreeCaseDocumentCount": 12545,
          "totalFreeCaseDocumentsInLastThirtyDaysCount": 125,
          "totalPaidCaseDocumentCount": 1480157,
          "totalPaidCaseDocumentsInLastThirtyDaysCount": 25466
        }
      },
      "FailureCannotPassLibraryDateWhenInLibraryIsFalse": {
        "value": {
          "code": "UN400",
          "details": "Cannot pass libraryDate when inLibrary is passed as false.",
          "message": "INVALID_INPUT",
          "object": "Exception"
        }
      },
      "FailureClientCodeIsInvalid": {
        "value": {
          "code": "UN400",
          "details": "Requested pacerClientCode is invalid.",
          "message": "INVALID_INPUT",
          "object": "Exception"
        }
      },
      "FailureDocketNumberIdNotPassed": {
        "value": {
          "code": "UN400",
          "details": "docketNumber parameter is mandatory.",
          "message": "INVALID_INPUT",
          "object": "Exception"
        }
      },
      "FailureDocketNumberNotFound": {
        "value": {
          "code": "UN400",
          "details": "Requested docketNumber is invalid. docketNumber parameter needs to be digit which is greater than 0.",
          "message": "INVALID_INPUT",
          "object": "Exception"
        }
      },
      "FailureDocumentNotAvailableInCrowdSourceLibrary": {
        "value": {
          "code": "UN400",
          "details": "Invalid isPreviewDocument value. Only true or false can be passed.",
          "message": "INVALID_INPUT",
          "object": "Exception"
        }
      },
      "FailureInvalidAfterFirstFetchDate": {
        "value": {
          "code": "UN400",
          "details": "Requested afterFirstFetchDate is invalid. Need to request the date in the following format: YYYY-MM-DD",
          "message": "INVALID_INPUT",
          "object": "Exception"
        }
      },
      "FailureInvalidAttorneyId": {
        "value": {
          "code": "UN404",
          "details": "Requested attorneyId is invalid.",
          "message": "RESOURCE_NOT_FOUND",
          "object": "Exception"
        }
      },
      "FailureInvalidCaseDocumentId": {
        "value": {
          "code": "UN404",
          "details": "Requested caseDocumentId is invalid.",
          "message": "RESOURCE_NOT_FOUND",
          "object": "Exception"
        }
      },
      "FailureInvalidCaseId": {
        "value": {
          "code": "UN404",
          "details": "Requested caseId is invalid.",
          "message": "RESOURCE_NOT_FOUND",
          "object": "Exception"
        }
      },
      "FailureInvalidCaseStatus": {
        "value": {
          "code": "UN400",
          "details": "caseStatus can have only 2 values either open or closed. Please send the right caseStatus. By default it takes ALL.",
          "message": "INVALID_INPUT",
          "object": "Exception"
        }
      },
      "FailureInvalidCaseType": {
        "value": {
          "code": "UN400",
          "details": "caseType not found in the given Appendix. Please send appropriate caseType value.",
          "message": "INVALID_INPUT",
          "object": "Exception"
        }
      },
      "FailureInvalidClientCode": {
        "value": {
          "code": "UN400",
          "details": "Invalid Client Code Entered.",
          "message": "INVALID_INPUT",
          "object": "Exception"
        }
      },
      "FailureInvalidCourtId": {
        "value": {
          "code": "UN404",
          "details": "Requested courtId is invalid.",
          "message": "RESOURCE_NOT_FOUND",
          "object": "Exception"
        }
      },
      "FailureInvalidCourtRegionId": {
        "value": {
          "code": "UN400",
          "details": "courtRegionId not found in the given Appendix. Please send appropriate courtRegionId value.",
          "message": "INVALID_INPUT",
          "object": "Exception"
        }
      },
      "FailureInvalidFederalBankruptcyChapterArray": {
        "value": {
          "code": "UN400",
          "details": "federalBankruptcyChapterArray as a value which is not found in the given Appendix. Please send appropriate federalBankruptcyChapter value.",
          "message": "INVALID_INPUT",
          "object": "Exception"
        }
      },
      "FailureInvalidFirstFetchDate": {
        "value": {
          "code": "UN400",
          "details": "Requested firstFetchDate is invalid. Need to request the date in the following format: YYYY-MM-DD",
          "message": "INVALID_INPUT",
          "object": "Exception"
        }
      },
      "FailureInvalidFourDigitSsnFormat": {
        "value": {
          "code": "UN400",
          "details": "Needs to pass only integer.",
          "message": "INVALID_INPUT",
          "object": "Exception"
        }
      },
      "FailureInvalidFourDigitSsnLength": {
        "value": {
          "code": "UN400",
          "details": "Needs to be only 4 digits.",
          "message": "INVALID_INPUT",
          "object": "Exception"
        }
      },
      "FailureInvalidInLibrary": {
        "value": {
          "code": "UN400",
          "details": "Requested inLibrary is invalid. Only true or false can be passed.",
          "message": "INVALID_INPUT",
          "object": "Exception"
        }
      },
      "FailureInvalidIsVisible": {
        "value": {
          "code": "UN400",
          "details": "Invalid isVisible value. Only true or false can be passed.",
          "message": "INVALID_INPUT",
          "object": "Exception"
        }
      },
      "FailureInvalidJudgeId": {
        "value": {
          "code": "UN404",
          "details": "Requested judgeId is invalid.",
          "message": "RESOURCE_NOT_FOUND",
          "object": "Exception"
        }
      },
      "FailureInvalidLibraryDate": {
        "value": {
          "code": "UN400",
          "details": "Requested libraryDate is invalid. Need to request the date in the following format: YYYY-MM-DD",
          "message": "INVALID_INPUT",
          "object": "Exception"
        }
      },
      "FailureInvalidNatureOfSuitAppeal": {
        "value": {
          "code": "UN400",
          "details": "natureOfSuitsArray as a value which is not found in the given Appendix. Please send appropriate natureOfSuit value.",
          "message": "INVALID_INPUT",
          "object": "Exception"
        }
      },
      "FailureInvalidNatureOfSuitCivil": {
        "value": {
          "code": "UN400",
          "details": "natureOfSuitsArray as a value which is not found in the given Appendix. Please send appropriate natureOfSuit value.",
          "message": "INVALID_INPUT",
          "object": "Exception"
        }
      },
      "FailureInvalidPageNumber": {
        "value": {
          "code": "UN400",
          "details": "Requested pageNumber is invalid. pageNumber parameter needs to be digit which is greater than 0.",
          "message": "INVALID_INPUT",
          "object": "Exception"
        }
      },
      "FailureInvalidPartyExactNameMatch": {
        "value": {
          "code": "UN400",
          "details": "Requested partyExactNameMatch is invalid. Only true or false can be passed.",
          "message": "INVALID_INPUT",
          "object": "Exception"
        }
      },
      "FailureInvalidPartyId": {
        "value": {
          "code": "UN404",
          "details": "Requested partyId is invalid.",
          "message": "RESOURCE_NOT_FOUND",
          "object": "Exception"
        }
      },
      "FailureInvalidSortBy": {
        "value": {
          "code": "UN400",
          "details": "Requested parameter sortBy is invalid can have either latest to oldest and oldest to latest.",
          "message": "INVALID_INPUT",
          "object": "Exception"
        }
      },
      "FailureInvalidSortParameterPassed": {
        "value": {
          "code": "UN400",
          "details": "Please refer the APPENDIX C and send appropriate sort field. One or more sort parameter in the query is not valid.",
          "message": "INVALID_INPUT",
          "object": "Exception"
        }
      },
      "FailureInvalidSortParameterQueryFormat": {
        "value": {
          "code": "UN400",
          "details": "After the field need to have a , with sort type (ASC or DESC).",
          "message": "INVALID_INPUT",
          "object": "Exception"
        }
      },
      "FailureInvalidSsnOrEinFormat": {
        "value": {
          "code": "UN400",
          "details": "ssnOrEin should be 9 digit. Please check the format in the API documentation.",
          "message": "INVALID_INPUT",
          "object": "Exception"
        }
      },
      "FailureLastNameNotPassedWhenFirstOrMiddlePassed": {
        "value": {
          "code": "UN400",
          "details": "Last Name needs to be passed when Party is searched using name.",
          "message": "INVALID_INPUT",
          "object": "Exception"
        }
      },
      "FailurePCLCaseDischargedDateValidation": {
        "value": {
          "code": "UN400",
          "details": "caseDischargedEndDate should be greater than caseDischargedStartDate",
          "message": "INVALID_INPUT",
          "object": "Exception"
        }
      },
      "FailurePCLCaseDismissedDateValidation": {
        "value": {
          "code": "UN400",
          "details": "caseDismissedEndDate should be greater than caseDismissedStartDate",
          "message": "INVALID_INPUT",
          "object": "Exception"
        }
      },
      "FailurePCLCaseFiledDateValidation": {
        "value": {
          "code": "UN400",
          "details": "caseFiledEndDate should be greater than caseFiledStartDate",
          "message": "INVALID_INPUT",
          "object": "Exception"
        }
      },
      "FailurePCLCaseTerminatedDateValidation": {
        "value": {
          "code": "UN400",
          "details": "caseTerminatedEndDate should be greater than caseTerminatedStartDate",
          "message": "INVALID_INPUT",
          "object": "Exception"
        }
      },
      "FailurePCLCaseTitleValidation": {
        "value": {
          "code": "UN400",
          "details": "The entered caseTitle should contain at least 1 character.",
          "message": "INVALID_INPUT",
          "object": "Exception"
        }
      },
      "FailurePCLInvalidCaseNumberFormat": {
        "value": {
          "code": "UN400",
          "details": "Invalid Case Number format! Please refer the documentation for a valid Case Number format.",
          "message": "INVALID_INPUT",
          "object": "Exception"
        }
      },
      "FailurePCLInvalidCaseNumberFormatForAppeal": {
        "value": {
          "code": "UN400",
          "details": "Invalid Case Number format for Appeal Case Type. Please refer the documentation for a valid Case Number format.",
          "message": "INVALID_INPUT",
          "object": "Exception"
        }
      },
      "FailurePCLInvalidCaseOffice": {
        "value": {
          "code": "UN400",
          "details": "caseOffice needs to be an integer.",
          "message": "INVALID_INPUT",
          "object": "Exception"
        }
      },
      "FailurePCLInvalidCaseSequenceNumber": {
        "value": {
          "code": "UN400",
          "details": "caseSequenceNumber needs to be an integer.",
          "message": "INVALID_INPUT",
          "object": "Exception"
        }
      },
      "FailurePCLInvalidCaseYear": {
        "value": {
          "code": "UN400",
          "details": "caseYear needs to be an integer.",
          "message": "INVALID_INPUT",
          "object": "Exception"
        }
      },
      "FailurePCLInvalidCourtIdFormat": {
        "value": {
          "code": "UN400",
          "details": "Requested courtId is invalid.",
          "message": "INVALID_INPUT",
          "object": "Exception"
        }
      },
      "FailurePCLInvalidJPMLNumber": {
        "value": {
          "code": "UN400",
          "details": "jpmlNumber needs to be an integer.",
          "message": "INVALID_INPUT",
          "object": "Exception"
        }
      },
      "FailurePCLRequiredFieldCaseSearch": {
        "value": {
          "code": "UN400",
          "details": "Minimum required fields are not entered for Case Search. Please enter either of case number, case title, bankruptcy chapter, date filed (from or to), date close (from or to), date dismissed (from or to), date discharged (from or to).",
          "message": "INVALID_INPUT",
          "object": "Exception"
        }
      },
      "FailurePCLRequiredFieldPartySearch": {
        "value": {
          "code": "UN400",
          "details": "Minimum required fields are not entered for Party Search. Please enter either of last name/entity name, social security number, date filed (from or to), date close (from or to), date dismissed (from or to), date discharged (from or to).",
          "message": "INVALID_INPUT",
          "object": "Exception"
        }
      },
      "FailurePacerAccountDisabled": {
        "value": {
          "code": "UN400",
          "details": "Account has been disabled by PACER.",
          "message": "INVALID_INPUT",
          "object": "Exception"
        }
      },
      "FailurePacerClientCodeNotEntered": {
        "value": {
          "code": "UN400",
          "details": "Cannot login to PACER without your client code. Please provide your client code.",
          "message": "INVALID_INPUT",
          "object": "Exception"
        }
      },
      "FailurePacerCredentialsNotFound": {
        "value": {
          "code": "UN400",
          "details": "Please set your PACER credentials in UniCourt Account settings.",
          "message": "INVALID_INPUT",
          "object": "Exception"
        }
      },
      "FailurePacerUserIdIsInvalid": {
        "value": {
          "code": "UN400",
          "details": "Requested pacerUserId is invalid.",
          "message": "INVALID_INPUT",
          "object": "Exception"
        }
      },
      "FailurePacerUserIdOrPassword": {
        "value": {
          "code": "UN400",
          "details": "Invalid ID or password.",
          "message": "INVALID_INPUT",
          "object": "Exception"
        }
      },
      "FailurePageNumberIdNotPassed": {
        "value": {
          "code": "UN400",
          "details": "pageNumber parameter is mandatory.",
          "message": "INVALID_INPUT",
          "object": "Exception"
        }
      },
      "FailurePasswordIsNotMinLength": {
        "value": {
          "code": "UN400",
          "details": "PACER login failed. Password must be at least 8 characters.",
          "message": "INVALID_INPUT",
          "object": "Exception"
        }
      },
      "FailureServerError": {
        "value": {
          "code": "UN500",
          "details": "Has encountered a situation which needs to be handled.",
          "message": "INTERNAL_SERVER_ERROR",
          "object": "Exception"
        }
      },
      "FailureTooManyLoginAttempts": {
        "value": {
          "code": "UN400",
          "details": "RequestedMultiple PACER login attempts failed. Account blocked for 15 minutes.",
          "message": "INVALID_INPUT",
          "object": "Exception"
        }
      },
      "FailureUsernameIsNotMinLength": {
        "value": {
          "code": "UN400",
          "details": "PACER login failed. Username must be at least 8 characters.",
          "message": "INVALID_INPUT",
          "object": "Exception"
        }
      },
      "INTERNAL_SERVER_ERROR": {
        "value": {
          "code": "UN500",
          "details": "Has encountered a situation which needs to be handled.",
          "message": "INTERNAL_SERVER_ERROR",
          "object": "Exception"
        }
      },
      "Invalid_Date": {
        "value": {
          "code": "UN400",
          "details": "Invalid request. Please check the `date`.",
          "message": "INVALID_INPUT",
          "object": "Exception"
        }
      },
      "PACERImportCase": {
        "value": {
          "courtFee": 0.1,
          "object": "PACERImportCase",
          "pacerImportCaseResultsArray": [
            {
              "hasOnlyMetaInfo": false,
              "object": "PACERImportCaseResults",
              "uniCourtContent": {
                "caseAPI": "https://enterpriseapi.unicourt.com/case/CASEgtaa7e66390d69",
                "caseId": "CASEgtaa7e66390d69",
                "caseName": "Rob J. Simmons v. California State Parole",
                "caseNumber": "2:10-cv-00001",
                "caseStatus": {
                  "caseClassArray": [
                    "Civil",
                    "Criminal"
                  ],
                  "caseStatusGroup": "Closed",
                  "caseStatusGroupId": "CSSG6ERqyFdydo52WK",
                  "caseStatusId": "CSSTbacAYUd7MM5xUM",
                  "createdDate": "2022-03-28T04:58:47+00:00",
                  "name": "Closed",
                  "object": "CaseStatus"
                },
                "caseType": {
                  "areaOfLaw": "Constitutional and Civil Rights",
                  "areaOfLawId": "AOFLWfxVDrHw4JiiQ3",
                  "caseClass": "Civil",
                  "caseClassId": "CSCLNjbKTN7Yfo2wdb",
                  "caseTypeGroup": "Prisoner",
                  "caseTypeGroupId": "CTYGL5raTDZ95PcPTz",
                  "caseTypeId": "CTYPL5raTDZ95PcPTz",
                  "caseTypeTag": null,
                  "createdDate": "2022-03-28T04:58:28+00:00",
                  "name": null,
                  "object": "CaseType",
                  "saliCode": null
                },
                "court": {
                  "additionalLevels": null,
                  "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTjF63b8Z4d2i9UB/appealCourts?pageNumber=1",
                  "container": "Central District of California",
                  "containerType": "District",
                  "courtId": "CORTjF63b8Z4d2i9UB",
                  "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTjF63b8Z4d2i9UB/courtLocations?pageNumber=1",
                  "courtServiceStatusAPI": null,
                  "courtSystemId": "COSY8rpkvJ4kMi4ZYD",
                  "courtTypeId": "COTPLurdwRD5jyKSYb",
                  "createdDate": "2022-07-08T05:49:48+00:00",
                  "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTjF63b8Z4d2i9UB/jurisdictionGeo?pageNumber=1",
                  "name": "California Central District",
                  "nameAka": "U.S. District Court for the Central District of California",
                  "object": "Court",
                  "system": "U.S. District Courts",
                  "type": "Federal"
                },
                "courtLocation": {
                  "city": "Los Angeles",
                  "courtLocationId": "COLO3rdtuaCcDHmgd3",
                  "courtServiceStatusAPI": null,
                  "courtsForCourtLocationAPI": "https://enterpriseapi.unicourt.com/masterData/courtLocation/COLO3rdtuaCcDHmgd3/courts?pageNumber=1",
                  "createdDate": "2022-07-08T05:49:48+00:00",
                  "name": "Spring Street Courthouse",
                  "object": "CourtLocation",
                  "stateName": "California",
                  "streetAddress1": "312 N. Spring Street",
                  "streetAddress2": null
                },
                "filedDate": "2010-01-04T00:00:00+00:00",
                "firstFetchDate": "2018-08-24T11:22:56+00:00",
                "lastFetchDate": "2018-08-24T11:22:56+00:00",
                "lastFetchDateWithUpdates": "2018-08-24T11:22:56+00:00",
                "matchedObjectArray": [],
                "object": "CaseSearchResult",
                "participantsLastFetchDate": "2018-08-24T11:22:56+00:00"
              }
            }
          ]
        }
      },
      "PCLCase": {
        "value": {
          "nextPageAPI": "https://enterpriseapi.unicourt.com/pacerCaseLocator/partySearch/civilCourts?pageNumber=2&jobId=PCLJ3Ygn4ooAvNenww",
          "object": "PCLCase",
          "pacerPageInfo": {
            "first": true,
            "last": false,
            "number": 0,
            "numberOfElements": 54,
            "object": "PACERSearchPageInfo",
            "size": 54,
            "totalElements": 1166,
            "totalPages": 22
          },
          "pacerReceipt": {
            "billablePages": 1,
            "clientCode": "964758",
            "csoId": 4696152,
            "description": "All Court Types Case Search",
            "firmId": "964758",
            "loginId": "johnSmith",
            "object": "PACERSearchReceipt",
            "reportId": "32d75b38-76c4-4f85-a1be-df742c578bec",
            "search": "All Courts; Case Number 1; Case Year 2010; Case Number 10-00001; Page: 1; sort: CaseTitle, ASC",
            "searchFee": ".10",
            "transactionDate": "2022-09-04T21:33:21-05:00"
          },
          "pacerSearchResultsArray": [
            {
              "hasOnlyMetaInfo": false,
              "object": "PACERCaseSearchResults",
              "pacerContent": {
                "object": "PACERCaseSearchContent",
                "pclBankruptcyChapter": null,
                "pclCaseId": 721738,
                "pclCaseLink": "https://ecf.txsd.uscourts.gov/cgi-bin/iqquerymenu.pl?721738",
                "pclCaseNumber": 1,
                "pclCaseNumberFull": "2:2010mc00001",
                "pclCaseOffice": "2",
                "pclCaseTitle": null,
                "pclCaseType": "mc",
                "pclCaseYear": 2010,
                "pclCivilCtoNumber": null,
                "pclCivilDateDisposition": null,
                "pclCivilDateInitiated": null,
                "pclCivilDateTerminated": null,
                "pclCivilStatDisposition": null,
                "pclCivilStatInitiated": null,
                "pclCivilStatTerminated": null,
                "pclCivilTransferee": null,
                "pclCourtId": "txsdc",
                "pclDateDischarged": null,
                "pclDateDismissed": null,
                "pclDateFiled": "2010-01-06",
                "pclDateReopened": null,
                "pclDateTermed": "2010-01-07",
                "pclDisposition": null,
                "pclDispositionMethod": null,
                "pclJointBankruptcyFlag": null,
                "pclJointDischargedDate": null,
                "pclJointDismissedDate": null,
                "pclJointDispositionMethod": null,
                "pclJpmlNumber": null,
                "pclJurisdictionType": "Civil",
                "pclMdlCourtId": null,
                "pclMdlDateOrdered": null,
                "pclMdlDateReceived": null,
                "pclMdlExtension": null,
                "pclMdlJudgeLastName": null,
                "pclMdlLittype": null,
                "pclMdlStatus": null,
                "pclMdlTransferee": null,
                "pclMdlTransfereeDistrict": null,
                "pclNatureOfSuit": null
              },
              "uniCourtContent": {
                "caseAPI": "https://enterpriseapi.unicourt.com/case/CASEgtc705ea6a74fb/",
                "caseId": "CASEgtc705ea6a74fb",
                "caseName": "Janis Graham Jack, presiding",
                "caseNumber": "2:10-mc-00001",
                "caseStatus": {
                  "caseClassArray": [
                    "Civil",
                    "Criminal"
                  ],
                  "caseStatusGroup": "Closed",
                  "caseStatusGroupId": "CSSG6ERqyFdydo52WK",
                  "caseStatusId": "CSSTbacAYUd7MM5xUM",
                  "createdDate": "2022-03-28T04:58:47+00:00",
                  "name": "Closed",
                  "object": "CaseStatus"
                },
                "caseType": {
                  "areaOfLaw": null,
                  "areaOfLawId": null,
                  "caseClass": "Civil",
                  "caseClassId": "CSCLNjbKTN7Yfo2wdb",
                  "caseTypeGroup": null,
                  "caseTypeGroupId": null,
                  "caseTypeId": "CTYPNjbKTN7Yfo2wdb",
                  "caseTypeTag": null,
                  "createdDate": "2022-03-28T04:58:28+00:00",
                  "name": null,
                  "object": "CaseType",
                  "saliCode": null
                },
                "court": {
                  "additionalLevels": null,
                  "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORT9SG2syN6KwmLvw/appealCourts?pageNumber=1",
                  "container": "Southern District of Texas",
                  "containerType": "District",
                  "courtId": "CORT9SG2syN6KwmLvw",
                  "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORT9SG2syN6KwmLvw/courtLocations?pageNumber=1",
                  "courtServiceStatusAPI": null,
                  "courtSystemId": "COSY8rpkvJ4kMi4ZYD",
                  "courtTypeId": "COTPLurdwRD5jyKSYb",
                  "createdDate": "2022-07-08T05:49:54+00:00",
                  "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORT9SG2syN6KwmLvw/jurisdictionGeo?pageNumber=1",
                  "name": "Texas Southern District",
                  "nameAka": "U.S. District Court for the Southern District of Texas",
                  "object": "Court",
                  "system": "U.S. District Courts",
                  "type": "Federal"
                },
                "courtLocation": {
                  "city": "Brownsville",
                  "courtLocationId": "COLO7FiKXH9ZfKsXha",
                  "courtServiceStatusAPI": null,
                  "courtsForCourtLocationAPI": "https://enterpriseapi.unicourt.com/masterData/courtLocation/COLO7FiKXH9ZfKsXha/courts?pageNumber=1",
                  "createdDate": "2022-07-08T05:49:54+00:00",
                  "name": "Reynaldo G. Garza and Filemon B. Vela U.S. Courthouse",
                  "object": "CourtLocation",
                  "stateName": "Texas",
                  "streetAddress1": "600 E. Harrison St.",
                  "streetAddress2": null
                },
                "filedDate": "2010-01-06T00:00:00+00:00",
                "firstFetchDate": "2022-06-20T07:30:22+00:00",
                "lastFetchDate": "2022-06-29T06:32:15+00:00",
                "lastFetchDateWithUpdates": "2022-06-29T06:32:15+00:00",
                "matchedObjectArray": [],
                "object": "CaseSearchResult",
                "participantsLastFetchDate": null
              }
            }
          ],
          "pageNumber": 1,
          "totalCount": 125,
          "totalPages": 3
        }
      },
      "PCLParty": {
        "value": {
          "nextPageAPI": "https://enterpriseapi.unicourt.com/pacerCaseLocator/partySearch/civilCourts?pageNumber=2&jobId=PCLJ3Ygn4ooAvNenww",
          "object": "PCLParty",
          "pacerPageInfo": {
            "first": true,
            "last": false,
            "number": 0,
            "numberOfElements": 54,
            "object": "PACERSearchPageInfo",
            "size": 54,
            "totalElements": 103,
            "totalPages": 2
          },
          "pacerReceipt": {
            "billablePages": 1,
            "clientCode": "964758",
            "csoId": 4696152,
            "description": "Multi-district Litigation Party Search",
            "firmId": "964758",
            "loginId": "johnSmith",
            "object": "PACERSearchReceipt",
            "reportId": "32d75b38-76c4-4f85-a1be-df742c578bec",
            "search": "All Courts; Name Smith, Warden; Page: 1; sort: Party Name, ASC",
            "searchFee": ".10",
            "transactionDate": "2022-07-15T03:50:19-05:00"
          },
          "pacerSearchResultsArray": [
            {
              "hasOnlyMetaInfo": false,
              "object": "PACERPartySearchResults",
              "pacerContent": {
                "object": "PACERPartySearchContent",
                "pclCaseId": 26228,
                "pclCaseNumber": 6414,
                "pclCaseNumberFull": "0:1993hc.st06414",
                "pclCaseOffice": "0",
                "pclCaseTitle": "McCray v. Smith, et al",
                "pclCaseType": "hc.st",
                "pclCaseYear": 1993,
                "pclCourtCase": {
                  "object": "PACERCaseSearchContent",
                  "pclBankruptcyChapter": null,
                  "pclCaseId": 26228,
                  "pclCaseLink": null,
                  "pclCaseNumber": 6414,
                  "pclCaseNumberFull": "0:1993hc.st06414",
                  "pclCaseOffice": "0",
                  "pclCaseTitle": "McCray v. Smith, et al",
                  "pclCaseType": "hc.st",
                  "pclCaseYear": 1993,
                  "pclCivilCtoNumber": null,
                  "pclCivilDateDisposition": null,
                  "pclCivilDateInitiated": null,
                  "pclCivilDateTerminated": null,
                  "pclCivilStatDisposition": null,
                  "pclCivilStatInitiated": null,
                  "pclCivilStatTerminated": null,
                  "pclCivilTransferee": null,
                  "pclCourtId": "04ca",
                  "pclDateDischarged": null,
                  "pclDateDismissed": null,
                  "pclDateFiled": "1993-04-27",
                  "pclDateReopened": null,
                  "pclDateTermed": "1993-06-28",
                  "pclDisposition": null,
                  "pclDispositionMethod": null,
                  "pclJointBankruptcyFlag": null,
                  "pclJointDischargedDate": null,
                  "pclJointDismissedDate": null,
                  "pclJointDispositionMethod": null,
                  "pclJpmlNumber": null,
                  "pclJurisdictionType": "Appellate",
                  "pclMdlCourtId": null,
                  "pclMdlDateOrdered": null,
                  "pclMdlDateReceived": null,
                  "pclMdlExtension": null,
                  "pclMdlJudgeLastName": null,
                  "pclMdlLittype": null,
                  "pclMdlStatus": null,
                  "pclMdlTransferee": null,
                  "pclMdlTransfereeDistrict": null,
                  "pclNatureOfSuit": "3530"
                },
                "pclCourtId": "04ca",
                "pclDateFiled": "1993-04-27",
                "pclFirstName": "Warden",
                "pclGeneration": null,
                "pclJurisdictionType": "Appellate",
                "pclLastName": "Smith",
                "pclMiddleName": null,
                "pclPartyRole": null,
                "pclPartyType": "pty"
              },
              "uniCourtContent": {
                "caseAPI": "https://enterpriseapi.unicourt.com/case/CASEgkc29180c71607/",
                "caseId": "CASEgkc29180c71607",
                "caseName": "McCray v. Smith, et al",
                "caseNumber": "93-6414",
                "caseStatus": {
                  "caseClassArray": [
                    "Civil",
                    "Criminal"
                  ],
                  "caseStatusGroup": "Closed",
                  "caseStatusGroupId": "CSSG6ERqyFdydo52WK",
                  "caseStatusId": "CSSTbacAYUd7MM5xUM",
                  "createdDate": "2022-03-28T04:58:47+00:00",
                  "name": "Closed",
                  "object": "CaseStatus"
                },
                "caseType": {
                  "areaOfLaw": "Constitutional and Civil Rights",
                  "areaOfLawId": "AOFLWfxVDrHw4JiiQ3",
                  "caseClass": "Civil",
                  "caseClassId": "CSCLNjbKTN7Yfo2wdb",
                  "caseTypeGroup": "Prisoner",
                  "caseTypeGroupId": "CTYGL5raTDZ95PcPTz",
                  "caseTypeId": "CTYPL5raTDZ95PcPTz",
                  "caseTypeTag": null,
                  "createdDate": "2022-03-28T04:58:28+00:00",
                  "name": null,
                  "object": "CaseType",
                  "saliCode": null
                },
                "court": {
                  "additionalLevels": null,
                  "appealCourtsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTLMDMgPhsoGonRj/appealCourts?pageNumber=1",
                  "container": "4",
                  "containerType": "Circuit",
                  "courtId": "CORTLMDMgPhsoGonRj",
                  "courtLocationsForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTLMDMgPhsoGonRj/courtLocations?pageNumber=1",
                  "courtServiceStatusAPI": null,
                  "courtSystemId": "COSYKbTM5W3zTCNN6j",
                  "courtTypeId": "COTPLurdwRD5jyKSYb",
                  "createdDate": "2022-07-08T05:49:49+00:00",
                  "jurisdictionGeoForCourtAPI": "https://enterpriseapi.unicourt.com/masterData/court/CORTLMDMgPhsoGonRj/jurisdictionGeo?pageNumber=1",
                  "name": "Court of Appeals for the Fourth Circuit",
                  "nameAka": "U.S. Court of Appeals for the Fourth Circuit",
                  "object": "Court",
                  "system": "U.S. Courts of Appeals",
                  "type": "Federal"
                },
                "courtLocation": {
                  "city": "Richmond",
                  "courtLocationId": "COLOC5ePxrputwDbyC",
                  "courtServiceStatusAPI": null,
                  "courtsForCourtLocationAPI": "https://enterpriseapi.unicourt.com/masterData/courtLocation/COLOC5ePxrputwDbyC/courts?pageNumber=1",
                  "createdDate": "2022-07-08T05:49:56+00:00",
                  "name": "Lewis F. Powell, Jr. U.S. Courthouse Annex",
                  "object": "CourtLocation",
                  "stateName": "Virginia",
                  "streetAddress1": "1100 East Main Street",
                  "streetAddress2": null
                },
                "filedDate": "1993-04-27T00:00:00+00:00",
                "firstFetchDate": "2022-07-15T08:49:16+00:00",
                "lastFetchDate": "2022-07-15T08:49:16+00:00",
                "lastFetchDateWithUpdates": "2022-07-15T08:49:16+00:00",
                "matchedObjectArray": [],
                "object": "CaseSearchResult",
                "participantsLastFetchDate": null
              }
            }
          ],
          "pageNumber": 1,
          "totalCount": 125,
          "totalPages": 3
        }
      },
      "PacerCredentialRequest": {
        "value": {
          "defaultPacerClientCode": "Test UniCourt API",
          "pacerUserId": "URKYwer3tyh5r56gq2",
          "password": "your password"
        }
      },
      "RequestForDailyCaseTrack": {
        "value": {
          "caseTrackParams": {
            "caseId": "CASEak470fff73ba4e"
          },
          "schedule": {
            "type": "daily"
          }
        }
      },
      "RequestForMonthlyCaseTrack": {
        "value": {
          "caseTrackParams": {
            "caseId": "CASEak470fff73ba4e"
          },
          "schedule": {
            "days": [
              7,
              15,
              30
            ],
            "type": "monthly"
          }
        }
      },
      "RequestForPacerCaseTrack": {
        "value": {
          "caseTrackParams": {
            "caseId": "CASEgu33e26e59141b",
            "pacerOptions": {
              "additionalPageArray": [
                {
                  "fetchIfOlderThanDays": 30,
                  "page": "associatedCases"
                },
                {
                  "fetchIfOlderThanDays": 15,
                  "page": "caseSummary"
                },
                {
                  "fetchIfOlderThanDays": 15,
                  "page": "listOfCreditors"
                }
              ],
              "fetchParticipantsIfOlderThanDays": 30,
              "pacerClientCode": "Test UniCourt API",
              "pacerUserId": "URKYwer3tyh5r56gq2",
              "refreshType": "fetchNewDocketEntries"
            }
          },
          "schedule": {
            "days": [
              1,
              3,
              5
            ],
            "type": "weekly"
          }
        }
      },
      "RequestForWeeklyCaseTrack": {
        "value": {
          "caseTrackParams": {
            "caseId": "CASEak470fff73ba4e"
          },
          "schedule": {
            "days": [
              1,
              3,
              5
            ],
            "type": "weekly"
          }
        }
      },
      "SAMPLE_INVALID_INPUT_QUERY": {
        "summary": "sampleInvalidInputQuery",
        "value": {
          "code": "UN400",
          "details": "The field passed is invalid.",
          "message": "INVALID_INPUT",
          "object": "Exception"
        }
      },
      "SAMPLE_SEARCH_INVALID_INPUT_QUERY": {
        "summary": "sampleSearchInvalidInputQuery",
        "value": {
          "code": "UN400",
          "details": "The field passed is invalid.",
          "message": "INVALID_INPUT",
          "object": "Exception"
        }
      },
      "SAMPLE_SEARCH_INVALID_PAGE_NUMBER_PARAM": {
        "summary": "sampleInvalidPageNumberParam",
        "value": {
          "code": "UN400",
          "details": "pageNumber value passed -1 is not valid.",
          "message": "INVALID_INPUT",
          "object": "Exception"
        }
      },
      "SealedCase": {
        "value": {
          "code": "UN100",
          "details": "This Case is no longer available as it is Sealed from the Court.",
          "message": "SEALED",
          "object": "Exception"
        }
      },
      "pacerCredential": {
        "value": {
          "defaultPacerClientCode": "Test UniCourt API",
          "object": "PacerCredential",
          "pacerUserId": "URKYwer3tyh5r56gq2"
        }
      },
      "pacerCredentialList": {
        "value": {
          "nextPageAPI": null,
          "object": "PacerCredentialListResponse",
          "pacerCredentialArray": [
            {
              "defaultPacerClientCode": "Test UniCourt API",
              "object": "PacerCredential",
              "pacerUserId": "URKYwer3tyh5r56gq2"
            }
          ],
          "pageNumber": 1,
          "previousPageAPI": null,
          "totalCount": 1,
          "totalPages": 1
        }
      }
    },
    "parameters": {
      "AnalyticsPageParam": {
        "description": "Page number.\n- minimum: 1\n",
        "examples": {
          "HTTP200-sampleAnalyticsQuery": {
            "summary": "sampleAnalyticsQuery",
            "value": 1
          },
          "HTTP400-sample400AnalyticsQuery": {
            "summary": "sample400AnalyticsQuery",
            "value": 1
          },
          "HTTP404-sample404AnalyticsQuery": {
            "summary": "sample404AnalyticsQuery",
            "value": 1
          }
        },
        "in": "query",
        "name": "pageNumber",
        "required": true,
        "schema": {
          "minimum": 1,
          "type": "integer"
        }
      },
      "GroupByParam": {
        "description": "GroupBy",
        "examples": {
          "HTTP200-sampleAnalyticsQuery": {
            "summary": "sampleAnalyticsQuery",
            "value": "Yearly"
          },
          "HTTP400-sample400AnalyticsQuery": {
            "summary": "sample400AnalyticsQuery",
            "value": "Year"
          },
          "HTTP404-sample404AnalyticsQuery": {
            "summary": "sample404AnalyticsQuery",
            "value": "Yearly"
          }
        },
        "in": "query",
        "name": "groupBy",
        "required": true,
        "schema": {
          "enum": [
            "Yearly",
            "Quarterly",
            "Monthly",
            "Weekly"
          ],
          "type": "string"
        }
      },
      "orderParam": {
        "description": "Query parameter specifying whether search result are sorted in ascending or descending order.",
        "examples": {
          "HTTP200-sampleSearchQuery": {
            "summary": "sampleSearchQuery",
            "value": "desc"
          },
          "HTTP200-sampleSearchQueryId": {
            "summary": "sampleSearchQueryId",
            "value": "asc"
          },
          "HTTP400-sampleInvalidOrderParam": {
            "summary": "sampleSearchInvalidInputQuery",
            "value": "desc"
          },
          "HTTP400-sampleSearchQueryIdInvalidInputQuery": {
            "summary": "sampleSearchQueryIdInvalidInputQuery",
            "value": "desc"
          },
          "HTTP404-sampleSearchQueryIdNotFoundResource": {
            "summary": "sampleSearchQueryIdNotFoundResource",
            "value": "asc"
          }
        },
        "in": "query",
        "name": "order",
        "schema": {
          "default": "desc",
          "enum": [
            "asc",
            "desc"
          ],
          "example": "desc",
          "maxLength": 4,
          "minLength": 3,
          "nullable": false,
          "type": "string"
        }
      },
      "pageParam": {
        "description": "Query parameter specifying the page number of the search results to be retrieved.\n- Minimum: 1\n- Maximum: 1000\n",
        "examples": {
          "HTTP200-sampleSearchQuery": {
            "summary": "sampleSearchQuery",
            "value": 1
          },
          "HTTP200-sampleSearchQueryId": {
            "summary": "sampleSearchQueryId",
            "value": 1
          },
          "HTTP400-sampleInvalidPageNumberParam": {
            "summary": "sampleSearchInvalidInputQuery",
            "value": -1
          },
          "HTTP400-sampleSearchQueryIdInvalidInputQuery": {
            "summary": "sampleSearchQueryIdInvalidInputQuery",
            "value": 1
          },
          "HTTP404-sampleSearchQueryIdNotFoundResource": {
            "summary": "sampleSearchQueryIdNotFoundResource",
            "value": 1
          }
        },
        "in": "query",
        "name": "pageNumber",
        "schema": {
          "example": 1,
          "maxLength": 255,
          "maximum": 1000,
          "minLength": 1,
          "minimum": 1,
          "nullable": false,
          "type": "integer"
        }
      },
      "parameters-orderParam": {
        "description": "Sort order.",
        "examples": {
          "HTTP200-sampleListQuery": {
            "summary": "sampleListQuery",
            "value": "asc"
          },
          "HTTP400-sampleInvalidInputQuery": {
            "summary": "sampleInvalidInputQuery",
            "value": "asc"
          }
        },
        "in": "query",
        "name": "order",
        "schema": {
          "default": "asc",
          "enum": [
            "asc",
            "desc"
          ],
          "example": "asc",
          "maxLength": 4,
          "minLength": 3,
          "nullable": false,
          "type": "string"
        }
      },
      "parameters-pageParam": {
        "description": "Page number.\n- minimum: 1\n- maximum: 100\n",
        "examples": {
          "HTTP200-sampleListQuery": {
            "summary": "sampleListQuery",
            "value": 1
          },
          "HTTP400-sampleInvalidInputQuery": {
            "summary": "sampleInvalidInputQuery",
            "value": -1
          }
        },
        "in": "query",
        "name": "pageNumber",
        "schema": {
          "example": 1,
          "maxLength": 255,
          "maximum": 100,
          "minLength": 1,
          "minimum": 1,
          "nullable": false,
          "type": "integer"
        }
      },
      "parameters-sortParam": {
        "description": "Sort field.",
        "examples": {
          "HTTP200-sampleListQuery": {
            "summary": "sampleListQuery",
            "value": "name"
          },
          "HTTP400-sampleInvalidInputQuery": {
            "summary": "sampleInvalidInputQuery",
            "value": "name"
          }
        },
        "in": "query",
        "name": "sort",
        "schema": {
          "default": "name",
          "enum": [
            "name"
          ],
          "example": "name",
          "maxLength": 4,
          "minLength": 4,
          "nullable": false,
          "type": "string"
        }
      },
      "sortParam": {
        "description": "Query parameter specifying how results are to be sorted. Results can be sorted according to filedDate or relevancy.",
        "examples": {
          "HTTP200-sampleSearchQuery": {
            "summary": "sampleSearchQuery",
            "value": "filedDate"
          },
          "HTTP200-sampleSearchQueryId": {
            "summary": "sampleSearchQueryId",
            "value": "filedDate"
          },
          "HTTP400-sampleInvalidSortParam": {
            "summary": "sampleSearchInvalidInputQuery",
            "value": "filedDate"
          },
          "HTTP400-sampleSearchQueryIdInvalidInputQuery": {
            "summary": "sampleSearchQueryIdInvalidInputQuery",
            "value": "filedDate"
          },
          "HTTP404-sampleSearchQueryIdNotFoundResource": {
            "summary": "sampleSearchQueryIdNotFoundResource",
            "value": "filedDate"
          }
        },
        "in": "query",
        "name": "sort",
        "schema": {
          "default": "filedDate",
          "enum": [
            "filedDate",
            "relevancy"
          ],
          "example": "filedDate",
          "maxLength": 9,
          "minLength": 9,
          "nullable": false,
          "type": "string"
        }
      }
    },
    "schemas": {
      "AccessTokenIdListResponse": {
        "properties": {
          "AccessTokenIdArray": {
            "description": "Array of access tokens Id.",
            "items": {
              "$ref": "#/components/schemas/AccessTokenIdResponse"
            },
            "maxItems": 10,
            "minItems": 0,
            "nullable": false,
            "type": "array"
          },
          "object": {
            "default": "AccessTokenIdListResponse",
            "description": "Name of the object.",
            "example": "AccessTokenIdListResponse",
            "maxLength": 25,
            "minLength": 25,
            "nullable": false,
            "type": "string"
          }
        },
        "required": [
          "object",
          "AccessTokenIdArray"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "AccessTokenIdResponse": {
        "properties": {
          "issueAddress": {
            "description": "Ip address.",
            "example": "192.0.2.1",
            "maxLength": 15,
            "minLength": 7,
            "nullable": false,
            "type": "string"
          },
          "issuedDate": {
            "description": "Date when access token was created.",
            "example": "2022-11-10T10:17:56+00:00",
            "format": "date-time",
            "maxLength": 25,
            "minLength": 25,
            "nullable": false,
            "type": "string"
          },
          "object": {
            "default": "AccessTokenIdResponse",
            "description": "Name of the object.",
            "example": "AccessTokenIdResponse",
            "maxLength": 21,
            "minLength": 21,
            "nullable": false,
            "type": "string"
          },
          "tokenId": {
            "description": "Unique Id for the access token.",
            "example": "TKID384a057WFC3Dp3",
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          }
        },
        "required": [
          "object",
          "tokenId",
          "issuedDate",
          "issueAddress"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "AccessTokenRequest": {
        "properties": {
          "clientId": {
            "description": "Your Client ID obtainable by logging into your UniCourt account.",
            "example": "G3cfixgetVzfaoszGOBp5LPGtih1nMJ9",
            "maxLength": 32,
            "minLength": 32,
            "nullable": false,
            "type": "string"
          },
          "clientSecret": {
            "description": "Your Client Secret ID obtainable by logging into your UniCourt account.",
            "example": "u6PTti57IjPlrwU5MzOwLBD2MCwx-IEbo8sTStTivh1I-EqQ8Jcm27Gfo2GhpHCw",
            "maxLength": 64,
            "minLength": 64,
            "nullable": false,
            "type": "string"
          }
        },
        "required": [
          "clientId",
          "clientSecret"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "AccessTokenResponse": {
        "properties": {
          "accessToken": {
            "description": "Access token for API.",
            "example": "eyJhbG44ciOiJS111UzI1NiIsInR5cCI6IkpXVCIsImtpZCI6I11111ktfX2NsOVhLUDJYMmtBVGRBSVkzQiJ9.eyJodHRwczovL3VuaWNvdXJ0LmNvbS9jbGllbnRfaWQiOiIxbWVOcHRBeXJUUFN2UjBSbVVxdEh2QVNoeDVqVmI2RCIsImh0dHBzOi8vdW5pY291cnQuY29tL2NsaWVudF9uYW1lIjoiYXBvbGxvIiwiaHR0cHM6Ly91bmljb3VydC5jb20vYWNjb3VudF9pZCI6IkFQTzAwMDBBMSIsImlzcyI6Imh0dHBzOi8vdGVzdHVjLnVzLmF1dGgwLmNvbS8iLCJzdWIiOiIxbWVOcHRBeXJUUFN2UjBSbVVxdEh2QVNoeDVqVmI2REBjbGllbnRzIiwiYXVkIjoiaHR0cHM6Ly85dGxsbG1oZnhkLmV4ZWN1dGUtYXBpLnVzLWVhc3QtMS5hbWF6b25hd3MuY29tIiwiaWF0IjoxNjIwNzA4NjAzLCJleHAiOjE2MjA3OTUwMDMsImF6cCI6IjFtZU5wdEF5clRQU3ZSMFJtVXF0SHZBU2h4NWpWYjZEIiwic2NvcGUiOiJleHRyYSIsImd0eSI6ImNsaWVudC1jcmVkZW50aWFscyJ9.TjhNCPvt5bRDW5Kp9OW9-epch9ggoYiK-85f6l7illLtKMeEoD3myllyIXo_ltZv7TDbmSg9tmHZ2V4mPiGvn-Fc9MwGXyUN7LjFF0tpnwysqgTVq_pvnCNe-xLOR_clmkl881QlUfXwB0R0PjhU00_c63ImSISC1Tv4GfawYLQwBy1Q22-rqB4ZsrSszRMo0rTOCu4d7KVc9MgcjA_idz45E9BxR2UbZ6lAbAXp-C1AqR8Dm40BHeUy5oJFFpzoP46sqTcdQHzwuMX5AhK6uGugVqlHpUbwRy9SDCxCldArz5j0Ab_aaZ7zIbuqgE-XueSlug_n2MenElUAeBKe-g",
            "maxLength": 2000,
            "minLength": 700,
            "nullable": false,
            "type": "string"
          },
          "object": {
            "default": "AccessTokenResponse",
            "description": "Name of the object.",
            "example": "AccessTokenResponse",
            "maxLength": 19,
            "minLength": 19,
            "nullable": false,
            "type": "string"
          },
          "tokenId": {
            "description": "Unique Id for the access token.",
            "example": "TKID384a057WFC3Dp3",
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          },
          "tokenType": {
            "description": "Token type.",
            "example": "Bearer",
            "maxLength": 6,
            "minLength": 6,
            "nullable": false,
            "type": "string"
          }
        },
        "required": [
          "object",
          "accessToken",
          "tokenId",
          "tokenType"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "AdditionalLevels": {
        "example": null,
        "nullable": true,
        "properties": {
          "level1": {
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "type": "string"
          },
          "level2": {
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "type": "string"
          },
          "level3": {
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "type": "string"
          },
          "level4": {
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "type": "string"
          },
          "object": {
            "default": "AdditionalLevels",
            "example": "AdditionalLevels",
            "maxLength": 16,
            "minLength": 16,
            "nullable": false,
            "type": "string"
          }
        },
        "required": [
          "object",
          "level1",
          "level2",
          "level3",
          "level4"
        ],
        "title": "AdditionalLevels",
        "type": "object",
        "x-unicourt-container": false
      },
      "Address": {
        "description": "Address object Data Schema",
        "properties": {
          "city": {
            "description": "City",
            "example": "SPOKANE",
            "maxLength": 100,
            "minLength": 1,
            "nullable": true,
            "type": "string"
          },
          "countryCode": {
            "description": "ISO 3166-1 alpha-3 (https://en.wikipedia.org/wiki/ISO_3166-1_alpha-3#Officially_assigned_code_elements). Code of the country if country name is present.",
            "example": "USA",
            "maxLength": 3,
            "minLength": 2,
            "nullable": true,
            "type": "string"
          },
          "countryName": {
            "default": "UNKNOWN",
            "description": "Country Name if present else default value.",
            "example": "CANADA",
            "maxLength": 100,
            "minLength": 1,
            "nullable": false,
            "type": "string"
          },
          "firstFetchDate": {
            "description": "Date at which this record is created in UniCourt.",
            "example": "2017-07-21T17:32:28+00:00",
            "format": "date-time",
            "maxLength": 35,
            "minLength": 25,
            "nullable": false,
            "type": "string"
          },
          "isVisible": {
            "description": "Boolean indicating if the address is visible or not.",
            "example": false,
            "maxLength": 5,
            "minLength": 4,
            "nullable": false,
            "type": "boolean"
          },
          "lastFetchDate": {
            "description": "Date at which this record was updated in UniCourt.",
            "example": "2017-07-21T17:32:28+00:00",
            "format": "date-time",
            "maxLength": 35,
            "minLength": 25,
            "nullable": false,
            "type": "string"
          },
          "latitude": {
            "description": "Coordinates at geographic coordinate system.",
            "example": 26.93852,
            "maxLength": 255,
            "maximum": 90,
            "minLength": 1,
            "minimum": -90,
            "nullable": true,
            "type": "number"
          },
          "longitude": {
            "description": "Coordinates at geographic coordinate system.",
            "example": -82.04752,
            "maxLength": 255,
            "maximum": 180,
            "minLength": 1,
            "minimum": -180,
            "nullable": true,
            "type": "number"
          },
          "object": {
            "default": "Address",
            "example": "Address",
            "maxLength": 7,
            "minLength": 7,
            "nullable": false,
            "type": "string"
          },
          "stateCode": {
            "description": "State Code if the state is a US state else contains null.",
            "example": "NY",
            "maxLength": 2,
            "minLength": 2,
            "nullable": true,
            "type": "string"
          },
          "stateName": {
            "default": "UNKNOWN",
            "description": "State Name if present else default value.",
            "example": "NEW YORK",
            "maxLength": 100,
            "minLength": 1,
            "nullable": false,
            "type": "string"
          },
          "streetAddress1": {
            "description": "1st part of the street address.",
            "example": "4407 N DIVISION ST",
            "maxLength": 250,
            "minLength": 1,
            "nullable": true,
            "type": "string"
          },
          "streetAddress2": {
            "description": "2nd part of the street address.",
            "example": "STE 516",
            "maxLength": 150,
            "minLength": 1,
            "nullable": true,
            "type": "string"
          },
          "zip": {
            "description": "Zip code of the address.",
            "example": "99207",
            "maxLength": 10,
            "minLength": 1,
            "nullable": true,
            "type": "string"
          },
          "zip4": {
            "description": "4 digit extension of the zip code if the address is a US address.",
            "example": "1005",
            "maxLength": 4,
            "minLength": 4,
            "nullable": true,
            "type": "string"
          }
        },
        "required": [
          "object",
          "streetAddress1",
          "streetAddress2",
          "city",
          "stateName",
          "stateCode",
          "countryName",
          "countryCode",
          "zip",
          "zip4",
          "isVisible",
          "firstFetchDate",
          "lastFetchDate",
          "latitude",
          "longitude"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "AreaOfLaw": {
        "properties": {
          "areaOfLawId": {
            "example": "AOFLGAd9Ah5qkTRNw9",
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          },
          "caseClass": {
            "example": "Civil",
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "string"
          },
          "caseClassId": {
            "example": "CSCLNjbKTN7Yfo2wdb",
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          },
          "createdDate": {
            "description": "The date and time when it was first created. This date and time is in UTC. Formatted as YYYY-MM-DD HH:MM:SS.",
            "example": "2020-05-07T10:17:56+00:00",
            "format": "date-time",
            "maxLength": 25,
            "minLength": 25,
            "nullable": false,
            "type": "string"
          },
          "name": {
            "example": "Tax and Revenue",
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "string"
          },
          "object": {
            "default": "AreaOfLaw",
            "example": "AreaOfLaw",
            "maxLength": 9,
            "minLength": 9,
            "nullable": false,
            "type": "string"
          }
        },
        "required": [
          "object",
          "areaOfLawId",
          "caseClassId",
          "caseClass",
          "name",
          "createdDate"
        ],
        "title": "AreaOfLaw",
        "type": "object",
        "x-unicourt-container": false
      },
      "AreaOfLawResponse": {
        "properties": {
          "areaOfLawArray": {
            "items": {
              "$ref": "#/components/schemas/AreaOfLaw"
            },
            "maxLength": 100,
            "type": "array"
          },
          "nextPageAPI": {
            "description": "Link to next page.",
            "example": null,
            "format": "uri",
            "maxLength": 2140,
            "minLength": 1,
            "nullable": true,
            "type": "string"
          },
          "object": {
            "default": "AreaOfLawResponse",
            "example": "AreaOfLawResponse",
            "maxLength": 17,
            "minLength": 17,
            "nullable": false,
            "type": "string"
          },
          "pageNumber": {
            "description": "Page number for which results where obtained.",
            "example": 1,
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "integer"
          },
          "previousPageAPI": {
            "description": "Link to previous page.",
            "example": null,
            "format": "uri",
            "maxLength": 2139,
            "minLength": 1,
            "nullable": true,
            "type": "string"
          },
          "totalCount": {
            "description": "Total number of matches found.",
            "example": 1,
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "integer"
          },
          "totalPages": {
            "description": "Total number of pages to obtain all the objects.",
            "example": 1,
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "integer"
          }
        },
        "required": [
          "object",
          "areaOfLawArray",
          "nextPageAPI",
          "previousPageAPI",
          "pageNumber",
          "totalPages",
          "totalCount"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "AssociatedNormAttorney": {
        "properties": {
          "caseCount": {
            "type": "integer"
          },
          "caseSearchAPI": {
            "description": "Link to related cases for this association.",
            "format": "uri",
            "maxLength": 255,
            "nullable": false,
            "type": "string",
            "x-logical-reference": "CaseSearchAPI"
          },
          "caseTimeline": {
            "$ref": "#/components/schemas/CaseTimeline"
          },
          "firstName": {
            "maxLength": 500,
            "nullable": false,
            "type": "string"
          },
          "lastName": {
            "maxLength": 500,
            "nullable": false,
            "type": "string"
          },
          "middleName": {
            "maxLength": 500,
            "nullable": true,
            "type": "string"
          },
          "name": {
            "maxLength": 500,
            "nullable": false,
            "type": "string"
          },
          "normAttorneyAPI": {
            "description": "Link to details for the Attorney.",
            "format": "uri",
            "maxLength": 255,
            "nullable": false,
            "type": "string",
            "x-logical-reference": "NormAttorneyAPI"
          },
          "normAttorneyId": {
            "maxLength": 18,
            "minLength": 17,
            "nullable": false,
            "type": "string"
          },
          "object": {
            "default": "AssociatedNormAttorney",
            "maxLength": 22,
            "nullable": false,
            "type": "string"
          },
          "stateBarDataArray": {
            "items": {
              "$ref": "#/components/schemas/BarRecordPreview"
            },
            "type": "array"
          }
        },
        "required": [
          "object",
          "normAttorneyAPI",
          "normAttorneyId",
          "caseTimeline",
          "name",
          "firstName",
          "middleName",
          "lastName",
          "caseSearchAPI",
          "caseCount",
          "stateBarDataArray"
        ],
        "title": "AssociatedNormAttorney",
        "type": "object",
        "x-unicourt-container": false
      },
      "AssociatedNormAttorneyResponse": {
        "properties": {
          "associatedNormAttorneyArray": {
            "items": {
              "$ref": "#/components/schemas/AssociatedNormAttorney"
            },
            "type": "array"
          },
          "nextPageAPI": {
            "description": "Next page of results if applicable.",
            "format": "uri",
            "maxLength": 2173,
            "nullable": true,
            "type": "string"
          },
          "previousPageAPI": {
            "description": "Previous page of results if applicable.",
            "format": "uri",
            "maxLength": 2172,
            "nullable": true,
            "type": "string"
          },
          "totalCount": {
            "description": "Total no. of results for this criteria.",
            "type": "integer"
          },
          "totalPages": {
            "description": "Total no. of pages.",
            "type": "integer"
          }
        },
        "required": [
          "associatedNormAttorneyArray",
          "nextPageAPI",
          "previousPageAPI",
          "totalPages",
          "totalCount"
        ],
        "title": "AssociatedNormAttorneyResponse",
        "type": "object",
        "x-unicourt-container": true
      },
      "AssociatedNormJudge": {
        "description": "Associated Judge",
        "properties": {
          "caseCount": {
            "type": "integer"
          },
          "caseSearchAPI": {
            "description": "Link to related cases for this association.",
            "format": "uri",
            "maxLength": 255,
            "nullable": false,
            "type": "string",
            "x-logical-reference": "CaseSearchAPI"
          },
          "caseTimeline": {
            "$ref": "#/components/schemas/CaseTimeline"
          },
          "firstName": {
            "maxLength": 500,
            "nullable": false,
            "type": "string"
          },
          "lastName": {
            "maxLength": 500,
            "nullable": false,
            "type": "string"
          },
          "middleName": {
            "maxLength": 500,
            "nullable": true,
            "type": "string"
          },
          "name": {
            "maxLength": 500,
            "nullable": false,
            "type": "string"
          },
          "normJudgeAPI": {
            "description": "Link to Details from the Judge.",
            "format": "uri",
            "maxLength": 255,
            "nullable": false,
            "type": "string",
            "x-logical-reference": "NormJudgeAPI"
          },
          "normJudgeId": {
            "maxLength": 18,
            "minLength": 17,
            "nullable": false,
            "type": "string"
          },
          "object": {
            "default": "AssociatedNormJudge",
            "maxLength": 19,
            "nullable": false,
            "type": "string"
          },
          "version": {
            "maxLength": 7,
            "nullable": false,
            "type": "string"
          }
        },
        "required": [
          "object",
          "normJudgeId",
          "normJudgeAPI",
          "caseTimeline",
          "name",
          "firstName",
          "middleName",
          "lastName",
          "caseSearchAPI",
          "caseCount",
          "version"
        ],
        "title": "AssociatedNormJudge",
        "type": "object",
        "x-unicourt-container": false
      },
      "AssociatedNormJudgeResponse": {
        "properties": {
          "associatedNormJudgeArray": {
            "items": {
              "$ref": "#/components/schemas/AssociatedNormJudge"
            },
            "type": "array"
          },
          "nextPageAPI": {
            "format": "uri",
            "maxLength": 2173,
            "nullable": true,
            "type": "string"
          },
          "previousPageAPI": {
            "description": "Previous page of results if applicable.",
            "format": "uri",
            "maxLength": 2172,
            "nullable": true,
            "type": "string"
          },
          "totalCount": {
            "description": "Total no. of results for this criteria.",
            "type": "integer"
          },
          "totalPages": {
            "description": "Total no. of pages.",
            "type": "integer"
          }
        },
        "required": [
          "associatedNormJudgeArray",
          "nextPageAPI",
          "previousPageAPI",
          "totalPages",
          "totalCount"
        ],
        "title": "AssociatedNormJudgeResponse",
        "type": "object",
        "x-unicourt-container": true
      },
      "AssociatedNormLawFirm": {
        "properties": {
          "caseCount": {
            "type": "integer"
          },
          "caseSearchAPI": {
            "description": "Link to related cases for this association.",
            "format": "uri",
            "maxLength": 255,
            "nullable": false,
            "type": "string",
            "x-logical-reference": "CaseSearchAPI"
          },
          "caseTimeline": {
            "$ref": "#/components/schemas/CaseTimeline"
          },
          "name": {
            "maxLength": 500,
            "nullable": false,
            "type": "string"
          },
          "normLawFirmAPI": {
            "description": "Link to Details for this Law Firm.",
            "format": "uri",
            "maxLength": 255,
            "nullable": false,
            "type": "string",
            "x-logical-reference": "NormLawFirmAPI"
          },
          "normLawFirmId": {
            "maxLength": 18,
            "minLength": 17,
            "nullable": false,
            "type": "string"
          },
          "object": {
            "default": "AssociatedNormLawFirm",
            "maxLength": 21,
            "nullable": false,
            "type": "string"
          },
          "sosDataArray": {
            "items": {
              "$ref": "#/components/schemas/SOSDataPreview"
            },
            "type": "array"
          }
        },
        "required": [
          "object",
          "normLawFirmId",
          "normLawFirmAPI",
          "caseTimeline",
          "name",
          "caseSearchAPI",
          "caseCount",
          "sosDataArray"
        ],
        "title": "AssociatedNormLawFirm",
        "type": "object",
        "x-unicourt-container": false
      },
      "AssociatedNormLawFirmResponse": {
        "properties": {
          "associatedNormLawFirmArray": {
            "items": {
              "$ref": "#/components/schemas/AssociatedNormLawFirm"
            },
            "type": "array"
          },
          "nextPageAPI": {
            "description": "Link to next page of results.",
            "format": "uri",
            "maxLength": 2173,
            "nullable": true,
            "type": "string"
          },
          "previousPageAPI": {
            "description": "Link to previous page of results.",
            "format": "uri",
            "maxLength": 2172,
            "nullable": true,
            "type": "string"
          },
          "totalCount": {
            "description": "Total no. of results for this criteria.",
            "type": "integer"
          },
          "totalPages": {
            "description": "Total no. of pages.",
            "type": "integer"
          }
        },
        "required": [
          "associatedNormLawFirmArray",
          "nextPageAPI",
          "previousPageAPI",
          "totalPages",
          "totalCount"
        ],
        "title": "AssociatedNormLawFirmResponse",
        "type": "object",
        "x-unicourt-container": true
      },
      "AssociatedNormParty": {
        "properties": {
          "caseCount": {
            "type": "integer"
          },
          "caseSearchAPI": {
            "description": "Link to related cases for this association.",
            "format": "uri",
            "maxLength": 255,
            "nullable": false,
            "type": "string",
            "x-logical-reference": "CaseSearchAPI"
          },
          "caseTimeline": {
            "$ref": "#/components/schemas/CaseTimeline"
          },
          "name": {
            "maxLength": 500,
            "nullable": false,
            "type": "string"
          },
          "normPartyAPI": {
            "description": "Link to Details for the Party.",
            "format": "uri",
            "maxLength": 255,
            "nullable": false,
            "type": "string",
            "x-logical-reference": "NormPartyAPI"
          },
          "normPartyId": {
            "maxLength": 18,
            "minLength": 17,
            "nullable": false,
            "type": "string"
          },
          "object": {
            "default": "AssociatedNormParty",
            "maxLength": 19,
            "nullable": false,
            "type": "string"
          },
          "sosDataArray": {
            "items": {
              "$ref": "#/components/schemas/SOSDataPreview"
            },
            "type": "array"
          }
        },
        "required": [
          "object",
          "normPartyId",
          "normPartyAPI",
          "caseTimeline",
          "name",
          "caseSearchAPI",
          "caseCount",
          "sosDataArray"
        ],
        "title": "AssociatedNormParty",
        "type": "object",
        "x-unicourt-container": false
      },
      "AssociatedNormPartyResponse": {
        "properties": {
          "associatedNormPartyArray": {
            "items": {
              "$ref": "#/components/schemas/AssociatedNormParty"
            },
            "type": "array"
          },
          "nextPageAPI": {
            "description": "Link to next page of results.",
            "format": "uri",
            "maxLength": 2173,
            "nullable": true,
            "type": "string"
          },
          "previousPageAPI": {
            "description": "Link to previous page of results.",
            "format": "uri",
            "maxLength": 2172,
            "nullable": true,
            "type": "string"
          },
          "totalCount": {
            "description": "Total no. of results for this criteria.",
            "type": "integer"
          },
          "totalPages": {
            "description": "Total no. of pages.",
            "type": "integer"
          }
        },
        "required": [
          "associatedNormPartyArray",
          "nextPageAPI",
          "previousPageAPI",
          "totalPages",
          "totalCount"
        ],
        "title": "AssociatedNormPartyResponse",
        "type": "object",
        "x-unicourt-container": true
      },
      "AssociatedSoSPerson": {
        "properties": {
          "contact": {
            "$ref": "#/components/schemas/Contact"
          },
          "entityName": {
            "maxLength": 500,
            "nullable": false,
            "type": "string"
          },
          "entityType": {
            "enum": [
              "Partner",
              "Agent",
              "CEO",
              "Partner/General Member",
              "Partner/GeneralMember"
            ],
            "maxLength": 50,
            "nullable": false,
            "type": "string"
          },
          "object": {
            "default": "AssociatedSoSPerson",
            "maxLength": 19,
            "nullable": false,
            "type": "string"
          }
        },
        "required": [
          "object",
          "contact",
          "entityName",
          "entityType"
        ],
        "title": "AssociatedSoSPerson",
        "type": "object",
        "x-unicourt-container": false
      },
      "Attorney": {
        "nullable": true,
        "properties": {
          "attorneyId": {
            "description": "ID for the attorney in this case. This ID is unique within a case and NOT across cases. If the same attorney were to appear in another case this ID would be different.",
            "example": "ATTYgu01be2e4de654",
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          },
          "attorneyLawFirmArray": {
            "items": {
              "$ref": "#/components/schemas/AttorneyLawFirm"
            },
            "maxItems": 25,
            "type": "array"
          },
          "attorneyType": {
            "$ref": "#/components/schemas/AttorneyType"
          },
          "barNumber": {
            "description": "The bar enrollment number of an attorney.",
            "maxLength": 250,
            "nullable": true,
            "type": "string"
          },
          "contact": {
            "$ref": "#/components/schemas/Contact"
          },
          "firstFetchDate": {
            "description": "When was the attorney first fetched from the court site.",
            "example": "2021-10-10T10:10:24+00:00",
            "format": "date-time",
            "maxLength": 25,
            "minLength": 25,
            "nullable": false,
            "type": "string"
          },
          "firstName": {
            "description": "First name of the attorney. This is normalized by UniCourt.",
            "example": "POMERANTZ",
            "maxLength": 250,
            "nullable": true,
            "type": "string"
          },
          "isVisible": {
            "description": "Signifies if the attorney as this attorney type is currently isVisible or not for the case.",
            "example": true,
            "type": "boolean"
          },
          "lastFetchDate": {
            "description": "When was the attorney last fetched from the court site.",
            "example": "2021-10-10T10:10:24+00:00",
            "format": "date-time",
            "maxLength": 25,
            "minLength": 25,
            "nullable": false,
            "type": "string"
          },
          "lastName": {
            "description": "Last name of the attorney. This is normalized by UniCourt.",
            "example": "SLONE",
            "maxLength": 100,
            "nullable": true,
            "type": "string"
          },
          "middleName": {
            "description": "Middle name of the attorney. This is normalized by UniCourt.",
            "example": "ANDREW",
            "maxLength": 100,
            "nullable": true,
            "type": "string"
          },
          "name": {
            "description": "Name of the attorney as provided by Court.",
            "example": "POMERANTZ ANDREW SLONE",
            "maxLength": 250,
            "minLength": 1,
            "nullable": false,
            "type": "string"
          },
          "namePrefix": {
            "maxLength": 10,
            "nullable": true,
            "type": "string"
          },
          "nameSuffix": {
            "maxLength": 10,
            "nullable": true,
            "type": "string"
          },
          "object": {
            "default": "Attorney",
            "description": "Name of the object",
            "maxLength": 8,
            "minLength": 8,
            "nullable": false,
            "type": "string"
          },
          "partyAttorneyAssociations": {
            "$ref": "#/components/schemas/PartyAttorneyAssociations"
          },
          "partyRoleGroupIdArray": {
            "description": "Party Role Group Id for a Attorney.",
            "items": {
              "maxLength": 18,
              "minLength": 18,
              "nullable": false,
              "type": "string"
            },
            "type": "array"
          },
          "partyRoleIdArray": {
            "description": "Party Role Id for a Attorney.",
            "items": {
              "maxLength": 18,
              "minLength": 18,
              "nullable": false,
              "type": "string"
            },
            "type": "array"
          },
          "possibleNormAttorneyArray": {
            "items": {
              "$ref": "#/components/schemas/PossibleNormAttorney"
            },
            "type": "array"
          },
          "possibleNormLawFirmArray": {
            "description": "Possible Norm Lawfirm array for a Attorney.",
            "items": {
              "$ref": "#/components/schemas/PossibleNormLawFirm"
            },
            "type": "array"
          },
          "sourceAttorneyType": {
            "description": "Attorney Type as provided by Court.",
            "example": "atty",
            "maxLength": 250,
            "nullable": false,
            "type": "string"
          }
        },
        "required": [
          "object",
          "attorneyId",
          "name",
          "namePrefix",
          "firstName",
          "middleName",
          "lastName",
          "nameSuffix",
          "contact",
          "attorneyLawFirmArray",
          "barNumber",
          "attorneyType",
          "sourceAttorneyType",
          "isVisible",
          "firstFetchDate",
          "lastFetchDate",
          "partyAttorneyAssociations",
          "possibleNormAttorneyArray",
          "possibleNormLawFirmArray",
          "partyRoleGroupIdArray",
          "partyRoleIdArray"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "AttorneyAnalyticsAPI": {
        "properties": {
          "associatedNormJudgesAPI": {
            "format": "uri",
            "maxLength": 255,
            "nullable": false,
            "type": "string",
            "x-logical-reference": "AssociatedNormJudgesForNormAttorneyAPI"
          },
          "associatedNormLawFirmsAPI": {
            "format": "uri",
            "maxLength": 255,
            "nullable": false,
            "type": "string",
            "x-logical-reference": "AssociatedNormLawFirmsForNormAttorneyAPI"
          },
          "associatedNormPartiesAPI": {
            "format": "uri",
            "maxLength": 255,
            "nullable": false,
            "type": "string",
            "x-logical-reference": "AssociatedNormPartiesForNormAttorneyAPI"
          },
          "caseCountAnalyticsByOpposingNormAttorneyAPI": {
            "format": "uri",
            "maxLength": 255,
            "nullable": false,
            "type": "string",
            "x-logical-reference": "CaseCountAnalyticsByOpposingNormAttorneyAPI"
          },
          "caseCountAnalyticsByOpposingNormLawFirmAPI": {
            "format": "uri",
            "maxLength": 255,
            "nullable": true,
            "type": "string",
            "x-logical-reference": "CaseCountAnalyticsByOpposingNormLawFirmAPI"
          },
          "caseCountAnalyticsByOpposingNormPartyAPI": {
            "format": "uri",
            "maxLength": 255,
            "nullable": true,
            "type": "string",
            "x-logical-reference": "CaseCountAnalyticsByOpposingNormPartyAPI"
          },
          "normAttorneyAPI": {
            "description": "Link to Details for the Attorney.",
            "format": "uri",
            "maxLength": 255,
            "nullable": false,
            "type": "string",
            "x-logical-reference": "NormAttorneyAPI"
          },
          "object": {
            "default": "AttorneyAnalyticsAPI",
            "maxLength": 20,
            "nullable": false,
            "type": "string"
          }
        },
        "required": [
          "object",
          "normAttorneyAPI",
          "associatedNormJudgesAPI",
          "associatedNormLawFirmsAPI",
          "associatedNormPartiesAPI",
          "caseCountAnalyticsByOpposingNormAttorneyAPI",
          "caseCountAnalyticsByOpposingNormLawFirmAPI",
          "caseCountAnalyticsByOpposingNormPartyAPI"
        ],
        "title": "AttorneyAnalyticsAPI",
        "type": "object",
        "x-unicourt-container": false
      },
      "AttorneyLawFirm": {
        "description": "Name of the attorney's law firm as provided by Court. This can be null as some Courts do not provide this as a separate field.",
        "nullable": true,
        "properties": {
          "attorneyLawFirmId": {
            "description": "ID for the law firm of an attorney in this case. This ID is unique within a case and NOT across cases. If the same attorney were to appear in another case this ID would be different.",
            "example": "ALFIgu26ce47ad7674",
            "maxLength": 18,
            "minLength": 17,
            "nullable": true,
            "type": "string"
          },
          "firstFetchDate": {
            "description": "Is the date when the document was first fetched from the court site.",
            "example": "2021-10-10T10:10:24+00:00",
            "maxLength": 25,
            "minLength": 25,
            "nullable": false,
            "type": "string"
          },
          "isVisible": {
            "description": "Signifies if the attorney as this attorney type is currently isVisible or not for the case.",
            "example": true,
            "type": "boolean"
          },
          "lastFetchDate": {
            "description": "Is the date when the document was last fetched from the court site.",
            "example": "2021-10-10T10:10:24+00:00",
            "maxLength": 25,
            "minLength": 25,
            "nullable": false,
            "type": "string"
          },
          "name": {
            "description": "Name of the law firm as provided by Court.",
            "example": "BUTLER & HOSCH PA",
            "maxLength": 250,
            "minLength": 1,
            "nullable": false,
            "type": "string"
          },
          "object": {
            "default": "AttorneyLawFirm",
            "description": "Name of the object",
            "maxLength": 15,
            "minLength": 15,
            "nullable": false,
            "type": "string"
          }
        },
        "required": [
          "object",
          "attorneyLawFirmId",
          "name",
          "isVisible",
          "firstFetchDate",
          "lastFetchDate"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "AttorneyRepresentationType": {
        "nullable": true,
        "properties": {
          "attorneyRepresentationTypeId": {
            "example": "ATRPYgPMGJufoCsR6Q",
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          },
          "createdDate": {
            "description": "The date and time when it was first created. This date and time is in UTC. Formatted as YYYY-MM-DD HH:MM:SS.",
            "example": "2020-05-07T10:17:56+00:00",
            "format": "date-time",
            "maxLength": 25,
            "minLength": 25,
            "nullable": false,
            "type": "string"
          },
          "name": {
            "example": "Self Represented",
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "string"
          },
          "object": {
            "default": "AttorneyRepresentationType",
            "example": "AttorneyRepresentationType",
            "maxLength": 26,
            "minLength": 26,
            "nullable": false,
            "type": "string"
          }
        },
        "required": [
          "object",
          "attorneyRepresentationTypeId",
          "name",
          "createdDate"
        ],
        "title": "AttorneyRepresentationType",
        "type": "object",
        "x-unicourt-container": false
      },
      "AttorneyRepresentationTypeResponse": {
        "properties": {
          "attorneyRepresentationTypeArray": {
            "items": {
              "$ref": "#/components/schemas/AttorneyRepresentationType"
            },
            "maxLength": 100,
            "type": "array"
          },
          "nextPageAPI": {
            "description": "Link to next page.",
            "example": null,
            "format": "uri",
            "maxLength": 2159,
            "minLength": 1,
            "nullable": true,
            "type": "string"
          },
          "object": {
            "default": "AttorneyRepresentationTypeResponse",
            "example": "AttorneyRepresentationTypeResponse",
            "maxLength": 34,
            "minLength": 34,
            "nullable": false,
            "type": "string"
          },
          "pageNumber": {
            "description": "Page number for which results where obtained.",
            "example": 1,
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "integer"
          },
          "previousPageAPI": {
            "description": "Link to previous page.",
            "example": null,
            "format": "uri",
            "maxLength": 2158,
            "minLength": 1,
            "nullable": true,
            "type": "string"
          },
          "totalCount": {
            "description": "Total number of matches found.",
            "example": 1,
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "integer"
          },
          "totalPages": {
            "description": "Total number of pages to obtain all the objects.",
            "example": 1,
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "integer"
          }
        },
        "required": [
          "object",
          "attorneyRepresentationTypeArray",
          "nextPageAPI",
          "previousPageAPI",
          "pageNumber",
          "totalPages",
          "totalCount"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "AttorneyType": {
        "nullable": true,
        "properties": {
          "attorneyTypeId": {
            "example": "ATYPWXtARwvzu5HLcf",
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          },
          "createdDate": {
            "description": "The date and time when it was first created. This date and time is in UTC. Formatted as YYYY-MM-DD HH:MM:SS.",
            "example": "2020-05-07T10:17:56+00:00",
            "format": "date-time",
            "maxLength": 25,
            "minLength": 25,
            "nullable": false,
            "type": "string"
          },
          "name": {
            "example": "Lead Attorney",
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "string"
          },
          "object": {
            "default": "AttorneyType",
            "example": "AttorneyType",
            "maxLength": 12,
            "minLength": 12,
            "nullable": false,
            "type": "string"
          }
        },
        "required": [
          "object",
          "attorneyTypeId",
          "name",
          "createdDate"
        ],
        "title": "AttorneyType",
        "type": "object",
        "x-unicourt-container": false
      },
      "AttorneyTypeResponse": {
        "properties": {
          "attorneyTypeArray": {
            "items": {
              "$ref": "#/components/schemas/AttorneyType"
            },
            "maxLength": 100,
            "type": "array"
          },
          "nextPageAPI": {
            "description": "Link to next page.",
            "example": null,
            "format": "uri",
            "maxLength": 2145,
            "minLength": 1,
            "nullable": true,
            "type": "string"
          },
          "object": {
            "default": "AttorneyTypeResponse",
            "example": "AttorneyTypeResponse",
            "maxLength": 20,
            "minLength": 20,
            "nullable": false,
            "type": "string"
          },
          "pageNumber": {
            "description": "Page number for which results where obtained.",
            "example": 1,
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "integer"
          },
          "previousPageAPI": {
            "description": "Link to previous page.",
            "example": null,
            "format": "uri",
            "maxLength": 2144,
            "minLength": 1,
            "nullable": true,
            "type": "string"
          },
          "totalCount": {
            "description": "Total number of matches found.",
            "example": 1,
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "integer"
          },
          "totalPages": {
            "description": "Total number of pages to obtain all the objects.",
            "example": 1,
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "integer"
          }
        },
        "required": [
          "object",
          "attorneyTypeArray",
          "nextPageAPI",
          "previousPageAPI",
          "pageNumber",
          "totalPages",
          "totalCount"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "Attorneys": {
        "nullable": true,
        "properties": {
          "attorneyArray": {
            "items": {
              "$ref": "#/components/schemas/Attorney"
            },
            "maxItems": 25,
            "type": "array"
          },
          "nextPageAPI": {
            "description": "Link to next page of a particular entity in a Case.",
            "example": "https://enterpriseapi.unicourt.com/case/CASEgued96d541f794/attorneys/?pageNumber=1",
            "maxLength": 255,
            "nullable": true,
            "type": "string"
          },
          "object": {
            "default": "Attorneys",
            "description": "Name of the object",
            "maxLength": 9,
            "minLength": 9,
            "nullable": false,
            "type": "string"
          },
          "pageNumber": {
            "description": "Page number for which results where obtained.",
            "example": 1,
            "type": "integer"
          },
          "totalCount": {
            "description": "Total number of parties of the Case entity in a Case.",
            "example": 150,
            "type": "integer"
          },
          "totalPages": {
            "description": "Total number of pages to obtain all the objects of a party in the Case.",
            "example": 120,
            "type": "integer"
          }
        },
        "required": [
          "object",
          "pageNumber",
          "attorneyArray",
          "totalPages",
          "nextPageAPI",
          "totalCount"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "BarRecord": {
        "description": "This contains the Attorney details that is obtained from the State Bar where the attorney is registered.",
        "properties": {
          "admittedDate": {
            "description": "The admittedDate is the date when an attorney was admitted to the bar of a given state.",
            "format": "date-time",
            "maxLength": 25,
            "nullable": true,
            "type": "string"
          },
          "barNumber": {
            "maxLength": 250,
            "nullable": true,
            "type": "string"
          },
          "barSourceData": {
            "$ref": "#/components/schemas/BarSourceData"
          },
          "barSourceType": {
            "maxLength": 70,
            "nullable": false,
            "type": "string"
          },
          "contact": {
            "$ref": "#/components/schemas/Contact"
          },
          "firstFetchDate": {
            "format": "date-time",
            "maxLength": 25,
            "nullable": false,
            "type": "string"
          },
          "inactivationDate": {
            "format": "date-time",
            "maxLength": 25,
            "nullable": true,
            "type": "string"
          },
          "lastFetchDate": {
            "format": "date-time",
            "maxLength": 25,
            "nullable": false,
            "type": "string"
          },
          "lastFetchDateWithUpdates": {
            "description": "Last Fetch Date of the Attorney Update.",
            "format": "date-time",
            "maxLength": 25,
            "nullable": false,
            "type": "string"
          },
          "object": {
            "default": "BarRecord",
            "maxLength": 9,
            "nullable": false,
            "type": "string"
          },
          "stateCode": {
            "maxLength": 2,
            "nullable": false,
            "type": "string"
          },
          "status": {
            "enum": [
              "Active",
              "Inactive",
              "Not Classified",
              "Unknown"
            ],
            "maxLength": 15,
            "nullable": false,
            "type": "string"
          }
        },
        "required": [
          "object",
          "barNumber",
          "barSourceType",
          "admittedDate",
          "stateCode",
          "status",
          "inactivationDate",
          "barSourceData",
          "contact",
          "firstFetchDate",
          "lastFetchDate",
          "lastFetchDateWithUpdates"
        ],
        "title": "BarRecord",
        "type": "object",
        "x-unicourt-container": false
      },
      "BarRecordPreview": {
        "properties": {
          "barNumber": {
            "maxLength": 250,
            "nullable": true,
            "type": "string"
          },
          "barSourceType": {
            "maxLength": 70,
            "nullable": true,
            "type": "string"
          },
          "object": {
            "default": "BarRecordPreview",
            "maxLength": 16,
            "nullable": false,
            "type": "string"
          },
          "stateCode": {
            "maxLength": 2,
            "nullable": false,
            "type": "string"
          }
        },
        "required": [
          "object",
          "barSourceType",
          "barNumber",
          "stateCode"
        ],
        "title": "BarRecordPreview",
        "type": "object",
        "x-unicourt-container": false
      },
      "BarSourceData": {
        "properties": {
          "administrativeActionsArray": {
            "items": {
              "properties": {
                "caseNumber": {
                  "maxLength": 250,
                  "nullable": true,
                  "type": "string"
                },
                "description": {
                  "maxLength": 250,
                  "nullable": true,
                  "type": "string"
                },
                "effectiveDate": {
                  "format": "date-time",
                  "maxLength": 25,
                  "nullable": true,
                  "type": "string"
                },
                "resultingStatus": {
                  "maxLength": 250,
                  "nullable": true,
                  "type": "string"
                },
                "type": {
                  "maxLength": 250,
                  "nullable": true,
                  "type": "string"
                }
              },
              "required": [
                "caseNumber",
                "description",
                "effectiveDate",
                "resultingStatus",
                "type"
              ],
              "type": "object"
            },
            "type": "array"
          },
          "admissionType": {
            "maxLength": 250,
            "nullable": true,
            "type": "string"
          },
          "advancedDegreeArray": {
            "items": {
              "properties": {
                "area": {
                  "maxLength": 250,
                  "nullable": true,
                  "type": "string"
                },
                "degree": {
                  "maxLength": 250,
                  "nullable": true,
                  "type": "string"
                }
              },
              "required": [
                "area",
                "degree"
              ],
              "type": "object"
            },
            "type": "array"
          },
          "appellateCourtDistrict": {
            "maxLength": 250,
            "nullable": true,
            "type": "string"
          },
          "appellateDivisionDepartment": {
            "maxLength": 250,
            "nullable": true,
            "type": "string"
          },
          "attorneyGroup": {
            "maxLength": 250,
            "nullable": true,
            "type": "string"
          },
          "authorized": {
            "maxLength": 250,
            "nullable": true,
            "type": "string"
          },
          "barLawFirm": {
            "maxLength": 250,
            "nullable": true,
            "type": "string"
          },
          "barServiceClass": {
            "maxLength": 250,
            "nullable": true,
            "type": "string"
          },
          "barStatusArray": {
            "items": {
              "properties": {
                "date": {
                  "maxLength": 25,
                  "nullable": true,
                  "type": "string"
                },
                "status": {
                  "maxLength": 250,
                  "nullable": true,
                  "type": "string"
                }
              },
              "required": [
                "status",
                "date"
              ],
              "type": "object"
            },
            "type": "array"
          },
          "bio": {
            "maxLength": 5000,
            "nullable": true,
            "type": "string"
          },
          "boardCertificationsArray": {
            "items": {
              "properties": {
                "area": {
                  "maxLength": 250,
                  "nullable": true,
                  "type": "string"
                },
                "year": {
                  "maxLength": 250,
                  "nullable": true,
                  "type": "string"
                }
              },
              "required": [
                "area",
                "year"
              ],
              "type": "object"
            },
            "type": "array"
          },
          "boardDistrict": {
            "maxLength": 250,
            "nullable": true,
            "type": "string"
          },
          "circuit": {
            "maxLength": 250,
            "nullable": true,
            "type": "string"
          },
          "clientsRepresentedArray": {
            "items": {
              "maxLength": 250,
              "nullable": false,
              "type": "string"
            },
            "type": "array"
          },
          "comments": {
            "maxLength": 250,
            "nullable": true,
            "type": "string"
          },
          "committeesArray": {
            "items": {
              "properties": {
                "committee": {
                  "maxLength": 250,
                  "nullable": true,
                  "type": "string"
                },
                "office": {
                  "maxLength": 250,
                  "nullable": true,
                  "type": "string"
                },
                "term": {
                  "maxLength": 250,
                  "nullable": true,
                  "type": "string"
                }
              },
              "required": [
                "committee",
                "office",
                "term"
              ],
              "type": "object"
            },
            "type": "array"
          },
          "courtHistoryArray": {
            "items": {
              "properties": {
                "action": {
                  "maxLength": 250,
                  "nullable": true,
                  "type": "string"
                },
                "actionComments": {
                  "maxLength": 2000,
                  "nullable": true,
                  "type": "string"
                },
                "reinstatedDate": {
                  "format": "date-time",
                  "maxLength": 25,
                  "nullable": true,
                  "type": "string"
                },
                "startDate": {
                  "format": "date-time",
                  "maxLength": 25,
                  "nullable": true,
                  "type": "string"
                }
              },
              "required": [
                "action",
                "actionComments",
                "reinstatedDate",
                "startDate"
              ],
              "type": "object"
            },
            "type": "array"
          },
          "courtOfAdmissions": {
            "nullable": true,
            "properties": {
              "courtStateArray": {
                "items": {
                  "maxLength": 250,
                  "nullable": false,
                  "type": "string"
                },
                "type": "array"
              },
              "federalArray": {
                "items": {
                  "maxLength": 250,
                  "nullable": false,
                  "type": "string"
                },
                "type": "array"
              },
              "otherCourtsArray": {
                "items": {
                  "maxLength": 500,
                  "nullable": false,
                  "type": "string"
                },
                "type": "array"
              }
            },
            "required": [
              "courtStateArray",
              "federalArray",
              "otherCourtsArray"
            ],
            "type": "object"
          },
          "courtServiceEmail": {
            "maxLength": 250,
            "nullable": true,
            "type": "string"
          },
          "disciplinaryHistoryArray": {
            "items": {
              "properties": {
                "action": {
                  "maxLength": 250,
                  "nullable": true,
                  "type": "string"
                },
                "caseNumber": {
                  "maxLength": 250,
                  "nullable": true,
                  "type": "string"
                },
                "complaint": {
                  "maxLength": 1000,
                  "nullable": true,
                  "type": "string"
                },
                "contactId": {
                  "maxLength": 250,
                  "minLength": 1,
                  "nullable": true,
                  "type": "string"
                },
                "dateOfAction": {
                  "format": "date-time",
                  "maxLength": 25,
                  "nullable": true,
                  "type": "string"
                },
                "definition": {
                  "maxLength": 1000,
                  "nullable": true,
                  "type": "string"
                },
                "disciplinaryDecision": {
                  "maxLength": 250,
                  "nullable": true,
                  "type": "string"
                },
                "entryDate": {
                  "format": "date-time",
                  "maxLength": 25,
                  "nullable": true,
                  "type": "string"
                },
                "information": {
                  "maxLength": 250,
                  "nullable": true,
                  "type": "string"
                },
                "link": {
                  "maxLength": 250,
                  "nullable": true,
                  "type": "string"
                },
                "note": {
                  "maxLength": 1000,
                  "nullable": true,
                  "type": "string"
                },
                "probationDate": {
                  "format": "date-time",
                  "maxLength": 25,
                  "nullable": true,
                  "type": "string"
                },
                "reinstatedDate": {
                  "format": "date-time",
                  "maxLength": 25,
                  "nullable": true,
                  "type": "string"
                },
                "rule": {
                  "maxLength": 250,
                  "nullable": true,
                  "type": "string"
                },
                "ruleNumber": {
                  "maxLength": 250,
                  "nullable": true,
                  "type": "string"
                },
                "sectionDate": {
                  "format": "date-time",
                  "maxLength": 25,
                  "nullable": true,
                  "type": "string"
                },
                "status": {
                  "maxLength": 250,
                  "nullable": true,
                  "type": "string"
                },
                "stayDate": {
                  "format": "date-time",
                  "maxLength": 25,
                  "nullable": true,
                  "type": "string"
                },
                "supremeCourt": {
                  "maxLength": 250,
                  "nullable": true,
                  "type": "string"
                },
                "term": {
                  "maxLength": 250,
                  "nullable": true,
                  "type": "string"
                },
                "typeOfAction": {
                  "maxLength": 250,
                  "nullable": true,
                  "type": "string"
                }
              },
              "required": [
                "action",
                "caseNumber",
                "complaint",
                "contactId",
                "dateOfAction",
                "definition",
                "disciplinaryDecision",
                "entryDate",
                "information",
                "link",
                "note",
                "probationDate",
                "reinstatedDate",
                "rule",
                "ruleNumber",
                "sectionDate",
                "status",
                "stayDate",
                "supremeCourt",
                "term",
                "typeOfAction"
              ],
              "type": "object"
            },
            "type": "array"
          },
          "disciplineSummariesArray": {
            "items": {
              "properties": {
                "date": {
                  "format": "date-time",
                  "maxLength": 25,
                  "nullable": true,
                  "type": "string"
                },
                "link": {
                  "maxLength": 250,
                  "nullable": true,
                  "type": "string"
                },
                "title": {
                  "maxLength": 250,
                  "nullable": true,
                  "type": "string"
                }
              },
              "required": [
                "date",
                "link",
                "title"
              ],
              "type": "object"
            },
            "type": "array"
          },
          "dismissalsArray": {
            "items": {
              "maxLength": 250,
              "nullable": false,
              "type": "string"
            },
            "type": "array"
          },
          "district": {
            "maxLength": 250,
            "nullable": true,
            "type": "string"
          },
          "employmentHistoryArray": {
            "items": {
              "properties": {
                "employer": {
                  "maxLength": 250,
                  "nullable": true,
                  "type": "string"
                },
                "endDate": {
                  "format": "date-time",
                  "maxLength": 25,
                  "nullable": true,
                  "type": "string"
                },
                "startDate": {
                  "format": "date-time",
                  "maxLength": 25,
                  "nullable": true,
                  "type": "string"
                }
              },
              "required": [
                "employer",
                "endDate",
                "startDate"
              ],
              "type": "object"
            },
            "type": "array"
          },
          "expirationDate": {
            "format": "date-time",
            "maxLength": 25,
            "nullable": true,
            "type": "string"
          },
          "feesOptionsArray": {
            "items": {
              "properties": {
                "contingencyFees": {
                  "maxLength": 250,
                  "nullable": true,
                  "type": "string"
                },
                "flatFees": {
                  "maxLength": 250,
                  "nullable": true,
                  "type": "string"
                },
                "hourlyRate": {
                  "maxLength": 250,
                  "nullable": true,
                  "type": "string"
                },
                "paymentPlans": {
                  "maxLength": 250,
                  "nullable": true,
                  "type": "string"
                },
                "slidingScaleFees": {
                  "maxLength": 250,
                  "nullable": true,
                  "type": "string"
                }
              },
              "required": [
                "contingencyFees",
                "flatFees",
                "hourlyRate",
                "paymentPlans",
                "slidingScaleFees"
              ],
              "type": "object"
            },
            "type": "array"
          },
          "firmSize": {
            "maxLength": 250,
            "nullable": true,
            "type": "string"
          },
          "firmWebsite": {
            "maxLength": 1000,
            "nullable": true,
            "type": "string"
          },
          "firstAdmittedDate": {
            "description": "The firstAdmittedDate is the date when an attorney was admitted to the bar for the very first time regardless of which U.S state.",
            "format": "date-time",
            "maxLength": 25,
            "nullable": true,
            "type": "string"
          },
          "firstAdmittedYear": {
            "nullable": true,
            "type": "integer"
          },
          "homeCounty": {
            "maxLength": 250,
            "nullable": true,
            "type": "string"
          },
          "inGoodStanding": {
            "maxLength": 250,
            "nullable": true,
            "type": "string"
          },
          "insurance": {
            "maxLength": 500,
            "nullable": true,
            "type": "string"
          },
          "involvementsArray": {
            "items": {
              "properties": {
                "name": {
                  "maxLength": 500,
                  "nullable": true,
                  "type": "string"
                },
                "position": {
                  "maxLength": 250,
                  "nullable": true,
                  "type": "string"
                },
                "type": {
                  "maxLength": 250,
                  "nullable": true,
                  "type": "string"
                }
              },
              "required": [
                "name",
                "position",
                "type"
              ],
              "type": "object"
            },
            "type": "array"
          },
          "judicialDistrict": {
            "maxLength": 250,
            "nullable": true,
            "type": "string"
          },
          "jurisType": {
            "maxLength": 250,
            "nullable": true,
            "type": "string"
          },
          "languagesArray": {
            "items": {
              "maxLength": 1000,
              "nullable": false,
              "type": "string"
            },
            "type": "array"
          },
          "lastRenewalDate": {
            "format": "date-time",
            "maxLength": 25,
            "nullable": true,
            "type": "string"
          },
          "lawSchoolArray": {
            "items": {
              "properties": {
                "lawSchool": {
                  "maxLength": 250,
                  "nullable": true,
                  "type": "string"
                },
                "lawSchoolGraduatedDate": {
                  "format": "date-time",
                  "maxLength": 25,
                  "nullable": true,
                  "type": "string"
                }
              },
              "required": [
                "lawSchool",
                "lawSchoolGraduatedDate"
              ],
              "type": "object"
            },
            "type": "array"
          },
          "legalSpecialityArray": {
            "items": {
              "maxLength": 250,
              "nullable": false,
              "type": "string"
            },
            "type": "array"
          },
          "licenseType": {
            "maxLength": 250,
            "nullable": true,
            "type": "string"
          },
          "name": {
            "properties": {
              "firstName": {
                "maxLength": 500,
                "nullable": false,
                "type": "string"
              },
              "lastName": {
                "maxLength": 500,
                "nullable": false,
                "type": "string"
              },
              "middleName": {
                "maxLength": 500,
                "nullable": true,
                "type": "string"
              },
              "name": {
                "maxLength": 500,
                "nullable": false,
                "type": "string"
              },
              "prefix": {
                "maxLength": 250,
                "nullable": true,
                "type": "string"
              },
              "suffix": {
                "maxLength": 250,
                "nullable": true,
                "type": "string"
              }
            },
            "required": [
              "name",
              "firstName",
              "middleName",
              "lastName",
              "prefix",
              "suffix"
            ],
            "type": "object"
          },
          "nextRegistration": {
            "format": "date-time",
            "maxLength": 25,
            "nullable": true,
            "type": "string"
          },
          "nextRenewalDate": {
            "format": "date-time",
            "maxLength": 25,
            "nullable": true,
            "type": "string"
          },
          "object": {
            "default": "BarSourceData",
            "maxLength": 13,
            "nullable": false,
            "type": "string"
          },
          "openActionStatusArray": {
            "items": {
              "properties": {
                "date": {
                  "format": "date-time",
                  "maxLength": 25,
                  "nullable": true,
                  "type": "string"
                },
                "reason": {
                  "maxLength": 250,
                  "nullable": true,
                  "type": "string"
                }
              },
              "required": [
                "date",
                "reason"
              ],
              "type": "object"
            },
            "type": "array"
          },
          "otherJurisdictionArray": {
            "items": {
              "properties": {
                "barNumber": {
                  "maxLength": 250,
                  "nullable": true,
                  "type": "string"
                },
                "state": {
                  "maxLength": 250,
                  "nullable": true,
                  "type": "string"
                }
              },
              "required": [
                "barNumber",
                "state"
              ],
              "type": "object"
            },
            "type": "array"
          },
          "otherNameArray": {
            "items": {
              "maxLength": 500,
              "nullable": false,
              "type": "string"
            },
            "type": "array"
          },
          "parish": {
            "maxLength": 250,
            "nullable": true,
            "type": "string"
          },
          "pendingProceedingArray": {
            "items": {
              "maxLength": 250,
              "nullable": false,
              "type": "string"
            },
            "type": "array"
          },
          "position": {
            "maxLength": 250,
            "nullable": true,
            "type": "string"
          },
          "practiceAreaArray": {
            "items": {
              "maxLength": 250,
              "nullable": false,
              "type": "string"
            },
            "type": "array"
          },
          "practiceLocationArray": {
            "items": {
              "maxLength": 250,
              "nullable": false,
              "type": "string"
            },
            "type": "array"
          },
          "privateLawPractice": {
            "maxLength": 250,
            "nullable": true,
            "type": "string"
          },
          "profileLastCertified": {
            "format": "date-time",
            "maxLength": 25,
            "nullable": true,
            "type": "string"
          },
          "publicHearingArray": {
            "items": {
              "properties": {
                "conduct": {
                  "maxLength": 500,
                  "nullable": true,
                  "type": "string"
                },
                "date": {
                  "format": "date-time",
                  "maxLength": 25,
                  "nullable": true,
                  "type": "string"
                },
                "issuedBy": {
                  "maxLength": 250,
                  "nullable": true,
                  "type": "string"
                },
                "order": {
                  "maxLength": 250,
                  "nullable": true,
                  "type": "string"
                },
                "respondent": {
                  "maxLength": 250,
                  "nullable": true,
                  "type": "string"
                }
              },
              "required": [
                "conduct",
                "date",
                "issuedBy",
                "order",
                "respondent"
              ],
              "type": "object"
            },
            "type": "array"
          },
          "reasonForInactivation": {
            "nullable": true,
            "properties": {
              "caseNumber": {
                "maxLength": 250,
                "nullable": true,
                "type": "string"
              },
              "link": {
                "maxLength": 250,
                "nullable": true,
                "type": "string"
              }
            },
            "required": [
              "caseNumber",
              "link"
            ],
            "type": "object"
          },
          "relatedCasesArray": {
            "items": {
              "properties": {
                "caseDetails": {
                  "maxLength": 250,
                  "nullable": true,
                  "type": "string"
                },
                "caseId": {
                  "maxLength": 250,
                  "minLength": 1,
                  "nullable": true,
                  "type": "string"
                }
              },
              "required": [
                "caseId",
                "caseDetails"
              ],
              "type": "object"
            },
            "type": "array"
          },
          "sectionsArray": {
            "items": {
              "maxLength": 250,
              "nullable": false,
              "type": "string"
            },
            "type": "array"
          },
          "servicesArray": {
            "items": {
              "maxLength": 250,
              "nullable": false,
              "type": "string"
            },
            "type": "array"
          },
          "sourceInfo": {
            "nullable": true,
            "properties": {
              "url": {
                "format": "uri",
                "maxLength": 250,
                "nullable": true,
                "type": "string"
              }
            },
            "required": [
              "url"
            ],
            "type": "object"
          },
          "statewideGrievanceCommitteeHistoryArray": {
            "items": {
              "properties": {
                "finalDecision": {
                  "maxLength": 250,
                  "nullable": true,
                  "type": "string"
                },
                "finalDecisionDate": {
                  "format": "date-time",
                  "maxLength": 25,
                  "nullable": true,
                  "type": "string"
                },
                "grievanceComplaintNumber": {
                  "maxLength": 250,
                  "nullable": true,
                  "type": "string"
                },
                "publicComments": {
                  "maxLength": 1000,
                  "nullable": true,
                  "type": "string"
                }
              },
              "required": [
                "finalDecision",
                "finalDecisionDate",
                "grievanceComplaintNumber",
                "publicComments"
              ],
              "type": "object"
            },
            "type": "array"
          },
          "status": {
            "maxLength": 500,
            "nullable": true,
            "type": "string"
          },
          "statusDate": {
            "format": "date-time",
            "maxLength": 25,
            "nullable": true,
            "type": "string"
          },
          "statusHint": {
            "maxLength": 500,
            "nullable": true,
            "type": "string"
          },
          "statusHistoryArray": {
            "items": {
              "properties": {
                "effectiveDate": {
                  "format": "date-time",
                  "maxLength": 25,
                  "nullable": true,
                  "type": "string"
                },
                "statusChange": {
                  "maxLength": 250,
                  "nullable": true,
                  "type": "string"
                }
              },
              "required": [
                "effectiveDate",
                "statusChange"
              ],
              "type": "object"
            },
            "type": "array"
          },
          "tenYearDisciplineArray": {
            "items": {
              "properties": {
                "actionDate": {
                  "format": "date-time",
                  "maxLength": 25,
                  "nullable": true,
                  "type": "string"
                },
                "description": {
                  "maxLength": 250,
                  "nullable": true,
                  "type": "string"
                },
                "reference": {
                  "maxLength": 250,
                  "nullable": true,
                  "type": "string"
                }
              },
              "required": [
                "actionDate",
                "description",
                "reference"
              ],
              "type": "object"
            },
            "type": "array"
          },
          "undergraduateSchool": {
            "maxLength": 250,
            "nullable": true,
            "type": "string"
          },
          "yearsOfPractice": {
            "maxLength": 250,
            "nullable": true,
            "type": "string"
          }
        },
        "required": [
          "object",
          "administrativeActionsArray",
          "admissionType",
          "appellateCourtDistrict",
          "appellateDivisionDepartment",
          "attorneyGroup",
          "authorized",
          "barServiceClass",
          "bio",
          "boardCertificationsArray",
          "boardDistrict",
          "circuit",
          "comments",
          "committeesArray",
          "courtHistoryArray",
          "courtOfAdmissions",
          "courtServiceEmail",
          "disciplinaryHistoryArray",
          "disciplineSummariesArray",
          "dismissalsArray",
          "district",
          "employmentHistoryArray",
          "expirationDate",
          "feesOptionsArray",
          "firmSize",
          "firmWebsite",
          "firstAdmittedDate",
          "firstAdmittedYear",
          "homeCounty",
          "inGoodStanding",
          "insurance",
          "involvementsArray",
          "judicialDistrict",
          "jurisType",
          "languagesArray",
          "lastRenewalDate",
          "lawSchoolArray",
          "legalSpecialityArray",
          "licenseType",
          "name",
          "nextRegistration",
          "nextRenewalDate",
          "openActionStatusArray",
          "otherJurisdictionArray",
          "otherNameArray",
          "parish",
          "pendingProceedingArray",
          "position",
          "practiceAreaArray",
          "practiceLocationArray",
          "privateLawPractice",
          "profileLastCertified",
          "publicHearingArray",
          "reasonForInactivation",
          "sectionsArray",
          "servicesArray",
          "sourceInfo",
          "statewideGrievanceCommitteeHistoryArray",
          "status",
          "statusDate",
          "statusHistoryArray",
          "tenYearDisciplineArray",
          "undergraduateSchool",
          "barLawFirm",
          "yearsOfPractice",
          "clientsRepresentedArray",
          "statusHint",
          "advancedDegreeArray",
          "barStatusArray",
          "relatedCasesArray"
        ],
        "title": "BarSourceData",
        "type": "object",
        "x-unicourt-container": false
      },
      "BillingCycleUsageResponse": {
        "properties": {
          "apiCallsBillable": {
            "description": "Total number of API calls billed for the billing cycle.",
            "properties": {
              "count": {
                "description": "Total API calls billed  for the billing cycle",
                "example": 100,
                "type": "integer"
              },
              "lastUpdated": {
                "description": "Last Updated date and time for the field apiCallsBillable",
                "example": "2022-11-10T10:17:56+00:00",
                "maxLength": 25,
                "minLength": 25,
                "nullable": true,
                "type": "string"
              }
            },
            "required": [
              "count",
              "lastUpdated"
            ],
            "type": "object"
          },
          "apiCallsCredited": {
            "description": "Total number of callbackFailures including caseUpdate, caseDocumentOrder and caseExport for the billing cycle.",
            "properties": {
              "count": {
                "description": "Total API calls credited back for the billing cycle",
                "example": 100,
                "type": "integer"
              },
              "lastUpdated": {
                "description": "Last Updated date and time for the field apiCallsCredited",
                "example": "2022-11-10T10:17:56+00:00",
                "maxLength": 25,
                "minLength": 25,
                "nullable": true,
                "type": "string"
              }
            },
            "required": [
              "count",
              "lastUpdated"
            ],
            "type": "object"
          },
          "apiCallsMade": {
            "description": "Total API calls made for the billing cycle.",
            "properties": {
              "count": {
                "description": "Total API calls made for the billing cycle",
                "example": 100,
                "type": "integer"
              },
              "lastUpdated": {
                "description": "Last Updated date and time for the field apiCallsMade",
                "example": "2022-11-10T10:17:56+00:00",
                "maxLength": 25,
                "minLength": 25,
                "nullable": true,
                "type": "string"
              }
            },
            "required": [
              "count",
              "lastUpdated"
            ],
            "type": "object"
          },
          "apiUsage": {
            "description": "StartDate and endDate of the billing cycle.",
            "type": "object"
          },
          "billingCycle": {
            "description": "StartDate and endDate of the billing cycle.",
            "properties": {
              "endDate": {
                "description": "End date of the billing cycle.",
                "example": "2022-08-22T00:00:00+00:00",
                "format": "date",
                "maxLength": 25,
                "minLength": 25,
                "nullable": false,
                "type": "string"
              },
              "startDate": {
                "description": "Start date of the billing cycle.",
                "example": "2022-08-22T00:00:00+00:00",
                "format": "date",
                "maxLength": 25,
                "minLength": 25,
                "nullable": false,
                "type": "string"
              }
            },
            "required": [
              "startDate",
              "endDate"
            ],
            "type": "object"
          },
          "days": {
            "description": "Billing cycle days.",
            "type": "object"
          },
          "object": {
            "default": "BillingCycleUsageResponse",
            "description": "Name of the object.",
            "example": "BillingCycleUsageResponse",
            "maxLength": 25,
            "minLength": 25,
            "nullable": false,
            "type": "string"
          },
          "totalCasesTracked": {
            "description": "Total number of successful case tracks.",
            "example": 200,
            "type": "integer"
          }
        },
        "required": [
          "object",
          "billingCycle",
          "days",
          "apiUsage",
          "apiCallsMade",
          "apiCallsCredited",
          "apiCallsBillable",
          "totalCasesTracked"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "BillingCyclesResponse": {
        "properties": {
          "billingCycleArray": {
            "description": "Array of previous 12 Billing Cycles.",
            "items": {
              "example": "2023-01-10to2023-02-09",
              "format": "date",
              "maxLength": 22,
              "minLength": 22,
              "nullable": true,
              "type": "string"
            },
            "maxItems": 12,
            "minItems": 0,
            "nullable": true,
            "type": "array"
          },
          "object": {
            "default": "BillingCyclesResponse",
            "description": "Name of the object.",
            "example": "BillingCyclesResponse",
            "maxLength": 21,
            "minLength": 21,
            "nullable": false,
            "type": "string"
          }
        },
        "required": [
          "object",
          "billingCycleArray"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "CallbackListResponse": {
        "properties": {
          "caseDocumentOrderCallbacks": {
            "properties": {
              "count": {
                "example": 7,
                "type": "integer"
              },
              "link": {
                "example": "https://enterpriseapi.unicourt.com/caseDocumentOrder/callbacks?date=2022-03-08T10:17:56+00:00",
                "format": "uri",
                "maxLength": 1024,
                "minLength": 1,
                "nullable": false,
                "type": "string"
              }
            },
            "required": [
              "count",
              "link"
            ],
            "type": "object"
          },
          "caseExportCallbacks": {
            "properties": {
              "count": {
                "example": 10,
                "type": "integer"
              },
              "link": {
                "example": "https://enterpriseapi.unicourt.com/caseExport/callbacks?date=2022-03-08T10:17:56+00:00",
                "format": "uri",
                "maxLength": 1024,
                "minLength": 1,
                "nullable": false,
                "type": "string"
              }
            },
            "required": [
              "count",
              "link"
            ],
            "type": "object"
          },
          "object": {
            "default": "CallbackListResponse",
            "description": "Name of the object.",
            "example": "CallbackListResponse",
            "maxLength": 20,
            "minLength": 20,
            "nullable": false,
            "type": "string"
          }
        },
        "required": [
          "object",
          "caseDocumentOrderCallbacks",
          "caseExportCallbacks"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "Case": {
        "nullable": true,
        "properties": {
          "attorneys": {
            "$ref": "#/components/schemas/Attorneys"
          },
          "caseDocuments": {
            "$ref": "#/components/schemas/CaseDocuments"
          },
          "caseId": {
            "description": "Unique identifier of Case.",
            "example": "CASEgued96d541f794",
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          },
          "caseName": {
            "description": "Case name as provided by Court.",
            "example": "Mark C. Bonomi and Nicole A. Bonomi",
            "maxLength": 250,
            "nullable": true,
            "type": "string"
          },
          "caseNumber": {
            "description": "Case number as provided by Court.",
            "example": "2:19-BK-20033",
            "maxLength": 50,
            "minLength": 3,
            "nullable": false,
            "type": "string"
          },
          "caseStats": {
            "$ref": "#/components/schemas/CaseStats"
          },
          "caseStatus": {
            "$ref": "#/components/schemas/CaseStatus"
          },
          "caseType": {
            "$ref": "#/components/schemas/CaseType"
          },
          "causeOfActionArray": {
            "description": "Array of cause of Actions that are added to this case.",
            "items": {
              "$ref": "#/components/schemas/CaseCauseOfAction"
            },
            "type": "array"
          },
          "chargeArray": {
            "description": "Array of charges that are added to this case.",
            "items": {
              "$ref": "#/components/schemas/CaseCharge"
            },
            "type": "array"
          },
          "court": {
            "$ref": "#/components/schemas/Court"
          },
          "courtLocation": {
            "$ref": "#/components/schemas/CourtLocation"
          },
          "courtServiceStatusAPI": {
            "description": "API to get the service statuses of the given case.",
            "example": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus/CTSSV4vCEaKrhysQPq",
            "maxLength": 250,
            "nullable": true,
            "type": "string",
            "x-logical-reference": "CourtServiceStatusByIdAPI"
          },
          "courtServiceStatusId": {
            "description": "Court Service Status ID of the requested case where we can use it to get the service status",
            "example": "CTSSV4vCEaKrhysQPq",
            "maxLength": 18,
            "minLength": 18,
            "nullable": true,
            "type": "string"
          },
          "docketEntries": {
            "$ref": "#/components/schemas/DocketEntries"
          },
          "exportAPI": {
            "description": "When a case is beyond the threshold of entities we provide this link so that the user can request and get all the data of the case with one additional call. This data will be zipped and sent via a webhoook.",
            "example": "https://enterpriseapi.unicourt.com/caseExport/CASEgued96d541f794",
            "maxLength": 255,
            "nullable": false,
            "type": "string",
            "x-logical-reference": "CaseExportAPI"
          },
          "filedDate": {
            "description": "Filing date for the case provided by the Court. Formatted as YYYY-MM-DDTHH:MM:SS+ZZ:zz",
            "example": "2020-05-16T11:51:27+00:00",
            "format": "date-time",
            "maxLength": 25,
            "minLength": 25,
            "nullable": false,
            "type": "string"
          },
          "firstFetchDate": {
            "description": "The date and time when the case was first fetched from the Court. This date and time is in UTC. Formatted as YYYY-MM-DDTHH:MM:SS+ZZ:zz,.",
            "example": "2020-05-16T11:51:27+00:00",
            "format": "date-time",
            "maxLength": 25,
            "minLength": 25,
            "nullable": false,
            "type": "string"
          },
          "hasDocumentsWithPreview": {
            "description": "This field will be set to TRUE if atleast one document has a preview.",
            "example": true,
            "type": "boolean"
          },
          "hasOnlyMetaInfo": {
            "description": "This field determines if this case object has only meta information. If the value is true and if the full information is required you would need to call the updateCase API.",
            "example": false,
            "type": "boolean"
          },
          "hearings": {
            "$ref": "#/components/schemas/Hearings"
          },
          "judges": {
            "$ref": "#/components/schemas/Judges"
          },
          "lastFetchDate": {
            "description": "The date and time when the case was last fetched from the Court. This date and time is in UTC. Formatted as YYYY-MM-DDTHH:MM:SS+ZZ:zz, Note: It is not necessary that every time the case is fetched from Court we find changes in the case information. It could be that we already have the latest information from the Court and no changes exist.",
            "example": "2020-05-16T11:51:27+00:00",
            "format": "date-time",
            "maxLength": 25,
            "minLength": 25,
            "nullable": false,
            "type": "string"
          },
          "lastFetchDateWithUpdates": {
            "description": "The date and time when the case was last fetched from the Court where we found changes in the case information. This date and time is in UTC. Formatted as YYYY-MM-DDTHH:MM:SS+ZZ:zz,",
            "example": "2020-05-16T11:51:27+00:00",
            "format": "date-time",
            "maxLength": 25,
            "minLength": 25,
            "nullable": false,
            "type": "string"
          },
          "object": {
            "default": "Case",
            "description": "Name of the object",
            "maxLength": 4,
            "minLength": 4,
            "nullable": false,
            "type": "string"
          },
          "participantsLastFetchDate": {
            "description": "The date and time when parties/attorneys were last updated from the Court. Formatted as YYYY-MM-DDTHH:MM:SS+ZZ:zz, Note: This is currently applicable for Federal PACER cases since we have an option to exclude parties and fetch only latest docket entries when updating cases to save PACER fees.",
            "example": "2020-05-16T11:51:27+00:00",
            "format": "date-time",
            "maxLength": 25,
            "minLength": 25,
            "nullable": true,
            "type": "string"
          },
          "parties": {
            "$ref": "#/components/schemas/Parties"
          },
          "relatedCases": {
            "$ref": "#/components/schemas/RelatedCases"
          },
          "sourceCaseData": {
            "$ref": "#/components/schemas/SourceCaseData"
          },
          "sourceDataStatus": {
            "description": "The status of source data of case. If the value of sourceDataStatus is SOURCE_DEPRECATED then it means that the Case has been migrated from old court site to a new court site and the data being shown in the API response is from a old court site. If the sourceDataStatus is NO_LONGER_AVAILABLE_IN_COURT then it means that a particular case is invalid in the court site.",
            "enum": [
              "NO_LONGER_AVAILABLE_IN_COURT",
              "SOURCE_DEPRECATED",
              null
            ],
            "example": "SOURCE_DEPRECATED",
            "nullable": true,
            "type": "string"
          },
          "url": {
            "description": "URL to the case page in UniCourt Application.",
            "example": "https://unicourt.com/case/pc-bk1-osceola-clinic-pharmacy-llc-do-not-docket-in-this-case-jointly-administered-under-17-32186-this-message-does-not-apply-to-proofs-of-claims-271749",
            "format": "uri",
            "maxLength": 500,
            "nullable": true,
            "type": "string"
          }
        },
        "required": [
          "object",
          "caseId",
          "url",
          "caseNumber",
          "caseName",
          "filedDate",
          "hasOnlyMetaInfo",
          "courtServiceStatusId",
          "courtServiceStatusAPI",
          "court",
          "courtLocation",
          "caseType",
          "causeOfActionArray",
          "chargeArray",
          "caseStatus",
          "firstFetchDate",
          "lastFetchDate",
          "lastFetchDateWithUpdates",
          "participantsLastFetchDate",
          "sourceDataStatus",
          "sourceCaseData",
          "hasDocumentsWithPreview",
          "caseStats",
          "exportAPI",
          "parties",
          "attorneys",
          "judges",
          "docketEntries",
          "hearings",
          "caseDocuments",
          "relatedCases"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "CaseAnalyticsAPI": {
        "description": "Provides Court Data per State Jurisdiction for an entity.",
        "properties": {
          "caseCountAnalyticsByAreaOfLawAPI": {
            "format": "uri",
            "maxLength": 255,
            "nullable": false,
            "type": "string",
            "x-logical-reference": "CaseCountAnalyticsByAreaOfLawAPI"
          },
          "caseCountAnalyticsByCaseClassAPI": {
            "format": "uri",
            "maxLength": 255,
            "nullable": false,
            "type": "string",
            "x-logical-reference": "CaseCountAnalyticsByCaseClassAPI"
          },
          "caseCountAnalyticsByCaseTypeAPI": {
            "format": "uri",
            "maxLength": 255,
            "nullable": false,
            "type": "string",
            "x-logical-reference": "CaseCountAnalyticsByCaseTypeAPI"
          },
          "caseCountAnalyticsByCaseTypeGroupAPI": {
            "format": "uri",
            "maxLength": 255,
            "nullable": false,
            "type": "string",
            "x-logical-reference": "CaseCountAnalyticsByCaseTypeGroupAPI"
          },
          "caseCountAnalyticsByCourtAPI": {
            "format": "uri",
            "maxLength": 255,
            "nullable": false,
            "type": "string",
            "x-logical-reference": "CaseCountAnalyticsByCourtAPI"
          },
          "caseCountAnalyticsByCourtLocationAPI": {
            "format": "uri",
            "maxLength": 255,
            "nullable": false,
            "type": "string",
            "x-logical-reference": "CaseCountAnalyticsByCourtLocationAPI"
          },
          "caseCountAnalyticsByCourtSystemAPI": {
            "format": "uri",
            "maxLength": 255,
            "nullable": false,
            "type": "string",
            "x-logical-reference": "CaseCountAnalyticsByCourtSystemAPI"
          },
          "caseCountAnalyticsByCourtTypeAPI": {
            "format": "uri",
            "maxLength": 255,
            "nullable": false,
            "type": "string",
            "x-logical-reference": "CaseCountAnalyticsByCourtTypeAPI"
          },
          "caseCountAnalyticsByJurisdictionGeoAPI": {
            "format": "uri",
            "maxLength": 255,
            "nullable": false,
            "type": "string",
            "x-logical-reference": "CaseCountAnalyticsByJurisdictionGeoAPI"
          },
          "caseCountAnalyticsByPartyRoleAPI": {
            "format": "uri",
            "maxLength": 255,
            "nullable": true,
            "type": "string",
            "x-logical-reference": "CaseCountAnalyticsByPartyRoleAPI"
          },
          "caseCountAnalyticsByPartyRoleGroupAPI": {
            "format": "uri",
            "maxLength": 255,
            "nullable": true,
            "type": "string",
            "x-logical-reference": "CaseCountAnalyticsByPartyRoleGroupAPI"
          },
          "object": {
            "default": "CaseAnalyticsAPI",
            "maxLength": 16,
            "nullable": false,
            "type": "string"
          },
          "totalCases": {
            "type": "integer"
          }
        },
        "required": [
          "object",
          "caseCountAnalyticsByCourtAPI",
          "caseCountAnalyticsByCourtTypeAPI",
          "caseCountAnalyticsByCourtSystemAPI",
          "caseCountAnalyticsByCourtLocationAPI",
          "caseCountAnalyticsByJurisdictionGeoAPI",
          "caseCountAnalyticsByAreaOfLawAPI",
          "caseCountAnalyticsByCaseClassAPI",
          "caseCountAnalyticsByCaseTypeAPI",
          "caseCountAnalyticsByCaseTypeGroupAPI",
          "caseCountAnalyticsByPartyRoleAPI",
          "caseCountAnalyticsByPartyRoleGroupAPI",
          "totalCases"
        ],
        "title": "CaseAnalyticsAPI",
        "type": "object",
        "x-unicourt-container": false
      },
      "CaseCauseOfAction": {
        "nullable": true,
        "properties": {
          "causeOfAction": {
            "$ref": "#/components/schemas/CauseOfAction"
          },
          "causeOfActionAdditionalDataArray": {
            "items": {
              "$ref": "#/components/schemas/CauseOfActionAdditionalData"
            },
            "type": "array"
          },
          "object": {
            "default": "CaseCauseOfAction",
            "description": "Name of the object",
            "maxLength": 17,
            "minLength": 17,
            "nullable": false,
            "type": "string"
          }
        },
        "required": [
          "object",
          "causeOfAction",
          "causeOfActionAdditionalDataArray"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "CaseCharge": {
        "nullable": true,
        "properties": {
          "charge": {
            "$ref": "#/components/schemas/Charge"
          },
          "chargeAdditionalDataArray": {
            "items": {
              "$ref": "#/components/schemas/ChargeAdditionalData"
            },
            "type": "array"
          },
          "chargeDegree": {
            "$ref": "#/components/schemas/ChargeDegree"
          },
          "chargeSeverity": {
            "$ref": "#/components/schemas/ChargeSeverity"
          },
          "object": {
            "default": "CaseCharge",
            "description": "Name of the object",
            "maxLength": 10,
            "minLength": 10,
            "nullable": false,
            "type": "string"
          }
        },
        "required": [
          "charge",
          "chargeDegree",
          "chargeSeverity",
          "object",
          "chargeAdditionalDataArray"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "CaseClass": {
        "properties": {
          "caseClassId": {
            "example": "CSCLNjbKTN7Yfo2wdb",
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          },
          "createdDate": {
            "description": "The date and time when it was first created. This date and time is in UTC. Formatted as YYYY-MM-DD HH:MM:SS.",
            "example": "2020-05-07T10:17:56+00:00",
            "format": "date-time",
            "maxLength": 25,
            "minLength": 25,
            "nullable": false,
            "type": "string"
          },
          "name": {
            "example": "Civil",
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "string"
          },
          "object": {
            "default": "CaseClass",
            "example": "CaseClass",
            "maxLength": 9,
            "minLength": 9,
            "nullable": false,
            "type": "string"
          }
        },
        "required": [
          "object",
          "caseClassId",
          "name",
          "createdDate"
        ],
        "title": "CaseClass",
        "type": "object",
        "x-unicourt-container": false
      },
      "CaseClassCoverage": {
        "nullable": true,
        "properties": {
          "caseClass": {
            "$ref": "#/components/schemas/CaseClass"
          },
          "caseCount": {
            "description": "Total Cases for a specific CourtLocation.",
            "example": 1480157,
            "type": "integer"
          },
          "caseDocumentInLibraryCount": {
            "description": "Case Documents that were added to UniCourt Crowd Source Library for a specific CourtLocationy.",
            "example": 1256,
            "type": "integer"
          },
          "caseDocumentInLibraryInLastThirtyDaysCount": {
            "description": "Case Documents that were added to UniCourt Crowd Source Library for a specific CourtLocation in last 30 days.",
            "example": 1480157,
            "type": "integer"
          },
          "casesInLastThirtyDaysCount": {
            "description": "Cases in last 30 days that were added to UniCourt for a specific CourtLocation",
            "example": 8889,
            "type": "integer"
          },
          "courtServiceStatusAPI": {
            "description": "API Link to the Court Service status with filters of court and case class",
            "example": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=((Court:(courtId:\"CORTV4vCEaKrhystBz\")) AND (CaseClass:(caseClassId:\"CSCLNjbKTN7Yfo2wdb\")))",
            "maxLength": 250,
            "minLength": 50,
            "nullable": false,
            "type": "string"
          },
          "freeCaseDocumentCount": {
            "description": "Free Case Documents for a specific CourtLocation.",
            "example": 12545,
            "type": "integer"
          },
          "freeCaseDocumentsInLastThirtyDaysCount": {
            "description": "Free Case Documents in last 30 days that were added to UniCourt for a specific CourtLocation.",
            "example": 12545,
            "type": "integer"
          },
          "object": {
            "default": "CaseClassCoverage",
            "description": "Name of the object",
            "maxLength": 17,
            "minLength": 17,
            "nullable": false,
            "type": "string"
          },
          "paidCaseDocumentCount": {
            "description": "Paid Case Documents for a specific CourtLocation.",
            "example": 12545,
            "type": "integer"
          },
          "paidCaseDocumentsInLastThirtyDaysCount": {
            "description": "Paid Case Documents in last 30 days that were added to UniCourt for a specific CourtLocation.",
            "example": 125,
            "type": "integer"
          }
        },
        "required": [
          "object",
          "caseClass",
          "caseCount",
          "courtServiceStatusAPI",
          "casesInLastThirtyDaysCount",
          "freeCaseDocumentCount",
          "freeCaseDocumentsInLastThirtyDaysCount",
          "paidCaseDocumentCount",
          "paidCaseDocumentsInLastThirtyDaysCount",
          "caseDocumentInLibraryCount",
          "caseDocumentInLibraryInLastThirtyDaysCount"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "CaseClassResponse": {
        "properties": {
          "caseClassArray": {
            "items": {
              "$ref": "#/components/schemas/CaseClass"
            },
            "maxLength": 100,
            "type": "array"
          },
          "nextPageAPI": {
            "description": "Link to next page.",
            "example": null,
            "format": "uri",
            "maxLength": 2140,
            "minLength": 1,
            "nullable": true,
            "type": "string"
          },
          "object": {
            "default": "CaseClassResponse",
            "example": "CaseClassResponse",
            "maxLength": 17,
            "minLength": 17,
            "nullable": false,
            "type": "string"
          },
          "pageNumber": {
            "description": "Page number for which results where obtained.",
            "example": 1,
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "integer"
          },
          "previousPageAPI": {
            "description": "Link to previous page.",
            "example": null,
            "format": "uri",
            "maxLength": 2140,
            "minLength": 1,
            "nullable": true,
            "type": "string"
          },
          "totalCount": {
            "description": "Total number of matches found.",
            "example": 1,
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "integer"
          },
          "totalPages": {
            "description": "Total number of pages to obtain all the objects.",
            "example": 1,
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "integer"
          }
        },
        "required": [
          "object",
          "caseClassArray",
          "nextPageAPI",
          "previousPageAPI",
          "pageNumber",
          "totalPages",
          "totalCount"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "CaseCountAnalyticsByAreaOfLaw": {
        "properties": {
          "areaOfLaw": {
            "$ref": "#/components/schemas/AreaOfLaw"
          },
          "caseCount": {
            "type": "integer"
          },
          "caseSearchAPI": {
            "description": "Link to cases for this criteria.",
            "format": "uri",
            "maxLength": 255,
            "nullable": false,
            "type": "string",
            "x-logical-reference": "CaseSearchAPI"
          },
          "object": {
            "default": "CaseCountAnalyticsByAreaOfLaw",
            "maxLength": 29,
            "nullable": false,
            "type": "string"
          }
        },
        "required": [
          "object",
          "caseCount",
          "caseSearchAPI",
          "areaOfLaw"
        ],
        "title": "CaseCountAnalyticsByAreaOfLaw",
        "type": "object",
        "x-unicourt-container": false
      },
      "CaseCountAnalyticsByAreaOfLawResponse": {
        "description": "Case Counts by Area Of Law Response.",
        "properties": {
          "nextPageAPI": {
            "format": "uri",
            "maxLength": 2173,
            "nullable": true,
            "type": "string"
          },
          "object": {
            "default": "CaseCountAnalyticsByAreaOfLawResponse",
            "maxLength": 37,
            "nullable": false,
            "type": "string"
          },
          "previousPageAPI": {
            "description": "Link to previous page of results.",
            "format": "uri",
            "maxLength": 2172,
            "nullable": true,
            "type": "string"
          },
          "results": {
            "items": {
              "$ref": "#/components/schemas/CaseCountAnalyticsByAreaOfLaw"
            },
            "type": "array"
          },
          "totalAreaOfLawCount": {
            "description": "Total no. of Area Of Law for this criteria.",
            "type": "integer"
          },
          "totalCaseCount": {
            "description": "Total no. of Cases for this criteria.",
            "type": "integer"
          },
          "totalPages": {
            "description": "Total no. of pages.",
            "type": "integer"
          }
        },
        "required": [
          "object",
          "nextPageAPI",
          "previousPageAPI",
          "results",
          "totalPages",
          "totalCaseCount",
          "totalAreaOfLawCount"
        ],
        "title": "CaseCountAnalyticsByAreaOfLawResponse",
        "type": "object",
        "x-unicourt-container": false
      },
      "CaseCountAnalyticsByCaseClass": {
        "properties": {
          "caseClass": {
            "$ref": "#/components/schemas/CaseClass"
          },
          "caseCount": {
            "type": "integer"
          },
          "caseSearchAPI": {
            "description": "Link to cases for this criteria.",
            "format": "uri",
            "maxLength": 255,
            "nullable": false,
            "type": "string",
            "x-logical-reference": "CaseSearchAPI"
          },
          "object": {
            "default": "CaseCountAnalyticsByCaseClass",
            "maxLength": 29,
            "nullable": false,
            "type": "string"
          }
        },
        "required": [
          "object",
          "caseCount",
          "caseSearchAPI",
          "caseClass"
        ],
        "title": "CaseCountAnalyticsByCaseClass",
        "type": "object",
        "x-unicourt-container": false
      },
      "CaseCountAnalyticsByCaseClassResponse": {
        "description": "Case Counts by Case Class Response.",
        "properties": {
          "nextPageAPI": {
            "format": "uri",
            "maxLength": 2173,
            "nullable": true,
            "type": "string"
          },
          "object": {
            "default": "CaseCountAnalyticsByCaseClassResponse",
            "maxLength": 37,
            "nullable": false,
            "type": "string"
          },
          "previousPageAPI": {
            "description": "Link to previous page of results.",
            "format": "uri",
            "maxLength": 2172,
            "nullable": true,
            "type": "string"
          },
          "results": {
            "items": {
              "$ref": "#/components/schemas/CaseCountAnalyticsByCaseClass"
            },
            "type": "array"
          },
          "totalCaseClassCount": {
            "description": "Total no. of Case Class for this criteria.",
            "type": "integer"
          },
          "totalCaseCount": {
            "description": "Total no. of Cases for this criteria.",
            "type": "integer"
          },
          "totalPages": {
            "description": "Total no. of pages.",
            "type": "integer"
          }
        },
        "required": [
          "object",
          "nextPageAPI",
          "previousPageAPI",
          "results",
          "totalPages",
          "totalCaseCount",
          "totalCaseClassCount"
        ],
        "title": "CaseCountAnalyticsByCaseClassResponse",
        "type": "object",
        "x-unicourt-container": false
      },
      "CaseCountAnalyticsByCaseFiledDate": {
        "properties": {
          "caseCount": {
            "type": "integer"
          },
          "caseSearchAPI": {
            "description": "Link to cases for this criteria.",
            "format": "uri",
            "maxLength": 255,
            "nullable": false,
            "type": "string",
            "x-logical-reference": "CaseSearchAPI"
          },
          "groupedBy": {
            "default": "Yearly",
            "enum": [
              "Yearly",
              "Quarterly",
              "Monthly",
              "Weekly"
            ],
            "maxLength": 9,
            "nullable": false,
            "type": "string"
          },
          "monthInt": {
            "nullable": true,
            "type": "integer"
          },
          "monthString": {
            "enum": [
              "January",
              "February",
              "March",
              "April",
              "May",
              "June",
              "July",
              "August",
              "September",
              "October",
              "November",
              "December",
              null
            ],
            "maxLength": 9,
            "nullable": true,
            "type": "string"
          },
          "object": {
            "default": "CaseCountAnalyticsByCaseFiledDate",
            "maxLength": 33,
            "nullable": false,
            "type": "string"
          },
          "quarter": {
            "enum": [
              "Q1",
              "Q2",
              "Q3",
              "Q4",
              null
            ],
            "maxLength": 4,
            "nullable": true,
            "type": "string"
          },
          "weekOfMonth": {
            "nullable": true,
            "type": "integer"
          },
          "weekOfYear": {
            "nullable": true,
            "type": "integer"
          },
          "year": {
            "type": "integer"
          }
        },
        "required": [
          "object",
          "caseCount",
          "caseSearchAPI",
          "groupedBy",
          "year",
          "quarter",
          "monthString",
          "monthInt",
          "weekOfYear",
          "weekOfMonth"
        ],
        "title": "CaseCountAnalyticsByCaseFiledDate",
        "type": "object",
        "x-unicourt-container": false
      },
      "CaseCountAnalyticsByCaseFiledDateResponse": {
        "description": "Response for Case Count by filing date.",
        "properties": {
          "nextPageAPI": {
            "format": "uri",
            "maxLength": 2173,
            "nullable": true,
            "type": "string"
          },
          "object": {
            "default": "CaseCountAnalyticsByCaseFiledDateResponse",
            "maxLength": 41,
            "nullable": false,
            "type": "string"
          },
          "previousPageAPI": {
            "description": "Link to previous page of results.",
            "format": "uri",
            "maxLength": 2172,
            "nullable": true,
            "type": "string"
          },
          "results": {
            "items": {
              "$ref": "#/components/schemas/CaseCountAnalyticsByCaseFiledDate"
            },
            "type": "array"
          },
          "totalCaseCount": {
            "description": "Total no. of Cases for this criteria.",
            "type": "integer"
          },
          "totalCaseFiledDateCount": {
            "description": "Total no. of Case File Date for this criteria.",
            "type": "integer"
          },
          "totalPages": {
            "description": "Total no. of pages.",
            "type": "integer"
          }
        },
        "required": [
          "object",
          "nextPageAPI",
          "previousPageAPI",
          "results",
          "totalPages",
          "totalCaseCount",
          "totalCaseFiledDateCount"
        ],
        "title": "CaseCountAnalyticsByCaseFiledDateResponse",
        "type": "object",
        "x-unicourt-container": false
      },
      "CaseCountAnalyticsByCaseType": {
        "properties": {
          "caseCount": {
            "type": "integer"
          },
          "caseSearchAPI": {
            "description": "Link to cases for this criteria.",
            "format": "uri",
            "maxLength": 255,
            "nullable": false,
            "type": "string",
            "x-logical-reference": "CaseSearchAPI"
          },
          "caseType": {
            "$ref": "#/components/schemas/CaseType"
          },
          "object": {
            "default": "CaseCountAnalyticsByCaseType",
            "maxLength": 28,
            "nullable": false,
            "type": "string"
          }
        },
        "required": [
          "object",
          "caseCount",
          "caseSearchAPI",
          "caseType"
        ],
        "title": "CaseCountAnalyticsByCaseType",
        "type": "object",
        "x-unicourt-container": false
      },
      "CaseCountAnalyticsByCaseTypeGroup": {
        "properties": {
          "caseCount": {
            "type": "integer"
          },
          "caseSearchAPI": {
            "description": "Link to cases for this criteria.",
            "format": "uri",
            "maxLength": 255,
            "nullable": false,
            "type": "string",
            "x-logical-reference": "CaseSearchAPI"
          },
          "caseTypeGroup": {
            "$ref": "#/components/schemas/CaseTypeGroup"
          },
          "object": {
            "default": "CaseCountAnalyticsByCaseTypeGroup",
            "maxLength": 33,
            "nullable": false,
            "type": "string"
          }
        },
        "required": [
          "object",
          "caseCount",
          "caseSearchAPI",
          "caseTypeGroup"
        ],
        "title": "CaseCountAnalyticsByCaseTypeGroup",
        "type": "object",
        "x-unicourt-container": false
      },
      "CaseCountAnalyticsByCaseTypeGroupResponse": {
        "description": "Case Counts by Case Type Group Response.",
        "properties": {
          "nextPageAPI": {
            "format": "uri",
            "maxLength": 2173,
            "nullable": true,
            "type": "string"
          },
          "object": {
            "default": "CaseCountAnalyticsByCaseTypeGroupResponse",
            "maxLength": 41,
            "nullable": false,
            "type": "string"
          },
          "previousPageAPI": {
            "description": "Link to previous page of results.",
            "format": "uri",
            "maxLength": 2172,
            "nullable": true,
            "type": "string"
          },
          "results": {
            "items": {
              "$ref": "#/components/schemas/CaseCountAnalyticsByCaseTypeGroup"
            },
            "type": "array"
          },
          "totalCaseCount": {
            "description": "Total no. of Cases for this criteria.",
            "type": "integer"
          },
          "totalCaseTypeGroupCount": {
            "description": "Total no. of Case Type Group for this criteria.",
            "type": "integer"
          },
          "totalPages": {
            "description": "Total no. of pages.",
            "type": "integer"
          }
        },
        "required": [
          "object",
          "nextPageAPI",
          "previousPageAPI",
          "results",
          "totalPages",
          "totalCaseCount",
          "totalCaseTypeGroupCount"
        ],
        "title": "CaseCountAnalyticsByCaseTypeGroupResponse",
        "type": "object",
        "x-unicourt-container": false
      },
      "CaseCountAnalyticsByCaseTypeResponse": {
        "description": "Case Counts by Case Types Response.",
        "properties": {
          "nextPageAPI": {
            "format": "uri",
            "maxLength": 2173,
            "nullable": true,
            "type": "string"
          },
          "object": {
            "default": "CaseCountAnalyticsByCaseTypeResponse",
            "maxLength": 36,
            "nullable": false,
            "type": "string"
          },
          "previousPageAPI": {
            "description": "Link to previous page of results.",
            "format": "uri",
            "maxLength": 2172,
            "nullable": true,
            "type": "string"
          },
          "results": {
            "items": {
              "$ref": "#/components/schemas/CaseCountAnalyticsByCaseType"
            },
            "type": "array"
          },
          "totalCaseCount": {
            "description": "Total no. of Cases for this criteria.",
            "type": "integer"
          },
          "totalCaseTypeCount": {
            "description": "Total no. of CaseType for this criteria.",
            "type": "integer"
          },
          "totalPages": {
            "description": "Total no. of pages.",
            "type": "integer"
          }
        },
        "required": [
          "object",
          "nextPageAPI",
          "previousPageAPI",
          "results",
          "totalPages",
          "totalCaseCount",
          "totalCaseTypeCount"
        ],
        "title": "CaseCountAnalyticsByCaseTypeResponse",
        "type": "object",
        "x-unicourt-container": false
      },
      "CaseCountAnalyticsByCourt": {
        "properties": {
          "Geo": {
            "nullable": true,
            "properties": {
              "latitude": {
                "maxLength": 15,
                "nullable": true,
                "type": "string"
              },
              "longitude": {
                "maxLength": 15,
                "nullable": true,
                "type": "string"
              }
            },
            "required": [
              "latitude",
              "longitude"
            ],
            "type": "object"
          },
          "caseCount": {
            "type": "integer"
          },
          "caseSearchAPI": {
            "description": "link to cases for this criteria.",
            "format": "uri",
            "maxLength": 255,
            "nullable": false,
            "type": "string",
            "x-logical-reference": "CaseSearchAPI"
          },
          "court": {
            "$ref": "#/components/schemas/Court"
          },
          "object": {
            "default": "CaseCountAnalyticsByCourt",
            "maxLength": 25,
            "nullable": false,
            "type": "string"
          }
        },
        "required": [
          "object",
          "caseCount",
          "caseSearchAPI",
          "court",
          "Geo"
        ],
        "title": "CaseCountAnalyticsByCourt",
        "type": "object",
        "x-unicourt-container": false
      },
      "CaseCountAnalyticsByCourtLocation": {
        "properties": {
          "Geo": {
            "nullable": true,
            "properties": {
              "latitude": {
                "maxLength": 15,
                "nullable": true,
                "type": "string"
              },
              "longitude": {
                "maxLength": 15,
                "nullable": true,
                "type": "string"
              }
            },
            "required": [
              "latitude",
              "longitude"
            ],
            "type": "object"
          },
          "caseCount": {
            "type": "integer"
          },
          "caseSearchAPI": {
            "description": "link to cases for this criteria.",
            "format": "uri",
            "maxLength": 255,
            "nullable": false,
            "type": "string",
            "x-logical-reference": "CaseSearchAPI"
          },
          "court": {
            "$ref": "#/components/schemas/Court"
          },
          "courtLocation": {
            "$ref": "#/components/schemas/CourtLocation"
          },
          "object": {
            "default": "CaseCountAnalyticsByCourtLocation",
            "maxLength": 33,
            "nullable": false,
            "type": "string"
          }
        },
        "required": [
          "object",
          "caseCount",
          "caseSearchAPI",
          "courtLocation",
          "court",
          "Geo"
        ],
        "title": "CaseCountAnalyticsByCourtLocation",
        "type": "object",
        "x-unicourt-container": false
      },
      "CaseCountAnalyticsByCourtLocationResponse": {
        "description": "Case Counts by Court Location Response.",
        "properties": {
          "nextPageAPI": {
            "format": "uri",
            "maxLength": 2173,
            "nullable": true,
            "type": "string"
          },
          "object": {
            "default": "CaseCountAnalyticsByCourtLocationResponse",
            "maxLength": 41,
            "nullable": false,
            "type": "string"
          },
          "previousPageAPI": {
            "description": "Link to previous page of results.",
            "format": "uri",
            "maxLength": 2172,
            "nullable": true,
            "type": "string"
          },
          "results": {
            "items": {
              "$ref": "#/components/schemas/CaseCountAnalyticsByCourtLocation"
            },
            "type": "array"
          },
          "totalCaseCount": {
            "description": "Total no. of Cases for this criteria.",
            "type": "integer"
          },
          "totalCourtLocationCount": {
            "description": "Total no. of Court Location for this criteria.",
            "type": "integer"
          },
          "totalPages": {
            "description": "Total no. of pages.",
            "type": "integer"
          }
        },
        "required": [
          "object",
          "nextPageAPI",
          "previousPageAPI",
          "results",
          "totalPages",
          "totalCaseCount",
          "totalCourtLocationCount"
        ],
        "title": "CaseCountAnalyticsByCourtLocationResponse",
        "type": "object",
        "x-unicourt-container": false
      },
      "CaseCountAnalyticsByCourtResponse": {
        "description": "Case Counts by Court.",
        "properties": {
          "nextPageAPI": {
            "format": "uri",
            "maxLength": 2173,
            "nullable": true,
            "type": "string"
          },
          "object": {
            "default": "CaseCountAnalyticsByCourtResponse",
            "maxLength": 33,
            "nullable": false,
            "type": "string"
          },
          "previousPageAPI": {
            "description": "Link to previous page of results.",
            "format": "uri",
            "maxLength": 2172,
            "nullable": true,
            "type": "string"
          },
          "results": {
            "items": {
              "$ref": "#/components/schemas/CaseCountAnalyticsByCourt"
            },
            "type": "array"
          },
          "totalCaseCount": {
            "description": "Total no. of Cases for this criteria.",
            "type": "integer"
          },
          "totalCourtCount": {
            "description": "Total no. of Court for this criteria.",
            "type": "integer"
          },
          "totalPages": {
            "description": "Total no. of pages.",
            "type": "integer"
          }
        },
        "required": [
          "object",
          "nextPageAPI",
          "previousPageAPI",
          "results",
          "totalPages",
          "totalCaseCount",
          "totalCourtCount"
        ],
        "title": "CaseCountAnalyticsByCourtResponse",
        "type": "object",
        "x-unicourt-container": false
      },
      "CaseCountAnalyticsByCourtSystem": {
        "properties": {
          "Geo": {
            "nullable": true,
            "properties": {
              "latitude": {
                "maxLength": 15,
                "nullable": true,
                "type": "string"
              },
              "longitude": {
                "maxLength": 15,
                "nullable": true,
                "type": "string"
              }
            },
            "required": [
              "latitude",
              "longitude"
            ],
            "type": "object"
          },
          "caseCount": {
            "type": "integer"
          },
          "caseSearchAPI": {
            "description": "link to cases for this criteria.",
            "format": "uri",
            "maxLength": 255,
            "nullable": false,
            "type": "string",
            "x-logical-reference": "CaseSearchAPI"
          },
          "courtSystem": {
            "$ref": "#/components/schemas/CourtSystem"
          },
          "object": {
            "default": "CaseCountAnalyticsByCourtSystem",
            "maxLength": 31,
            "nullable": false,
            "type": "string"
          }
        },
        "required": [
          "object",
          "caseCount",
          "caseSearchAPI",
          "courtSystem",
          "Geo"
        ],
        "title": "CaseCountAnalyticsByCourtSystem",
        "type": "object",
        "x-unicourt-container": false
      },
      "CaseCountAnalyticsByCourtSystemResponse": {
        "description": "Case Counts by Court System.",
        "properties": {
          "nextPageAPI": {
            "format": "uri",
            "maxLength": 2173,
            "nullable": true,
            "type": "string"
          },
          "object": {
            "default": "CaseCountAnalyticsByCourtSystemResponse",
            "maxLength": 39,
            "nullable": false,
            "type": "string"
          },
          "previousPageAPI": {
            "description": "Link to previous page of results.",
            "format": "uri",
            "maxLength": 2172,
            "nullable": true,
            "type": "string"
          },
          "results": {
            "items": {
              "$ref": "#/components/schemas/CaseCountAnalyticsByCourtSystem"
            },
            "type": "array"
          },
          "totalCaseCount": {
            "description": "Total no. of Cases for this criteria.",
            "type": "integer"
          },
          "totalCourtSystemCount": {
            "description": "Total no. of Court System for this criteria.",
            "type": "integer"
          },
          "totalPages": {
            "description": "Total no. of pages.",
            "type": "integer"
          }
        },
        "required": [
          "object",
          "nextPageAPI",
          "previousPageAPI",
          "results",
          "totalPages",
          "totalCaseCount",
          "totalCourtSystemCount"
        ],
        "title": "CaseCountAnalyticsByCourtSystemResponse",
        "type": "object",
        "x-unicourt-container": false
      },
      "CaseCountAnalyticsByCourtType": {
        "properties": {
          "Geo": {
            "nullable": true,
            "properties": {
              "latitude": {
                "maxLength": 15,
                "nullable": true,
                "type": "string"
              },
              "longitude": {
                "maxLength": 15,
                "nullable": true,
                "type": "string"
              }
            },
            "required": [
              "latitude",
              "longitude"
            ],
            "type": "object"
          },
          "caseCount": {
            "type": "integer"
          },
          "caseSearchAPI": {
            "description": "link to cases for this criteria.",
            "format": "uri",
            "maxLength": 255,
            "nullable": false,
            "type": "string",
            "x-logical-reference": "CaseSearchAPI"
          },
          "courtType": {
            "$ref": "#/components/schemas/CourtType"
          },
          "object": {
            "default": "CaseCountAnalyticsByCourtType",
            "maxLength": 29,
            "nullable": false,
            "type": "string"
          }
        },
        "required": [
          "object",
          "caseCount",
          "caseSearchAPI",
          "courtType",
          "Geo"
        ],
        "title": "CaseCountAnalyticsByCourtType",
        "type": "object",
        "x-unicourt-container": false
      },
      "CaseCountAnalyticsByCourtTypeResponse": {
        "description": "Case Counts by Court Type.",
        "properties": {
          "nextPageAPI": {
            "format": "uri",
            "maxLength": 2173,
            "nullable": true,
            "type": "string"
          },
          "object": {
            "default": "CaseCountAnalyticsByCourtTypeResponse",
            "maxLength": 37,
            "nullable": false,
            "type": "string"
          },
          "previousPageAPI": {
            "description": "Link to previous page of results.",
            "format": "uri",
            "maxLength": 2172,
            "nullable": true,
            "type": "string"
          },
          "results": {
            "items": {
              "$ref": "#/components/schemas/CaseCountAnalyticsByCourtType"
            },
            "type": "array"
          },
          "totalCaseCount": {
            "description": "Total no. of Cases for this criteria.",
            "type": "integer"
          },
          "totalCourtTypeCount": {
            "description": "Total no. of Court Type for this criteria.",
            "type": "integer"
          },
          "totalPages": {
            "description": "Total no. of pages.",
            "type": "integer"
          }
        },
        "required": [
          "object",
          "nextPageAPI",
          "previousPageAPI",
          "results",
          "totalPages",
          "totalCaseCount",
          "totalCourtTypeCount"
        ],
        "title": "CaseCountAnalyticsByCourtTypeResponse",
        "type": "object",
        "x-unicourt-container": false
      },
      "CaseCountAnalyticsByJurisdictionGeo": {
        "properties": {
          "Geo": {
            "nullable": true,
            "properties": {
              "latitude": {
                "maxLength": 15,
                "nullable": true,
                "type": "string"
              },
              "longitude": {
                "maxLength": 15,
                "nullable": true,
                "type": "string"
              }
            },
            "required": [
              "latitude",
              "longitude"
            ],
            "type": "object"
          },
          "caseCount": {
            "type": "integer"
          },
          "caseSearchAPI": {
            "description": "link to cases for this criteria.",
            "format": "uri",
            "maxLength": 255,
            "nullable": false,
            "type": "string",
            "x-logical-reference": "CaseSearchAPI"
          },
          "jurisdictionGeo": {
            "$ref": "#/components/schemas/JurisdictionGeo"
          },
          "object": {
            "default": "CaseCountAnalyticsByJurisdictionGeo",
            "maxLength": 35,
            "nullable": false,
            "type": "string"
          }
        },
        "required": [
          "object",
          "caseCount",
          "caseSearchAPI",
          "jurisdictionGeo",
          "Geo"
        ],
        "title": "CaseCountAnalyticsByJurisdictionGeo",
        "type": "object",
        "x-unicourt-container": false
      },
      "CaseCountAnalyticsByJurisdictionGeoResponse": {
        "description": "Case Counts by Juridiction Geo Response.",
        "properties": {
          "nextPageAPI": {
            "format": "uri",
            "maxLength": 2173,
            "nullable": true,
            "type": "string"
          },
          "object": {
            "default": "CaseCountAnalyticsByJurisdictionGeoResponse",
            "maxLength": 43,
            "nullable": false,
            "type": "string"
          },
          "previousPageAPI": {
            "description": "Link to previous page of results.",
            "format": "uri",
            "maxLength": 2172,
            "nullable": true,
            "type": "string"
          },
          "results": {
            "items": {
              "$ref": "#/components/schemas/CaseCountAnalyticsByJurisdictionGeo"
            },
            "type": "array"
          },
          "totalCaseCount": {
            "description": "Total no. of Cases for this criteria.",
            "type": "integer"
          },
          "totalJurisdictionGeoCount": {
            "description": "Total no. of Jurisdiction for this criteria.",
            "type": "integer"
          },
          "totalPages": {
            "description": "Total no. of pages.",
            "type": "integer"
          }
        },
        "required": [
          "object",
          "nextPageAPI",
          "previousPageAPI",
          "results",
          "totalPages",
          "totalCaseCount",
          "totalJurisdictionGeoCount"
        ],
        "title": "CaseCountAnalyticsByJurisdictionGeoResponse",
        "type": "object",
        "x-unicourt-container": false
      },
      "CaseCountAnalyticsByNormAttorney": {
        "properties": {
          "caseCount": {
            "type": "integer"
          },
          "caseSearchAPI": {
            "description": "Link to cases for this criteria.",
            "format": "uri",
            "maxLength": 255,
            "nullable": false,
            "type": "string",
            "x-logical-reference": "CaseSearchAPI"
          },
          "normAttorneyId": {
            "maxLength": 18,
            "minLength": 17,
            "nullable": false,
            "type": "string"
          },
          "normAttorneyName": {
            "maxLength": 500,
            "nullable": false,
            "type": "string"
          },
          "object": {
            "default": "CaseCountAnalyticsByNormAttorney",
            "maxLength": 32,
            "nullable": false,
            "type": "string"
          }
        },
        "required": [
          "object",
          "normAttorneyId",
          "normAttorneyName",
          "caseSearchAPI",
          "caseCount"
        ],
        "title": "CaseCountAnalyticsByNormAttorney",
        "type": "object",
        "x-unicourt-container": false
      },
      "CaseCountAnalyticsByNormAttorneyResponse": {
        "properties": {
          "nextPageAPI": {
            "format": "uri",
            "maxLength": 2173,
            "nullable": true,
            "type": "string"
          },
          "object": {
            "default": "CaseCountAnalyticsByNormAttorneyResponse",
            "maxLength": 40,
            "nullable": false,
            "type": "string"
          },
          "previousPageAPI": {
            "description": "Link to previous page of results.",
            "format": "uri",
            "maxLength": 2172,
            "nullable": true,
            "type": "string"
          },
          "results": {
            "items": {
              "$ref": "#/components/schemas/CaseCountAnalyticsByNormAttorney"
            },
            "type": "array"
          },
          "totalCaseCount": {
            "description": "Total no. of Cases for this criteria.",
            "type": "integer"
          },
          "totalNormAttorneyCount": {
            "description": "Total no. of NormAttorney for this criteria.",
            "type": "integer"
          },
          "totalPages": {
            "description": "Total no. of pages.",
            "type": "integer"
          }
        },
        "required": [
          "object",
          "results",
          "nextPageAPI",
          "previousPageAPI",
          "totalPages",
          "totalCaseCount",
          "totalNormAttorneyCount"
        ],
        "title": "CaseCountAnalyticsByNormAttorneyResponse",
        "type": "object",
        "x-unicourt-container": false
      },
      "CaseCountAnalyticsByNormJudge": {
        "properties": {
          "caseCount": {
            "type": "integer"
          },
          "caseSearchAPI": {
            "description": "Link to cases for this criteria.",
            "format": "uri",
            "maxLength": 255,
            "nullable": false,
            "type": "string",
            "x-logical-reference": "CaseSearchAPI"
          },
          "normJudgeId": {
            "maxLength": 18,
            "minLength": 17,
            "nullable": false,
            "type": "string"
          },
          "normJudgeName": {
            "maxLength": 500,
            "nullable": false,
            "type": "string"
          },
          "object": {
            "default": "CaseCountAnalyticsByNormJudge",
            "maxLength": 29,
            "nullable": false,
            "type": "string"
          }
        },
        "required": [
          "object",
          "normJudgeId",
          "normJudgeName",
          "caseSearchAPI",
          "caseCount"
        ],
        "title": "CaseCountAnalyticsByNormJudge",
        "type": "object",
        "x-unicourt-container": false
      },
      "CaseCountAnalyticsByNormJudgeResponse": {
        "properties": {
          "nextPageAPI": {
            "format": "uri",
            "maxLength": 2173,
            "nullable": true,
            "type": "string"
          },
          "object": {
            "default": "CaseCountAnalyticsByNormJudgeResponse",
            "maxLength": 37,
            "nullable": false,
            "type": "string"
          },
          "previousPageAPI": {
            "description": "Link to previous page of results.",
            "format": "uri",
            "maxLength": 2172,
            "nullable": true,
            "type": "string"
          },
          "results": {
            "items": {
              "$ref": "#/components/schemas/CaseCountAnalyticsByNormJudge"
            },
            "type": "array"
          },
          "totalCaseCount": {
            "description": "Total no. of Cases for this criteria.",
            "type": "integer"
          },
          "totalNormJudgeCount": {
            "description": "Total no. of NormJudge for this criteria.",
            "type": "integer"
          },
          "totalPages": {
            "description": "Total no. of pages.",
            "type": "integer"
          }
        },
        "required": [
          "object",
          "results",
          "nextPageAPI",
          "previousPageAPI",
          "totalPages",
          "totalCaseCount",
          "totalNormJudgeCount"
        ],
        "title": "CaseCountAnalyticsByNormJudgeResponse",
        "type": "object",
        "x-unicourt-container": false
      },
      "CaseCountAnalyticsByNormLawFirm": {
        "properties": {
          "caseCount": {
            "type": "integer"
          },
          "caseSearchAPI": {
            "description": "Link to cases for this criteria.",
            "format": "uri",
            "maxLength": 255,
            "nullable": false,
            "type": "string",
            "x-logical-reference": "CaseSearchAPI"
          },
          "normLawFirmId": {
            "maxLength": 18,
            "minLength": 17,
            "nullable": false,
            "type": "string"
          },
          "normLawFirmName": {
            "maxLength": 500,
            "nullable": false,
            "type": "string"
          },
          "object": {
            "default": "CaseCountAnalyticsByNormLawFirm",
            "maxLength": 31,
            "nullable": false,
            "type": "string"
          }
        },
        "required": [
          "object",
          "normLawFirmId",
          "normLawFirmName",
          "caseSearchAPI",
          "caseCount"
        ],
        "title": "CaseCountAnalyticsByNormLawFirm",
        "type": "object",
        "x-unicourt-container": false
      },
      "CaseCountAnalyticsByNormLawFirmResponse": {
        "properties": {
          "nextPageAPI": {
            "format": "uri",
            "maxLength": 2173,
            "nullable": true,
            "type": "string"
          },
          "object": {
            "default": "CaseCountAnalyticsByNormLawFirmResponse",
            "maxLength": 39,
            "nullable": false,
            "type": "string"
          },
          "previousPageAPI": {
            "description": "Link to previous page of results.",
            "format": "uri",
            "maxLength": 2172,
            "nullable": true,
            "type": "string"
          },
          "results": {
            "items": {
              "$ref": "#/components/schemas/CaseCountAnalyticsByNormLawFirm"
            },
            "type": "array"
          },
          "totalCaseCount": {
            "description": "Total no. of Cases for this criteria.",
            "type": "integer"
          },
          "totalNormLawFirmCount": {
            "description": "Total no. of NormLawFirm for this criteria.",
            "type": "integer"
          },
          "totalPages": {
            "description": "Total no. of pages.",
            "type": "integer"
          }
        },
        "required": [
          "object",
          "results",
          "nextPageAPI",
          "previousPageAPI",
          "totalPages",
          "totalCaseCount",
          "totalNormLawFirmCount"
        ],
        "title": "CaseCountAnalyticsByNormLawFirmResponse",
        "type": "object",
        "x-unicourt-container": false
      },
      "CaseCountAnalyticsByNormParty": {
        "properties": {
          "caseCount": {
            "type": "integer"
          },
          "caseSearchAPI": {
            "description": "Link to cases for this criteria.",
            "format": "uri",
            "maxLength": 255,
            "nullable": false,
            "type": "string",
            "x-logical-reference": "CaseSearchAPI"
          },
          "normPartyId": {
            "maxLength": 18,
            "minLength": 17,
            "nullable": false,
            "type": "string"
          },
          "normPartyName": {
            "maxLength": 500,
            "nullable": false,
            "type": "string"
          },
          "object": {
            "default": "CaseCountAnalyticsByNormParty",
            "maxLength": 29,
            "nullable": false,
            "type": "string"
          }
        },
        "required": [
          "object",
          "normPartyId",
          "normPartyName",
          "caseSearchAPI",
          "caseCount"
        ],
        "title": "CaseCountAnalyticsByNormParty",
        "type": "object",
        "x-unicourt-container": false
      },
      "CaseCountAnalyticsByNormPartyResponse": {
        "properties": {
          "nextPageAPI": {
            "format": "uri",
            "maxLength": 2173,
            "nullable": true,
            "type": "string"
          },
          "object": {
            "default": "CaseCountAnalyticsByNormPartyResponse",
            "maxLength": 37,
            "nullable": false,
            "type": "string"
          },
          "previousPageAPI": {
            "description": "Link to previous page of results.",
            "format": "uri",
            "maxLength": 2172,
            "nullable": true,
            "type": "string"
          },
          "results": {
            "items": {
              "$ref": "#/components/schemas/CaseCountAnalyticsByNormParty"
            },
            "type": "array"
          },
          "totalCaseCount": {
            "description": "Total no. of Cases for this criteria.",
            "type": "integer"
          },
          "totalNormPartyCount": {
            "description": "Total no. of NormParty for this criteria.",
            "type": "integer"
          },
          "totalPages": {
            "description": "Total no. of pages.",
            "type": "integer"
          }
        },
        "required": [
          "object",
          "results",
          "nextPageAPI",
          "previousPageAPI",
          "totalPages",
          "totalCaseCount",
          "totalNormPartyCount"
        ],
        "title": "CaseCountAnalyticsByNormPartyResponse",
        "type": "object",
        "x-unicourt-container": false
      },
      "CaseCountAnalyticsByPartyRole": {
        "properties": {
          "caseCount": {
            "type": "integer"
          },
          "caseSearchAPI": {
            "description": "Link to cases for the entity involving the search criteria. TBD.",
            "format": "uri",
            "maxLength": 255,
            "nullable": false,
            "type": "string",
            "x-logical-reference": "CaseSearchAPI"
          },
          "object": {
            "default": "CaseCountAnalyticsByPartyRole",
            "maxLength": 29,
            "nullable": false,
            "type": "string"
          },
          "partyRole": {
            "$ref": "#/components/schemas/PartyRole"
          }
        },
        "required": [
          "object",
          "caseCount",
          "caseSearchAPI",
          "partyRole"
        ],
        "title": "CaseCountAnalyticsByPartyRole",
        "type": "object",
        "x-unicourt-container": false
      },
      "CaseCountAnalyticsByPartyRoleGroup": {
        "properties": {
          "caseCount": {
            "type": "integer"
          },
          "caseSearchAPI": {
            "description": "Link to cases for the entity involving the search criteria. TBD.",
            "format": "uri",
            "maxLength": 255,
            "nullable": false,
            "type": "string",
            "x-logical-reference": "CaseSearchAPI"
          },
          "object": {
            "default": "CaseCountAnalyticsByPartyRoleGroup",
            "maxLength": 34,
            "nullable": false,
            "type": "string"
          },
          "partyRoleGroup": {
            "$ref": "#/components/schemas/PartyRoleGroup"
          }
        },
        "required": [
          "object",
          "caseCount",
          "caseSearchAPI",
          "partyRoleGroup"
        ],
        "title": "CaseCountAnalyticsByPartyRoleGroup",
        "type": "object",
        "x-unicourt-container": false
      },
      "CaseCountAnalyticsByPartyRoleGroupResponse": {
        "description": "Case Count by Party Type Group Response.",
        "properties": {
          "nextPageAPI": {
            "format": "uri",
            "maxLength": 2173,
            "nullable": true,
            "type": "string"
          },
          "object": {
            "default": "CaseCountAnalyticsByPartyRoleGroupResponse",
            "maxLength": 42,
            "nullable": false,
            "type": "string"
          },
          "previousPageAPI": {
            "description": "Link to previous page of results.",
            "format": "uri",
            "maxLength": 2172,
            "nullable": true,
            "type": "string"
          },
          "results": {
            "items": {
              "$ref": "#/components/schemas/CaseCountAnalyticsByPartyRoleGroup"
            },
            "type": "array"
          },
          "totalCaseCount": {
            "description": "Total no. of Cases for this criteria.",
            "type": "integer"
          },
          "totalPages": {
            "description": "Total no. of pages.",
            "type": "integer"
          },
          "totalPartyRoleGroupCount": {
            "description": "Total no. of Party Role Group for this criteria.",
            "type": "integer"
          }
        },
        "required": [
          "object",
          "nextPageAPI",
          "previousPageAPI",
          "results",
          "totalPages",
          "totalCaseCount",
          "totalPartyRoleGroupCount"
        ],
        "title": "CaseCountAnalyticsByPartyRoleGroupResponse",
        "type": "object",
        "x-unicourt-container": false
      },
      "CaseCountAnalyticsByPartyRoleResponse": {
        "description": "Case Count by Party Type Response.",
        "properties": {
          "nextPageAPI": {
            "format": "uri",
            "maxLength": 2173,
            "nullable": true,
            "type": "string"
          },
          "object": {
            "default": "CaseCountAnalyticsByPartyRoleResponse",
            "maxLength": 37,
            "nullable": false,
            "type": "string"
          },
          "previousPageAPI": {
            "description": "Link to previous page of results.",
            "format": "uri",
            "maxLength": 2172,
            "nullable": true,
            "type": "string"
          },
          "results": {
            "items": {
              "$ref": "#/components/schemas/CaseCountAnalyticsByPartyRole"
            },
            "type": "array"
          },
          "totalCaseCount": {
            "description": "Total no. of Cases for this criteria.",
            "type": "integer"
          },
          "totalPages": {
            "description": "Total no. of pages.",
            "type": "integer"
          },
          "totalPartyRoleCount": {
            "description": "Total no. of Party Role for this criteria.",
            "type": "integer"
          }
        },
        "required": [
          "object",
          "nextPageAPI",
          "previousPageAPI",
          "results",
          "totalPages",
          "totalCaseCount",
          "totalPartyRoleCount"
        ],
        "title": "CaseCountAnalyticsByPartyRoleResponse",
        "type": "object",
        "x-unicourt-container": false
      },
      "CaseDocument": {
        "nullable": true,
        "properties": {
          "addedToLibraryDate": {
            "description": "Date and time when the document was downloaded and added to the UniCourt Crowd Source Library.",
            "example": "2018-02-16T11:43:56+00:00",
            "maxLength": 25,
            "minLength": 25,
            "nullable": true,
            "type": "string"
          },
          "caseDocumentId": {
            "description": "UniCourt's Case Document ID.",
            "example": "CDOCdg1e994374fda7",
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          },
          "childDocumentIdArray": {
            "description": "List of child document ID's if exists or else it will be an empty lsit.",
            "items": {
              "maxLength": 18,
              "minLength": 18,
              "nullable": true,
              "type": "string"
            },
            "type": "array"
          },
          "description": {
            "description": "Description of the document.",
            "example": null,
            "maxLength": 100000,
            "nullable": true,
            "type": "string"
          },
          "documentFiledDate": {
            "description": "Document Date when it was filed. The document date will be either explicitly provided byt the court or if the document is associatated to a docket entry then the document date will be of docket entry date.",
            "example": "2021-10-10T10:10:24+00:00",
            "maxLength": 25,
            "minLength": 25,
            "nullable": true,
            "type": "string"
          },
          "downloadAPI": {
            "description": "Link to either view the document if it is downloaded and already present in the UniCourt CrowdSourced Library.",
            "example": "https://enterpriseapi.unicourt.com/caseDocumentDownload/CDOC3Ygn47Yuteq3R",
            "maxLength": 255,
            "nullable": true,
            "type": "string",
            "x-logical-reference": "CaseDocumentDownloadAPI"
          },
          "estimatedOrderDuration": {
            "default": "estimateUnavailable",
            "description": "Estimated duration of a Order.",
            "enum": [
              "estimateUnavailable",
              "withinMinutes",
              "withinHours",
              "withinDays",
              "withinWeeks"
            ],
            "example": "withinMinutes",
            "maxLength": 25,
            "minLength": 10,
            "type": "string"
          },
          "firstFetchDate": {
            "description": "Is the date when the document was first fetched from the court site.",
            "example": "2021-10-10T10:10:24+00:00",
            "maxLength": 25,
            "minLength": 25,
            "nullable": false,
            "type": "string"
          },
          "inLibrary": {
            "description": "Determines if the document is present in the UniCourt Library or not.",
            "example": true,
            "type": "boolean"
          },
          "isPreviewAvailable": {
            "description": "Determines if a preview is available for the case document.",
            "example": true,
            "type": "boolean"
          },
          "name": {
            "description": "Document name.",
            "example": "204",
            "maxLength": 255,
            "nullable": true,
            "type": "string"
          },
          "object": {
            "default": "CaseDocument",
            "description": "Name of the object",
            "maxLength": 12,
            "minLength": 12,
            "nullable": false,
            "type": "string"
          },
          "pages": {
            "description": "Total number of pages in the document.",
            "example": 2,
            "nullable": true,
            "type": "integer"
          },
          "parentDocumentId": {
            "description": "Document ID which is the parent document for the current document. This will be null if the current document is a parent document.",
            "example": "CDOC3Ygn4ooAvNjHv",
            "maxLength": 18,
            "minLength": 18,
            "nullable": true,
            "type": "string"
          },
          "previewDocument": {
            "$ref": "#/components/schemas/PreviewDocument"
          },
          "price": {
            "description": "Price of the document.",
            "example": 0.8,
            "nullable": true,
            "type": "number"
          },
          "sortOrder": {
            "description": "Order of documents how it is being stored in UniCourt.",
            "example": 0,
            "nullable": true,
            "type": "integer"
          },
          "sourceDataStatus": {
            "description": "The status of source data of document. If the value of sourceDataStatus is SOURCE_DEPRECATED then it means that the Document has been migrated from old court site to a new court site and the data being shown in the API response is from a old court site. If the sourceDataStatus is NO_LONGER_AVAILABLE_IN_COURT then it means that a particular case is invalid in the court site.",
            "enum": [
              "NO_LONGER_AVAILABLE_IN_COURT",
              "SOURCE_DEPRECATED",
              "SEALED",
              null
            ],
            "example": "SOURCE_DEPRECATED",
            "nullable": true,
            "type": "string"
          }
        },
        "required": [
          "object",
          "caseDocumentId",
          "sortOrder",
          "name",
          "description",
          "documentFiledDate",
          "parentDocumentId",
          "isPreviewAvailable",
          "childDocumentIdArray",
          "pages",
          "previewDocument",
          "price",
          "inLibrary",
          "addedToLibraryDate",
          "estimatedOrderDuration",
          "downloadAPI",
          "firstFetchDate",
          "sourceDataStatus"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "CaseDocumentOrderCallback": {
        "properties": {
          "callbackGeneratedDate": {
            "description": "Date when the job is run.",
            "example": "2022-03-08T10:17:56+00:00",
            "format": "date-time",
            "maxLength": 25,
            "minLength": 25,
            "nullable": true,
            "type": "string"
          },
          "caseDocument": {
            "$ref": "#/components/schemas/CaseDocument"
          },
          "caseDocumentId": {
            "description": "UniCourt's Case Document ID.",
            "example": "CDOC3Ygn4ooAvNxEr",
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          },
          "caseDocumentOrderCallbackAPI": {
            "example": "https://enterpriseapi.unicourt.com/caseDocumentOrder/callbacks/CBDO3Ygn4ooAv_test",
            "format": "uri",
            "maxLength": 1024,
            "minLength": 1,
            "nullable": false,
            "type": "string"
          },
          "caseDocumentOrderCallbackId": {
            "description": "Unique Id for the Case Document Order Callback.",
            "example": "CBDO3Ygn4ooAvNenww",
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          },
          "exception": {
            "$ref": "#/components/schemas/Exception"
          },
          "file": {
            "$ref": "#/components/schemas/ExportFile"
          },
          "object": {
            "default": "CaseDocumentOrderCallback",
            "description": "Name of the object.",
            "example": "CaseDocumentOrderCallback",
            "maxLength": 25,
            "minLength": 25,
            "nullable": false,
            "type": "string"
          },
          "status": {
            "description": "Status of the request.",
            "enum": [
              "COMPLETE",
              "FAILURE",
              "IN_PROGRESS"
            ],
            "example": "COMPLETE",
            "maxLength": 11,
            "minLength": 7,
            "nullable": false,
            "type": "string"
          }
        },
        "required": [
          "object",
          "caseDocumentOrderCallbackId",
          "caseDocumentId",
          "callbackGeneratedDate",
          "status",
          "caseDocument",
          "caseDocumentOrderCallbackAPI",
          "file",
          "exception"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "CaseDocumentOrderCallbackListResponse": {
        "properties": {
          "callbackArray": {
            "description": "Array of case document order callback objects.",
            "items": {
              "$ref": "#/components/schemas/CaseDocumentOrderCallback"
            },
            "maxItems": 100,
            "minItems": 0,
            "type": "array"
          },
          "nextPageAPI": {
            "description": "Link for the next page.",
            "example": null,
            "format": "uri",
            "maxLength": 1024,
            "minLength": 1,
            "nullable": true,
            "type": "string"
          },
          "object": {
            "default": "CaseDocumentOrderCallbackListResponse",
            "description": "Name of the object.",
            "example": "CaseDocumentOrderCallbackListResponse",
            "maxLength": 37,
            "minLength": 37,
            "nullable": false,
            "type": "string"
          },
          "pageNumber": {
            "description": "Current page number.",
            "example": 1,
            "type": "integer"
          },
          "previousPageAPI": {
            "description": "Link for the previous page.",
            "example": null,
            "format": "uri",
            "maxLength": 1024,
            "minLength": 1,
            "nullable": true,
            "type": "string"
          },
          "totalCount": {
            "description": "Total number of case document order callback objects available.",
            "example": 1,
            "type": "integer"
          },
          "totalPages": {
            "description": "Total number of pages available.",
            "example": 1,
            "type": "integer"
          }
        },
        "required": [
          "object",
          "nextPageAPI",
          "previousPageAPI",
          "pageNumber",
          "totalCount",
          "totalPages",
          "callbackArray"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "CaseDocumentOrderPacerOptions": {
        "description": "**Applicable for PACER cases.**",
        "properties": {
          "pacerClientCode": {
            "description": "PACER Client Code. This is mandatory if your setting in PACER website is set to True for required client code.",
            "example": "Test UniCourt API",
            "maxLength": 32,
            "minLength": 0,
            "nullable": true,
            "type": "string"
          },
          "pacerUserId": {
            "description": "Your PACER credentials username. This is mandatory when a PACER Case is being requested in the API. For Non PACER cases this is not mandatory. Suppose your request consists of Non PACER and PACER Cases then this needs to be passed becuase you are requesting a PACER case too.",
            "example": "URKYwer3tyh5r56gq2",
            "maxLength": 40,
            "minLength": 6,
            "nullable": false,
            "type": "string"
          }
        },
        "required": [
          "pacerUserId"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "CaseDocumentOrderRequest": {
        "properties": {
          "caseDocumentId": {
            "description": "Document ID which you want to order.",
            "example": "CDOCcre989d654fa05",
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          },
          "isPreviewOnly": {
            "description": "Flag value to determine if the document order is a preview order or no.",
            "example": true,
            "type": "boolean"
          },
          "pacerOptions": {
            "$ref": "#/components/schemas/CaseDocumentOrderPacerOptions"
          }
        },
        "required": [
          "caseDocumentId",
          "isPreviewOnly"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "CaseDocuments": {
        "nullable": true,
        "properties": {
          "caseDocumentArray": {
            "items": {
              "$ref": "#/components/schemas/CaseDocument"
            },
            "maxItems": 100,
            "type": "array"
          },
          "nextPageAPI": {
            "description": "Link to next page of a particular entity in a Case.",
            "example": "https://enterpriseapi.unicourt.com/case/CASEgued96d541f794/parties/?pageNumber=1",
            "maxLength": 255,
            "nullable": true,
            "type": "string"
          },
          "object": {
            "default": "CaseDocuments",
            "description": "Name of the object",
            "maxLength": 13,
            "minLength": 13,
            "nullable": false,
            "type": "string"
          },
          "pageNumber": {
            "description": "Page number for which results where obtained.",
            "example": 1,
            "type": "integer"
          },
          "totalCount": {
            "description": "Total number of parties of the Case entity in a Case.",
            "example": 150,
            "type": "integer"
          },
          "totalPages": {
            "description": "Total number of pages to obtain all the objects of a party in the Case.",
            "example": 120,
            "type": "integer"
          }
        },
        "required": [
          "object",
          "pageNumber",
          "caseDocumentArray",
          "totalPages",
          "nextPageAPI",
          "totalCount"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "CaseExportCallback": {
        "properties": {
          "callbackGeneratedDate": {
            "description": "Date when the job is run.",
            "example": "2022-03-08T10:17:56+00:00",
            "format": "date-time",
            "maxLength": 25,
            "minLength": 25,
            "nullable": true,
            "type": "string"
          },
          "caseExportCallbackAPI": {
            "example": "https://enterpriseapi.unicourt.com/caseExport/callbacks/CBCEG4p62443dedRM3",
            "format": "uri",
            "maxLength": 1024,
            "minLength": 1,
            "nullable": false,
            "type": "string"
          },
          "caseExportCallbackId": {
            "description": "Unique Id for the Case Export Callback.",
            "example": "CBCEG4p62443dedRM3",
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          },
          "caseId": {
            "description": "Unique Id for a Case in UniCourt.",
            "example": "CASEak7aa69cdf27a1",
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          },
          "exception": {
            "$ref": "#/components/schemas/Exception"
          },
          "file": {
            "$ref": "#/components/schemas/ExportFile"
          },
          "object": {
            "default": "CaseExportCallback",
            "description": "Name of the object.",
            "example": "CaseExportCallback",
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          },
          "status": {
            "description": "Status of the request.",
            "enum": [
              "COMPLETE",
              "FAILURE",
              "IN_PROGRESS"
            ],
            "example": "COMPLETE",
            "maxLength": 11,
            "minLength": 7,
            "nullable": false,
            "type": "string"
          }
        },
        "required": [
          "object",
          "caseExportCallbackId",
          "caseId",
          "callbackGeneratedDate",
          "status",
          "caseExportCallbackAPI",
          "file",
          "exception"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "CaseExportCallbackListResponse": {
        "properties": {
          "callbackArray": {
            "description": "Array of case export callback objects.",
            "items": {
              "$ref": "#/components/schemas/CaseExportCallback"
            },
            "maxItems": 100,
            "minItems": 0,
            "type": "array"
          },
          "nextPageAPI": {
            "description": "Link for the next page.",
            "example": null,
            "maxLength": 1024,
            "minLength": 1,
            "nullable": true,
            "type": "string"
          },
          "object": {
            "default": "CaseExportCallbackListResponse",
            "description": "Name of the object.",
            "example": "CaseExportCallbackListResponse",
            "maxLength": 30,
            "minLength": 30,
            "nullable": false,
            "type": "string"
          },
          "pageNumber": {
            "description": "Current page number.",
            "example": 1,
            "type": "integer"
          },
          "previousPageAPI": {
            "description": "Link for the previous page.",
            "example": null,
            "maxLength": 1024,
            "minLength": 1,
            "nullable": true,
            "type": "string"
          },
          "totalCount": {
            "description": "Total number of case export callback objects available.",
            "example": 1,
            "type": "integer"
          },
          "totalPages": {
            "description": "Total number of pages available.",
            "example": 1,
            "type": "integer"
          }
        },
        "required": [
          "object",
          "nextPageAPI",
          "previousPageAPI",
          "pageNumber",
          "totalCount",
          "totalPages",
          "callbackArray"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "CaseRelationshipType": {
        "nullable": true,
        "properties": {
          "caseRelationshipTypeId": {
            "example": "CRTPgkmnzpiBXstT3s",
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          },
          "createdDate": {
            "description": "The date and time when it was first created. This date and time is in UTC. Formatted as YYYY-MM-DD HH:MM:SS.",
            "example": "2020-05-07T10:17:56+00:00",
            "format": "date-time",
            "maxLength": 25,
            "minLength": 25,
            "nullable": false,
            "type": "string"
          },
          "name": {
            "example": "Child Case",
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "string"
          },
          "object": {
            "default": "CaseRelationshipType",
            "example": "CaseRelationshipType",
            "maxLength": 20,
            "minLength": 20,
            "nullable": false,
            "type": "string"
          }
        },
        "required": [
          "object",
          "caseRelationshipTypeId",
          "name",
          "createdDate"
        ],
        "title": "CaseRelationshipType",
        "type": "object",
        "x-unicourt-container": false
      },
      "CaseRelationshipTypeResponse": {
        "properties": {
          "caseRelationshipTypeArray": {
            "items": {
              "$ref": "#/components/schemas/CaseRelationshipType"
            },
            "maxLength": 100,
            "type": "array"
          },
          "nextPageAPI": {
            "description": "Link to next page.",
            "example": null,
            "format": "uri",
            "maxLength": 2153,
            "minLength": 1,
            "nullable": true,
            "type": "string"
          },
          "object": {
            "default": "CaseRelationshipTypeResponse",
            "example": "CaseRelationshipTypeResponse",
            "maxLength": 28,
            "minLength": 28,
            "nullable": false,
            "type": "string"
          },
          "pageNumber": {
            "description": "Page number for which results where obtained.",
            "example": 1,
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "integer"
          },
          "previousPageAPI": {
            "description": "Link to previous page.",
            "example": null,
            "format": "uri",
            "maxLength": 2152,
            "minLength": 1,
            "nullable": true,
            "type": "string"
          },
          "totalCount": {
            "description": "Total number of matches found.",
            "example": 1,
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "integer"
          },
          "totalPages": {
            "description": "Total number of pages to obtain all the objects.",
            "example": 1,
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "integer"
          }
        },
        "required": [
          "object",
          "caseRelationshipTypeArray",
          "nextPageAPI",
          "previousPageAPI",
          "pageNumber",
          "totalPages",
          "totalCount"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "CaseSearchResponse": {
        "properties": {
          "caseSearchId": {
            "description": "Query been sent by client",
            "example": "CSRCg78ofjDLzhjRpW",
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          },
          "caseSearchResultArray": {
            "items": {
              "$ref": "#/components/schemas/CaseSearchResult"
            },
            "maxLength": 10,
            "type": "array"
          },
          "nextPageAPI": {
            "description": "Link to next page.",
            "example": null,
            "format": "uri",
            "maxLength": 2138,
            "minLength": 1,
            "nullable": true,
            "type": "string"
          },
          "object": {
            "default": "CaseSearchResponse",
            "example": "CaseSearchResponse",
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          },
          "pageNumber": {
            "example": 1,
            "maxLength": 4,
            "minLength": 1,
            "nullable": false,
            "type": "integer"
          },
          "previousPageAPI": {
            "description": "Link to previous page.",
            "example": null,
            "format": "uri",
            "maxLength": 2138,
            "minLength": 1,
            "nullable": true,
            "type": "string"
          },
          "q": {
            "description": "Query been sent by client",
            "example": "caseId%3A%22CASEgq222a2d1239af%22",
            "maxLength": 2048,
            "minLength": 3,
            "nullable": false,
            "type": "string"
          },
          "totalCount": {
            "description": "The number of matches that were found in the index.",
            "example": 1,
            "maxLength": 11,
            "minLength": 1,
            "nullable": false,
            "type": "integer"
          },
          "totalPages": {
            "description": "Total pages for matches that were found in the index.",
            "example": 1,
            "maxLength": 4,
            "minLength": 1,
            "nullable": false,
            "type": "integer"
          }
        },
        "required": [
          "object",
          "caseSearchResultArray",
          "q",
          "caseSearchId",
          "nextPageAPI",
          "previousPageAPI",
          "pageNumber",
          "totalPages",
          "totalCount"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "CaseSearchResult": {
        "properties": {
          "caseAPI": {
            "example": "https://enterpriseapi.unicourt.com/case/CASEgq222a2d1239af",
            "format": "uri",
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "string"
          },
          "caseId": {
            "example": "CASEgq222a2d1239af",
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          },
          "caseName": {
            "example": "Salgado v. Midland Funding, LLC et al",
            "maxLength": 250,
            "nullable": true,
            "type": "string"
          },
          "caseNumber": {
            "example": "1:18-cv-08559",
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "string"
          },
          "caseStatus": {
            "$ref": "#/components/schemas/CaseStatus"
          },
          "caseType": {
            "$ref": "#/components/schemas/CaseType"
          },
          "court": {
            "$ref": "#/components/schemas/Court"
          },
          "courtLocation": {
            "$ref": "#/components/schemas/CourtLocation"
          },
          "filedDate": {
            "example": "2018-12-31T00:00:00+00:00",
            "format": "date-time",
            "maxLength": 25,
            "minLength": 25,
            "nullable": false,
            "type": "string"
          },
          "firstFetchDate": {
            "example": "2019-01-01T11:20:09+00:00",
            "format": "date-time",
            "maxLength": 25,
            "minLength": 25,
            "nullable": false,
            "type": "string"
          },
          "lastFetchDate": {
            "example": "2020-04-25T10:42:46+00:00",
            "format": "date-time",
            "maxLength": 25,
            "minLength": 25,
            "nullable": false,
            "type": "string"
          },
          "lastFetchDateWithUpdates": {
            "example": "2020-04-25T10:42:46+00:00",
            "format": "date-time",
            "maxLength": 25,
            "minLength": 25,
            "nullable": false,
            "type": "string"
          },
          "matchedObjectArray": {
            "items": {
              "$ref": "#/components/schemas/MatchedObject"
            },
            "type": "array"
          },
          "object": {
            "default": "CaseSearchResult",
            "example": "CaseSearchResult",
            "maxLength": 16,
            "minLength": 16,
            "nullable": false,
            "type": "string"
          },
          "participantsLastFetchDate": {
            "example": "2020-04-25T10:42:46+00:00",
            "format": "date-time",
            "maxLength": 25,
            "minLength": 25,
            "nullable": true,
            "type": "string"
          }
        },
        "required": [
          "object",
          "caseId",
          "caseName",
          "caseNumber",
          "filedDate",
          "court",
          "courtLocation",
          "caseType",
          "caseStatus",
          "firstFetchDate",
          "lastFetchDate",
          "lastFetchDateWithUpdates",
          "participantsLastFetchDate",
          "caseAPI",
          "matchedObjectArray"
        ],
        "title": "CaseSearchResult",
        "type": "object",
        "x-unicourt-container": false
      },
      "CaseStats": {
        "description": "Count of each entitiy of a case is mentioned here so that you can calculate the number of requests needs to be done to obtain each entity results completely.",
        "properties": {
          "allCaseDocumentCount": {
            "description": "Count which includes the freeCaseDocumentCount and paidCaseDocumentCount.",
            "example": 379,
            "type": "integer"
          },
          "attorneyCount": {
            "description": "Count of number of attornies available in the case being requested for.",
            "example": 232,
            "type": "integer"
          },
          "caseDocumentInLibraryCount": {
            "description": "Count of number of documents that are available in the UniCourt CrowdSourced Library for the case being requested for.",
            "example": 13,
            "type": "integer"
          },
          "docketEntryCount": {
            "description": "Count of number of docket entries available in the case being requested for.",
            "example": 8503,
            "type": "integer"
          },
          "freeCaseDocumentCount": {
            "description": "Count of number of free documents available in the case being requested for.",
            "example": 254,
            "type": "integer"
          },
          "hearingCount": {
            "description": "Count of number of hearings available in the case being requested for.",
            "example": 2,
            "type": "integer"
          },
          "judgeCount": {
            "description": "Count of number of judges available in the case being requested for.",
            "example": 1,
            "type": "integer"
          },
          "object": {
            "default": "CaseStats",
            "description": "Name of the object",
            "maxLength": 9,
            "minLength": 9,
            "nullable": false,
            "type": "string"
          },
          "paidCaseDocumentCount": {
            "description": "Count of number of paid documents available in the case being requested for.",
            "example": 125,
            "type": "integer"
          },
          "partyCount": {
            "description": "Count of number of parties available in the case being requested for.",
            "example": 860,
            "type": "integer"
          },
          "relatedCaseCount": {
            "description": "Count of related cases that are available in the case being requested.",
            "example": 1,
            "type": "integer"
          }
        },
        "required": [
          "object",
          "partyCount",
          "attorneyCount",
          "judgeCount",
          "docketEntryCount",
          "freeCaseDocumentCount",
          "paidCaseDocumentCount",
          "allCaseDocumentCount",
          "caseDocumentInLibraryCount",
          "hearingCount",
          "relatedCaseCount"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "CaseStatus": {
        "nullable": true,
        "properties": {
          "caseClassArray": {
            "example": [
              "Civil",
              "Criminal"
            ],
            "items": {
              "maxLength": 255,
              "minLength": 1,
              "nullable": false,
              "type": "string"
            },
            "nullable": true,
            "type": "array"
          },
          "caseStatusGroup": {
            "example": "Closed",
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "string"
          },
          "caseStatusGroupId": {
            "example": "CSSG6ERqyFdydo52WK",
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          },
          "caseStatusId": {
            "example": "CSSTBtqf3R2LYFt4j4",
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          },
          "createdDate": {
            "description": "The date and time when it was first created. This date and time is in UTC. Formatted as YYYY-MM-DD HH:MM:SS.",
            "example": "2021-11-25T10:17:38+00:00",
            "format": "date-time",
            "maxLength": 25,
            "minLength": 25,
            "nullable": false,
            "type": "string"
          },
          "name": {
            "example": "Dismissed",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "type": "string"
          },
          "object": {
            "default": "CaseStatus",
            "example": "CaseStatus",
            "maxLength": 10,
            "minLength": 10,
            "nullable": false,
            "type": "string"
          }
        },
        "required": [
          "object",
          "caseStatusId",
          "caseStatusGroupId",
          "caseStatusGroup",
          "name",
          "caseClassArray",
          "createdDate"
        ],
        "title": "CaseStatus",
        "type": "object",
        "x-unicourt-container": false
      },
      "CaseStatusGroup": {
        "properties": {
          "caseStatusGroupId": {
            "example": "CSSG6ERqyFdydo52WK",
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          },
          "createdDate": {
            "description": "The date and time when it was first created. This date and time is in UTC. Formatted as YYYY-MM-DD HH:MM:SS.",
            "example": "2021-11-25T10:17:33+00:00",
            "format": "date-time",
            "maxLength": 25,
            "minLength": 25,
            "nullable": false,
            "type": "string"
          },
          "name": {
            "example": "Closed",
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "string"
          },
          "object": {
            "default": "CaseStatusGroup",
            "example": "CaseStatusGroup",
            "maxLength": 15,
            "minLength": 15,
            "nullable": false,
            "type": "string"
          }
        },
        "required": [
          "object",
          "caseStatusGroupId",
          "name",
          "createdDate"
        ],
        "title": "CaseStatusGroup",
        "type": "object",
        "x-unicourt-container": false
      },
      "CaseStatusGroupResponse": {
        "properties": {
          "caseStatusGroupArray": {
            "items": {
              "$ref": "#/components/schemas/CaseStatusGroup"
            },
            "maxLength": 100,
            "type": "array"
          },
          "nextPageAPI": {
            "description": "Link to next page.",
            "example": null,
            "format": "uri",
            "maxLength": 2148,
            "minLength": 1,
            "nullable": true,
            "type": "string"
          },
          "object": {
            "default": "CaseStatusGroupResponse",
            "example": "CaseStatusGroupResponse",
            "maxLength": 23,
            "minLength": 23,
            "nullable": false,
            "type": "string"
          },
          "pageNumber": {
            "description": "Page number for which results where obtained.",
            "example": 1,
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "integer"
          },
          "previousPageAPI": {
            "description": "Link to previous page.",
            "example": null,
            "format": "uri",
            "maxLength": 2147,
            "minLength": 1,
            "nullable": true,
            "type": "string"
          },
          "totalCount": {
            "description": "Total number of matches found.",
            "example": 1,
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "integer"
          },
          "totalPages": {
            "description": "Total number of pages to obtain all the objects.",
            "example": 1,
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "integer"
          }
        },
        "required": [
          "object",
          "caseStatusGroupArray",
          "nextPageAPI",
          "previousPageAPI",
          "pageNumber",
          "totalPages",
          "totalCount"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "CaseStatusResponse": {
        "properties": {
          "caseStatusArray": {
            "items": {
              "$ref": "#/components/schemas/CaseStatus"
            },
            "maxLength": 100,
            "type": "array"
          },
          "nextPageAPI": {
            "description": "Link to next page.",
            "example": null,
            "format": "uri",
            "maxLength": 2143,
            "minLength": 18,
            "nullable": true,
            "type": "string"
          },
          "object": {
            "default": "CaseStatusResponse",
            "example": "CaseStatusResponse",
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          },
          "pageNumber": {
            "description": "Page number for which results where obtained.",
            "example": 1,
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "integer"
          },
          "previousPageAPI": {
            "description": "Link to previous page.",
            "example": null,
            "format": "uri",
            "maxLength": 2142,
            "minLength": 18,
            "nullable": true,
            "type": "string"
          },
          "totalCount": {
            "description": "Total number of matches found.",
            "example": 1,
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "integer"
          },
          "totalPages": {
            "description": "Total number of pages to obtain all the objects.",
            "example": 1,
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "integer"
          }
        },
        "required": [
          "object",
          "caseStatusArray",
          "nextPageAPI",
          "previousPageAPI",
          "pageNumber",
          "totalPages",
          "totalCount"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "CaseTimeline": {
        "properties": {
          "firstCaseFiledDate": {
            "description": "The first date when the two entities have appeared together in the case. (These dates are determined from case filed dates)",
            "format": "date-time",
            "maxLength": 25,
            "nullable": false,
            "type": "string"
          },
          "lastCaseFiledDate": {
            "description": "The last date when the two entities have appeared together in the case. (These dates are determined from case filed dates)",
            "format": "date-time",
            "maxLength": 25,
            "nullable": false,
            "type": "string"
          },
          "object": {
            "default": "CaseTimeline",
            "maxLength": 12,
            "nullable": false,
            "type": "string"
          }
        },
        "required": [
          "object",
          "firstCaseFiledDate",
          "lastCaseFiledDate"
        ],
        "title": "CaseTimeline",
        "type": "object",
        "x-unicourt-container": true
      },
      "CaseTrack": {
        "properties": {
          "case": {
            "$ref": "#/components/schemas/Case"
          },
          "caseAPI": {
            "example": "https://enterpriseapi.unicourt.com/case/CASEgq222a2d1239af",
            "format": "uri",
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "string"
          },
          "caseId": {
            "description": "Unique Id for a Case in UniCourt.",
            "example": "CASEhq9d8b72d0800c",
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          },
          "lastFetchDate": {
            "description": "The date and time when the case was last fetched from the Court. This date and time is in UTC. Formatted as YYYY-MM-DDTHH:MM:SS+ZZ:zz, Note: It is not necessary that every time the case is fetched from Court we find changes in the case information. It could be that we already have the latest information from the Court and no changes exist.",
            "example": "2020-05-16T11:51:27+00:00",
            "format": "date-time",
            "maxLength": 25,
            "minLength": 25,
            "nullable": true,
            "type": "string"
          },
          "lastFetchDateWithUpdates": {
            "description": "The date and time when the case was last fetched from the Court where we found changes in the case information. This date and time is in UTC. Formatted as YYYY-MM-DDTHH:MM:SS+ZZ:zz,",
            "example": "2020-05-16T11:51:27+00:00",
            "format": "date-time",
            "maxLength": 25,
            "minLength": 25,
            "nullable": true,
            "type": "string"
          },
          "lastTrackedDetails": {
            "$ref": "#/components/schemas/LastTrackedDetails",
            "nullable": true
          },
          "object": {
            "default": "CaseTrack",
            "description": "Name of the object.",
            "example": "CaseTrack",
            "maxLength": 9,
            "minLength": 9,
            "nullable": false,
            "type": "string"
          },
          "pacerOptions": {
            "$ref": "#/components/schemas/CaseUpdatePacerOptionsResponse"
          },
          "schedule": {
            "$ref": "#/components/schemas/Schedule"
          }
        },
        "required": [
          "object",
          "caseId",
          "pacerOptions",
          "schedule",
          "lastTrackedDetails",
          "lastFetchDate",
          "lastFetchDateWithUpdates",
          "case",
          "caseAPI"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "CaseTrackListResponse": {
        "properties": {
          "caseTrackPreviewArray": {
            "description": "Array of cases tracked.",
            "items": {
              "$ref": "#/components/schemas/CaseTrackPreview"
            },
            "maxItems": 100,
            "minItems": 0,
            "type": "array"
          },
          "nextPageAPI": {
            "description": "Link for the next page.",
            "example": "https://enterpriseapi.unicourt.com/rest/v2/case/caseTrack?pageNumber=2",
            "format": "uri",
            "maxLength": 1024,
            "minLength": 1,
            "nullable": true,
            "type": "string"
          },
          "object": {
            "default": "CaseTrackListResponse",
            "description": "Name of the object.",
            "example": "CaseTrackListResponse",
            "maxLength": 21,
            "minLength": 21,
            "nullable": false,
            "type": "string"
          },
          "pageNumber": {
            "description": "Current page number.",
            "type": "integer"
          },
          "previousPageAPI": {
            "description": "Link for the previous page.",
            "example": null,
            "format": "uri",
            "maxLength": 1024,
            "minLength": 1,
            "nullable": true,
            "type": "string"
          },
          "totalCount": {
            "description": "Total number of case track available.",
            "type": "integer"
          },
          "totalPages": {
            "description": "Total number of pages available.",
            "type": "integer"
          }
        },
        "required": [
          "object",
          "nextPageAPI",
          "previousPageAPI",
          "pageNumber",
          "totalCount",
          "totalPages",
          "caseTrackPreviewArray"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "CaseTrackPreview": {
        "properties": {
          "caseAPI": {
            "example": "https://enterpriseapi.unicourt.com/case/CASEgq222a2d1239af",
            "format": "uri",
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "string"
          },
          "caseId": {
            "description": "Unique Id for a Case in UniCourt.",
            "example": "CASEhq9d8b72d0800c",
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          },
          "lastFetchDate": {
            "description": "The date and time when the case was last fetched from the Court. This date and time is in UTC. Formatted as YYYY-MM-DDTHH:MM:SS+ZZ:zz, Note: It is not necessary that every time the case is fetched from Court we find changes in the case information. It could be that we already have the latest information from the Court and no changes exist.",
            "example": "2020-05-16T11:51:27+00:00",
            "format": "date-time",
            "maxLength": 25,
            "minLength": 25,
            "nullable": true,
            "type": "string"
          },
          "lastFetchDateWithUpdates": {
            "description": "The date and time when the case was last fetched from the Court where we found changes in the case information. This date and time is in UTC. Formatted as YYYY-MM-DDTHH:MM:SS+ZZ:zz,",
            "example": "2020-05-16T11:51:27+00:00",
            "format": "date-time",
            "maxLength": 25,
            "minLength": 25,
            "nullable": true,
            "type": "string"
          },
          "lastTrackedDetails": {
            "$ref": "#/components/schemas/LastTrackedDetails",
            "nullable": true
          },
          "object": {
            "default": "CaseTrackPreview",
            "description": "Name of the object.",
            "example": "CaseTrackPreview",
            "maxLength": 16,
            "minLength": 16,
            "nullable": false,
            "type": "string"
          },
          "pacerOptions": {
            "$ref": "#/components/schemas/CaseUpdatePacerOptionsResponse"
          },
          "schedule": {
            "$ref": "#/components/schemas/Schedule"
          }
        },
        "required": [
          "object",
          "caseId",
          "pacerOptions",
          "schedule",
          "lastTrackedDetails",
          "lastFetchDate",
          "lastFetchDateWithUpdates",
          "caseAPI"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "CaseTrackRequest": {
        "properties": {
          "caseTrackParams": {
            "$ref": "#/components/schemas/CaseUpdateRequest"
          },
          "schedule": {
            "$ref": "#/components/schemas/CaseTrackSchedule"
          }
        },
        "required": [
          "caseTrackParams",
          "schedule"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "CaseTrackSchedule": {
        "properties": {
          "days": {
            "description": "[] -> if schedule type is daily <br>\n1-7 -> if schedule type is weekly <br>\n1-31 -> if schedule type is monthly\n",
            "example": [
              1,
              3,
              5
            ],
            "items": {
              "type": "integer"
            },
            "type": "array"
          },
          "type": {
            "enum": [
              "daily",
              "weekly",
              "monthly"
            ],
            "example": "weekly",
            "maxLength": 7,
            "minLength": 5,
            "nullable": false,
            "type": "string"
          }
        },
        "required": [
          "type",
          "days"
        ],
        "title": "Schedule",
        "type": "object",
        "x-unicourt-container": false
      },
      "CaseType": {
        "nullable": true,
        "properties": {
          "areaOfLaw": {
            "example": "Tax and Revenue",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "type": "string"
          },
          "areaOfLawId": {
            "example": "AOFLGAd9Ah5qkTRNw9",
            "maxLength": 18,
            "minLength": 18,
            "nullable": true,
            "type": "string"
          },
          "caseClass": {
            "example": "Civil",
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "string"
          },
          "caseClassId": {
            "example": "CSCLNjbKTN7Yfo2wdb",
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          },
          "caseTypeGroup": {
            "example": "Tax and Revenue",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "type": "string"
          },
          "caseTypeGroupId": {
            "example": "CTYGSpWaVityBQndsv",
            "maxLength": 18,
            "minLength": 18,
            "nullable": true,
            "type": "string"
          },
          "caseTypeId": {
            "example": "CTYPoLU7sWaGjWtkBx",
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          },
          "caseTypeTag": {
            "example": null,
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "type": "string"
          },
          "createdDate": {
            "description": "The date and time when it was first created. This date and time is in UTC. Formatted as YYYY-MM-DD HH:MM:SS.",
            "example": "2020-05-07T10:17:56+00:00",
            "format": "date-time",
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "string"
          },
          "name": {
            "example": "Tax Claim",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "type": "string"
          },
          "object": {
            "default": "CaseType",
            "example": "CaseType",
            "maxLength": 8,
            "minLength": 8,
            "nullable": false,
            "type": "string"
          },
          "saliCode": {
            "example": "TAXR",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "type": "string"
          }
        },
        "required": [
          "object",
          "caseTypeId",
          "caseClassId",
          "areaOfLawId",
          "caseTypeGroupId",
          "caseClass",
          "areaOfLaw",
          "caseTypeGroup",
          "name",
          "saliCode",
          "caseTypeTag",
          "createdDate"
        ],
        "title": "CaseType",
        "type": "object",
        "x-unicourt-container": false
      },
      "CaseTypeGroup": {
        "properties": {
          "areaOfLaw": {
            "example": "Tax and Revenue",
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "string"
          },
          "areaOfLawId": {
            "example": "AOFLGAd9Ah5qkTRNw9",
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          },
          "caseClass": {
            "example": "Civil",
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "string"
          },
          "caseClassId": {
            "example": "CSCLNjbKTN7Yfo2wdb",
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          },
          "caseTypeGroupId": {
            "example": "CTYGSpWaVityBQndsv",
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          },
          "createdDate": {
            "description": "The date and time when it was first created. This date and time is in UTC. Formatted as YYYY-MM-DD HH:MM:SS.",
            "example": "2020-05-07T10:17:56+00:00",
            "format": "date-time",
            "maxLength": 25,
            "minLength": 25,
            "nullable": false,
            "type": "string"
          },
          "name": {
            "example": "Tax and Revenue",
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "string"
          },
          "object": {
            "default": "CaseTypeGroup",
            "example": "CaseTypeGroup",
            "maxLength": 13,
            "minLength": 13,
            "nullable": false,
            "type": "string"
          }
        },
        "required": [
          "object",
          "caseTypeGroupId",
          "caseClassId",
          "areaOfLawId",
          "caseClass",
          "areaOfLaw",
          "name",
          "createdDate"
        ],
        "title": "CaseTypeGroup",
        "type": "object",
        "x-unicourt-container": false
      },
      "CaseTypeGroupResponse": {
        "properties": {
          "caseTypeGroupArray": {
            "items": {
              "$ref": "#/components/schemas/CaseTypeGroup"
            },
            "maxLength": 100,
            "type": "array"
          },
          "nextPageAPI": {
            "description": "Link to next page.",
            "example": null,
            "format": "uri",
            "maxLength": 2144,
            "minLength": 1,
            "nullable": true,
            "type": "string"
          },
          "object": {
            "default": "CaseTypeGroupResponse",
            "example": "CaseTypeGroupResponse",
            "maxLength": 21,
            "minLength": 21,
            "nullable": false,
            "type": "string"
          },
          "pageNumber": {
            "description": "Page number for which results where obtained.",
            "example": 1,
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "integer"
          },
          "previousPageAPI": {
            "description": "Link to previous page.",
            "example": null,
            "format": "uri",
            "maxLength": 2143,
            "minLength": 1,
            "nullable": true,
            "type": "string"
          },
          "totalCount": {
            "description": "Total number of matches found.",
            "example": 1,
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "integer"
          },
          "totalPages": {
            "description": "Total number of pages to obtain all the objects.",
            "example": 1,
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "integer"
          }
        },
        "required": [
          "object",
          "caseTypeGroupArray",
          "nextPageAPI",
          "previousPageAPI",
          "pageNumber",
          "totalPages",
          "totalCount"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "CaseTypeResponse": {
        "properties": {
          "caseTypeArray": {
            "items": {
              "$ref": "#/components/schemas/CaseType"
            },
            "maxLength": 100,
            "type": "array"
          },
          "nextPageAPI": {
            "description": "Link to next page.",
            "example": null,
            "format": "uri",
            "maxLength": 2139,
            "minLength": 1,
            "nullable": true,
            "type": "string"
          },
          "object": {
            "default": "CaseTypeResponse",
            "example": "CaseTypeResponse",
            "maxLength": 16,
            "minLength": 16,
            "nullable": false,
            "type": "string"
          },
          "pageNumber": {
            "description": "Page number for which results where obtained.",
            "example": 1,
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "integer"
          },
          "previousPageAPI": {
            "description": "Link to previous page.",
            "example": null,
            "format": "uri",
            "maxLength": 2138,
            "minLength": 1,
            "nullable": true,
            "type": "string"
          },
          "totalCount": {
            "description": "Total number of matches found.",
            "example": 1,
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "integer"
          },
          "totalPages": {
            "description": "Total number of pages to obtain all the objects.",
            "example": 1,
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "integer"
          }
        },
        "required": [
          "object",
          "caseTypeArray",
          "nextPageAPI",
          "previousPageAPI",
          "pageNumber",
          "totalPages",
          "totalCount"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "CaseUpdate": {
        "properties": {
          "case": {
            "$ref": "#/components/schemas/Case"
          },
          "caseAPI": {
            "example": "https://enterpriseapi.unicourt.com/case/CASEgq222a2d1239af",
            "format": "uri",
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "string"
          },
          "caseId": {
            "description": "Unique Id for a Case in UniCourt.",
            "example": "CASEhq9d8b72d0800c",
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          },
          "exception": {
            "$ref": "#/components/schemas/Exception"
          },
          "object": {
            "default": "CaseUpdate",
            "description": "Name of the object.",
            "example": "CaseUpdate",
            "maxLength": 10,
            "minLength": 10,
            "nullable": false,
            "type": "string"
          },
          "pacerOptions": {
            "$ref": "#/components/schemas/CaseUpdatePacerOptionsResponse"
          },
          "requestedDate": {
            "description": "The date and time when the case was last requested for update ",
            "example": "2020-05-16T11:51:27+00:00",
            "format": "date-time",
            "maxLength": 25,
            "minLength": 25,
            "nullable": false,
            "type": "string"
          },
          "status": {
            "description": "Status of the request.",
            "enum": [
              "COMPLETE",
              "FAILURE",
              "IN_PROGRESS"
            ],
            "example": "COMPLETE",
            "maxLength": 11,
            "minLength": 7,
            "nullable": false,
            "type": "string"
          }
        },
        "required": [
          "object",
          "caseId",
          "status",
          "requestedDate",
          "case",
          "caseAPI",
          "pacerOptions",
          "exception"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "CaseUpdateListResponse": {
        "properties": {
          "caseUpdatePreviewArray": {
            "description": "Array of case update objects.",
            "items": {
              "$ref": "#/components/schemas/CaseUpdatePreview"
            },
            "maxItems": 100,
            "minItems": 0,
            "type": "array"
          },
          "nextPageAPI": {
            "description": "Link for the next page.",
            "example": null,
            "format": "uri",
            "maxLength": 1024,
            "minLength": 1,
            "nullable": true,
            "type": "string"
          },
          "object": {
            "default": "CaseUpdateListResponse",
            "description": "Name of the object.",
            "example": "CaseUpdateListResponse",
            "maxLength": 22,
            "minLength": 22,
            "nullable": false,
            "type": "string"
          },
          "pageNumber": {
            "description": "Current page number.",
            "example": 1,
            "type": "integer"
          },
          "previousPageAPI": {
            "description": "Link for the previous page.",
            "example": null,
            "format": "uri",
            "maxLength": 1024,
            "minLength": 1,
            "nullable": true,
            "type": "string"
          },
          "totalCount": {
            "description": "Total number of case update objects available.",
            "example": 1,
            "type": "integer"
          },
          "totalPages": {
            "description": "Total number of pages available.",
            "example": 1,
            "type": "integer"
          }
        },
        "required": [
          "object",
          "nextPageAPI",
          "previousPageAPI",
          "pageNumber",
          "totalCount",
          "totalPages",
          "caseUpdatePreviewArray"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "CaseUpdatePacerOptions": {
        "description": "Applicable for PACER cases.",
        "properties": {
          "additionalPageArray": {
            "description": "Currently this option is only applicable for Federal PACER cases. The default behavior of the Case Update is to fetch the Docket Report from PACER which includes the parties and attorneys too.\n\nHowever if you need to fetch information for other pages in PACER you will need to specify it here.\n- associatedCases:\n> This will fetch the Associated Cases page in PACER if available. This page consists of related cases especially applicable for Multi-District Litigation cases and Member Cases. Including this option will internally link all related cases in our system. Data from this page will be available via the Related Cases API.\n- caseSummary:\n> This will fetch the Case Summary page in PACER if available. This page consists of additional case info which is not present in the Docket Report page. Data from this page will be structured and available as response in the Case API’s ```additional_info``` field.\n- listOfCreditors:\n> This page will fetch the “List Of Creditors” page for PACER Bankruptcy cases of case type \"bk\". Note that this page cannot be extracted for Bankruptcy cases of case type \"ap\" (Adversary Proceedings). This page consists of the Creditor information like the name and address of the Creditors. Data from this page will be structured and available as response in the Case API.\n",
            "example": [
              {
                "fetchIfOlderThanDays": 30,
                "page": "associatedCases"
              },
              {
                "fetchIfOlderThanDays": 15,
                "page": "caseSummary"
              },
              {
                "fetchIfOlderThanDays": 15,
                "page": "listOfCreditors"
              }
            ],
            "items": {
              "properties": {
                "fetchIfOlderThanDays": {
                  "default": 0,
                  "description": "You can limit how often this page information is fetched to reduce your PACER fees.\n\nMin days is 0 and Max days is 100.\n\nExample:\n1.  Specifying a value of 0 ensures that this page is fetched from PACER for this case update irrespective of when the page was last fetched.\n2.  Specifying a value of 30 ensures that this page is fetched from PACER for this case update only if the last fetch was older than 30 days.\n",
                  "example": 30,
                  "maximum": 100,
                  "minimum": 0,
                  "type": "integer"
                },
                "page": {
                  "enum": [
                    "associatedCases",
                    "caseSummary",
                    "listOfCreditors"
                  ],
                  "example": "caseSummary",
                  "maxLength": 15,
                  "minLength": 11,
                  "nullable": false,
                  "type": "string"
                }
              },
              "type": "object"
            },
            "nullable": true,
            "type": "array"
          },
          "fetchParticipantsIfOlderThanDays": {
            "default": 0,
            "description": "**Currently this option is only applicable for Federal PACER cases. You can limit how often parties and attorneys for a PACER case are fetched to reduce your PACER fees. If you are tracking cases daily or hourly you could easily end up with a large PACER bill.**\n\n**Use Case: Cases are typically updated to check for new docket entry filings. However every update to PACER case costs money. Participants for a case change less often than docket entry filings. So fetching participants for every update might result in unnecessary PACER costs; especially on cases which have a lot of parties and attorneys. So instead of getting charged the minimum cost of $0.10 for an update which might have had few docket entries, you could end up spending $3 for every update because there were a lot of parties for that case that were also fetched.**\n\n**With this option you can choose when to fetch parties for case based on when was it last fetched.**\nYou can limit how often this participants are fetched in a PACER case to keep your PACER costs under control.\n\nMin days is 0 and Max days is 100.\n\nExample:\n1.  Specifying a value of 0 ensures that participants are fetched from PACER for this case update irrespective of when the participants were last fetched.\n2.  Specifying a value of 30 ensures that participants are fetched from PACER for this case update only if the last fetch was older than 30 days.\n",
            "example": 30,
            "maximum": 100,
            "minimum": 0,
            "type": "integer"
          },
          "pacerClientCode": {
            "description": "PACER Client Code. This is mandatory if your setting in PACER website is set to True for required client code.",
            "example": "Test UniCourt API",
            "maxLength": 32,
            "minLength": 0,
            "nullable": true,
            "type": "string"
          },
          "pacerUserId": {
            "description": "**Your PACER credentials username. This is mandatory when a PACER Case is being requested in the API. For Non PACER cases this is not mandatory. Suppose your request consists of Non PACER and PACER Cases then this needs to be passed becuase you are requesting a PACER case too.**",
            "example": "URKYwer3tyh5r56gq2",
            "maxLength": 40,
            "minLength": 6,
            "nullable": false,
            "type": "string"
          },
          "refreshType": {
            "default": "fetchNewDocketEntries",
            "description": "This flag determines whether to pull only new or pull all the docket entries for a PACER case being requested.\n\nOnly one of the two values is allowed:\n-   fetchNewDocketEntries:\n    >   Updates the PACER case with only new docket entries that have been added after the previous update of the case being requested.\n-   fetchAllDocketEntries:\n    >   Updates the PACER case by re-parsing all dockets from #1 till latest docket entry available.\n",
            "enum": [
              "fetchNewDocketEntries",
              "fetchAllDocketEntries"
            ],
            "example": "fetchNewDocketEntries",
            "maxLength": 21,
            "minLength": 21,
            "nullable": true,
            "type": "string"
          }
        },
        "required": [
          "pacerUserId"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "CaseUpdatePacerOptionsResponse": {
        "description": "Applicable for PACER cases.",
        "nullable": true,
        "properties": {
          "additionalPageArray": {
            "description": "Currently this option is only applicable for Federal PACER cases. The default behavior of the Case Update is to fetch the Docket Report from PACER which includes the parties and attorneys too.\n\nHowever if you need to fetch information for other pages in PACER you will need to specify it here.\n- associatedCases:\n> This will fetch the Associated Cases page in PACER if available. This page consists of related cases especially applicable for Multi-District Litigation cases and Member Cases. Including this option will internally link all related cases in our system. Data from this page will be available via the Related Cases API.\n- caseSummary:\n> This will fetch the Case Summary page in PACER if available. This page consists of additional case info which is not present in the Docket Report page. Data from this page will be structured and available as response in the Case API’s ```additional_info``` field.\n- listOfCreditors:\n> This page will fetch the “List Of Creditors” page for PACER Bankruptcy cases of case type \"bk\". Note that this page cannot be extracted for Bankruptcy cases of case type \"ap\" (Adversary Proceedings). This page consists of the Creditor information like the name and address of the Creditors. Data from this page will be structured and available as response in the Case API.\n",
            "example": [
              {
                "fetchIfOlderThanDays": 30,
                "page": "associatedCases"
              },
              {
                "fetchIfOlderThanDays": 15,
                "page": "caseSummary"
              },
              {
                "fetchIfOlderThanDays": 15,
                "page": "listOfCreditors"
              }
            ],
            "items": {
              "properties": {
                "fetchIfOlderThanDays": {
                  "default": 0,
                  "description": "You can limit how often this page information is fetched to reduce your PACER fees.\n\nMin days is 0 and Max days is 100.\n\nExample:\n1.  Specifying a value of 0 ensures that this page is fetched from PACER for this case update irrespective of when the page was last fetched.\n2.  Specifying a value of 30 ensures that this page is fetched from PACER for this case update only if the last fetch was older than 30 days.\n",
                  "example": 30,
                  "maximum": 100,
                  "minimum": 0,
                  "type": "integer"
                },
                "page": {
                  "enum": [
                    "associatedCases",
                    "caseSummary",
                    "listOfCreditors"
                  ],
                  "example": "caseSummary",
                  "maxLength": 15,
                  "minLength": 11,
                  "nullable": false,
                  "type": "string"
                }
              },
              "type": "object"
            },
            "nullable": true,
            "type": "array"
          },
          "fetchParticipantsIfOlderThanDays": {
            "default": 0,
            "description": "**Currently this option is only applicable for Federal PACER cases. You can limit how often parties and attorneys for a PACER case are fetched to reduce your PACER fees. If you are tracking cases daily or hourly you could easily end up with a large PACER bill.**\n\n**Use Case: Cases are typically updated to check for new docket entry filings. However every update to PACER case costs money. Participants for a case change less often than docket entry filings. So fetching participants for every update might result in unnecessary PACER costs; especially on cases which have a lot of parties and attorneys. So instead of getting charged the minimum cost of $0.10 for an update which might have had few docket entries, you could end up spending $3 for every update because there were a lot of parties for that case that were also fetched.**\n\n**With this option you can choose when to fetch parties for case based on when was it last fetched.**\nYou can limit how often this participants are fetched in a PACER case to keep your PACER costs under control.\n\nMin days is 0 and Max days is 100.\n\nExample:\n1.  Specifying a value of 0 ensures that participants are fetched from PACER for this case update irrespective of when the participants were last fetched.\n2.  Specifying a value of 30 ensures that participants are fetched from PACER for this case update only if the last fetch was older than 30 days.\n",
            "example": 30,
            "maximum": 100,
            "minimum": 0,
            "type": "integer"
          },
          "object": {
            "default": "CaseUpdatePacerOptionsResponse",
            "description": "Name of the object.",
            "example": "CaseUpdatePacerOptionsResponse",
            "maxLength": 30,
            "minLength": 30,
            "nullable": false,
            "type": "string"
          },
          "pacerClientCode": {
            "description": "PACER Client Code. This is mandatory if your setting in PACER website is set to True for required client code.",
            "example": "Test UniCourt API",
            "maxLength": 32,
            "minLength": 0,
            "nullable": true,
            "type": "string"
          },
          "pacerUserId": {
            "description": "**Your PACER credentials username. This is mandatory when a PACER Case is being requested in the API. For Non PACER cases this is not mandatory. Suppose your request consists of Non PACER and PACER Cases then this needs to be passed becuase you are requesting a PACER case too.**",
            "example": "URKYwer3tyh5r56gq2",
            "maxLength": 40,
            "minLength": 6,
            "nullable": false,
            "type": "string"
          },
          "refreshType": {
            "default": "fetchNewDocketEntries",
            "description": "This flag determines whether to pull only new or pull all the docket entries for a PACER case being requested.\n\nOnly one of the two values is allowed:\n-   fetchNewDocketEntries:\n    >   Updates the PACER case with only new docket entries that have been added after the previous update of the case being requested.\n-   fetchAllDocketEntries:\n    >   Updates the PACER case by re-parsing all dockets from #1 till latest docket entry available.\n",
            "enum": [
              "fetchNewDocketEntries",
              "fetchAllDocketEntries"
            ],
            "example": "fetchNewDocketEntries",
            "maxLength": 21,
            "minLength": 21,
            "nullable": true,
            "type": "string"
          }
        },
        "required": [
          "object",
          "pacerUserId",
          "pacerClientCode",
          "fetchParticipantsIfOlderThanDays",
          "refreshType",
          "additionalPageArray"
        ],
        "title": "CaseUpdatePacerOptionsResponse",
        "type": "object",
        "x-unicourt-container": false
      },
      "CaseUpdatePreview": {
        "properties": {
          "caseAPI": {
            "example": "https://enterpriseapi.unicourt.com/case/CASEgq222a2d1239af",
            "format": "uri",
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "string"
          },
          "caseId": {
            "description": "Unique Id for a Case in UniCourt.",
            "example": "CASEhq9d8b72d0800c",
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          },
          "exception": {
            "$ref": "#/components/schemas/Exception"
          },
          "object": {
            "default": "CaseUpdatePreview",
            "description": "Name of the object.",
            "example": "CaseUpdatePreview",
            "maxLength": 17,
            "minLength": 17,
            "nullable": false,
            "type": "string"
          },
          "pacerOptions": {
            "$ref": "#/components/schemas/CaseUpdatePacerOptionsResponse"
          },
          "requestedDate": {
            "description": "The date and time when the case was last requested for update ",
            "example": "2020-05-16T11:51:27+00:00",
            "format": "date-time",
            "maxLength": 25,
            "minLength": 25,
            "nullable": false,
            "type": "string"
          },
          "status": {
            "description": "Status of the request.",
            "enum": [
              "COMPLETE",
              "FAILURE",
              "IN_PROGRESS"
            ],
            "example": "COMPLETE",
            "maxLength": 11,
            "minLength": 7,
            "nullable": false,
            "type": "string"
          }
        },
        "required": [
          "object",
          "caseId",
          "status",
          "requestedDate",
          "caseAPI",
          "pacerOptions",
          "exception"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "CaseUpdateRequest": {
        "properties": {
          "caseId": {
            "description": "UniCourt's Case Id for update.",
            "example": "CASEhq9d8b72d0800c",
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          },
          "pacerOptions": {
            "$ref": "#/components/schemas/CaseUpdatePacerOptions"
          }
        },
        "required": [
          "caseId"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "CauseOfAction": {
        "nullable": true,
        "properties": {
          "causeOfActionGroup": {
            "example": "Consumer Credit and Unfair Debt Collection Claims",
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "string"
          },
          "causeOfActionGroupId": {
            "example": "CAGPiHoKn66p3bkcNs",
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          },
          "causeOfActionId": {
            "example": "CATNiHoKn66p3bkcNs",
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          },
          "createdDate": {
            "description": "The date and time when it was first created. This date and time is in UTC. Formatted as YYYY-MM-DD HH:MM:SS.",
            "example": "2020-05-07T10:17:56+00:00",
            "format": "date-time",
            "maxLength": 25,
            "minLength": 25,
            "nullable": false,
            "type": "string"
          },
          "name": {
            "example": "Fair Credit Reporting Claim",
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "string"
          },
          "object": {
            "default": "CauseOfAction",
            "example": "CauseOfAction",
            "maxLength": 13,
            "minLength": 13,
            "nullable": false,
            "type": "string"
          }
        },
        "required": [
          "object",
          "causeOfActionId",
          "causeOfActionGroup",
          "causeOfActionGroupId",
          "name",
          "createdDate"
        ],
        "title": "CauseOfAction",
        "type": "object",
        "x-unicourt-container": false
      },
      "CauseOfActionAdditionalData": {
        "properties": {
          "causeOfActionAdditionalDataId": {
            "example": "CAADiHoKn66p3bkcNs",
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          },
          "createdDate": {
            "description": "The date and time when it was first created. This date and time is in UTC. Formatted as YYYY-MM-DD HH:MM:SS.",
            "example": "2020-05-07T10:17:56+00:00",
            "format": "date-time",
            "maxLength": 25,
            "minLength": 25,
            "nullable": false,
            "type": "string"
          },
          "object": {
            "default": "CauseOfActionAdditionalData",
            "example": "CauseOfActionAdditionalData",
            "maxLength": 27,
            "minLength": 27,
            "nullable": false,
            "type": "string"
          },
          "type": {
            "example": "ActName",
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "string"
          },
          "value": {
            "example": "Fair Credit Reporting Act",
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "string"
          }
        },
        "required": [
          "object",
          "causeOfActionAdditionalDataId",
          "type",
          "value",
          "createdDate"
        ],
        "title": "CauseOfActionAdditionalData",
        "type": "object",
        "x-unicourt-container": false
      },
      "CauseOfActionAdditionalDataResponse": {
        "properties": {
          "causeOfActionAdditionalDataArray": {
            "items": {
              "$ref": "#/components/schemas/CauseOfActionAdditionalData"
            },
            "maxLength": 100,
            "type": "array"
          },
          "nextPageAPI": {
            "description": "Link to next page.",
            "example": null,
            "format": "uri",
            "maxLength": 2160,
            "minLength": 1,
            "nullable": true,
            "type": "string"
          },
          "object": {
            "default": "CauseOfActionAdditionalDataResponse",
            "example": "CauseOfActionAdditionalDataResponse",
            "maxLength": 35,
            "minLength": 35,
            "nullable": false,
            "type": "string"
          },
          "pageNumber": {
            "description": "Page number for which results where obtained.",
            "example": 1,
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "integer"
          },
          "previousPageAPI": {
            "description": "Link to previous page.",
            "example": null,
            "format": "uri",
            "maxLength": 2159,
            "minLength": 1,
            "nullable": true,
            "type": "string"
          },
          "totalCount": {
            "description": "Total number of matches found.",
            "example": 1,
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "integer"
          },
          "totalPages": {
            "description": "Total number of pages to obtain all the objects.",
            "example": 1,
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "integer"
          }
        },
        "required": [
          "object",
          "causeOfActionAdditionalDataArray",
          "nextPageAPI",
          "previousPageAPI",
          "pageNumber",
          "totalPages",
          "totalCount"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "CauseOfActionGroup": {
        "properties": {
          "causeOfActionGroupId": {
            "example": "CAGPiHoKn66p3bkcNs",
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          },
          "createdDate": {
            "description": "The date and time when it was first created. This date and time is in UTC. Formatted as YYYY-MM-DD HH:MM:SS.",
            "example": "2020-05-07T10:17:56+00:00",
            "format": "date-time",
            "maxLength": 25,
            "minLength": 25,
            "nullable": false,
            "type": "string"
          },
          "name": {
            "example": "Consumer Credit and Unfair Debt Collection Claims",
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "string"
          },
          "object": {
            "default": "CauseOfActionGroup",
            "example": "CauseOfActionGroup",
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          }
        },
        "required": [
          "object",
          "causeOfActionGroupId",
          "name",
          "createdDate"
        ],
        "title": "CauseOfActionGroup",
        "type": "object",
        "x-unicourt-container": false
      },
      "CauseOfActionGroupResponse": {
        "properties": {
          "causeOfActionGroupArray": {
            "items": {
              "$ref": "#/components/schemas/CauseOfActionGroup"
            },
            "maxLength": 100,
            "type": "array"
          },
          "nextPageAPI": {
            "description": "Link to next page.",
            "example": null,
            "format": "uri",
            "maxLength": 2151,
            "minLength": 1,
            "nullable": true,
            "type": "string"
          },
          "object": {
            "default": "CauseOfActionGroupResponse",
            "example": "CauseOfActionGroupResponse",
            "maxLength": 26,
            "minLength": 26,
            "nullable": false,
            "type": "string"
          },
          "pageNumber": {
            "description": "Page number for which results where obtained.",
            "example": 1,
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "integer"
          },
          "previousPageAPI": {
            "description": "Link to previous page.",
            "example": null,
            "format": "uri",
            "maxLength": 2150,
            "minLength": 1,
            "nullable": true,
            "type": "string"
          },
          "totalCount": {
            "description": "Total number of matches found.",
            "example": 1,
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "integer"
          },
          "totalPages": {
            "description": "Total number of pages to obtain all the objects.",
            "example": 1,
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "integer"
          }
        },
        "required": [
          "object",
          "causeOfActionGroupArray",
          "nextPageAPI",
          "previousPageAPI",
          "pageNumber",
          "totalPages",
          "totalCount"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "CauseOfActionResponse": {
        "properties": {
          "causeOfActionArray": {
            "items": {
              "$ref": "#/components/schemas/CauseOfAction"
            },
            "maxLength": 100,
            "type": "array"
          },
          "nextPageAPI": {
            "description": "Link to next page.",
            "example": null,
            "format": "uri",
            "maxLength": 2146,
            "minLength": 1,
            "nullable": true,
            "type": "string"
          },
          "object": {
            "default": "CauseOfActionResponse",
            "example": "CauseOfActionResponse",
            "maxLength": 21,
            "minLength": 21,
            "nullable": false,
            "type": "string"
          },
          "pageNumber": {
            "description": "Page number for which results where obtained.",
            "example": 1,
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "integer"
          },
          "previousPageAPI": {
            "description": "Link to previous page.",
            "example": null,
            "format": "uri",
            "maxLength": 2145,
            "minLength": 1,
            "nullable": true,
            "type": "string"
          },
          "totalCount": {
            "description": "Total number of matches found.",
            "example": 1,
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "integer"
          },
          "totalPages": {
            "description": "Total number of pages to obtain all the objects.",
            "example": 1,
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "integer"
          }
        },
        "required": [
          "object",
          "causeOfActionArray",
          "nextPageAPI",
          "previousPageAPI",
          "pageNumber",
          "totalPages",
          "totalCount"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "Charge": {
        "nullable": true,
        "properties": {
          "chargeGroup": {
            "example": "Burglary",
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "string"
          },
          "chargeGroupId": {
            "example": "CHGPiHoKn66p3bkcNs",
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          },
          "chargeId": {
            "example": "CHRGiHoKn66p3bkcNs",
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          },
          "createdDate": {
            "description": "The date and time when it was first created. This date and time is in UTC. Formatted as YYYY-MM-DD HH:MM:SS.",
            "example": "2020-05-07T10:17:56+00:00",
            "format": "date-time",
            "maxLength": 25,
            "minLength": 25,
            "nullable": false,
            "type": "string"
          },
          "name": {
            "example": "Assault Battery",
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "string"
          },
          "object": {
            "default": "Charge",
            "example": "Charge",
            "maxLength": 6,
            "minLength": 6,
            "nullable": false,
            "type": "string"
          }
        },
        "required": [
          "object",
          "chargeId",
          "chargeGroupId",
          "chargeGroup",
          "name",
          "createdDate"
        ],
        "title": "Charge",
        "type": "object",
        "x-unicourt-container": false
      },
      "ChargeAdditionalData": {
        "properties": {
          "chargeAdditionalDataId": {
            "example": "CHADiHoKn66p3bkcNs",
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          },
          "createdDate": {
            "description": "The date and time when it was first created. This date and time is in UTC. Formatted as YYYY-MM-DD HH:MM:SS.",
            "example": "2020-05-07T10:17:56+00:00",
            "format": "date-time",
            "maxLength": 25,
            "minLength": 25,
            "nullable": false,
            "type": "string"
          },
          "object": {
            "default": "ChargeAdditionalData",
            "example": "ChargeAdditionalData",
            "maxLength": 20,
            "minLength": 20,
            "nullable": false,
            "type": "string"
          },
          "type": {
            "example": "AgeModifier",
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "string"
          },
          "value": {
            "example": "Under 21",
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "string"
          }
        },
        "required": [
          "object",
          "chargeAdditionalDataId",
          "type",
          "value",
          "createdDate"
        ],
        "title": "ChargeAdditionalData",
        "type": "object",
        "x-unicourt-container": false
      },
      "ChargeAdditionalDataResponse": {
        "properties": {
          "chargeAdditionalDataArray": {
            "items": {
              "$ref": "#/components/schemas/ChargeAdditionalData"
            },
            "maxLength": 100,
            "type": "array"
          },
          "nextPageAPI": {
            "description": "Link to next page.",
            "example": null,
            "format": "uri",
            "maxLength": 2153,
            "minLength": 1,
            "nullable": true,
            "type": "string"
          },
          "object": {
            "default": "ChargeAdditionalDataResponse",
            "example": "ChargeAdditionalDataResponse",
            "maxLength": 28,
            "minLength": 28,
            "nullable": false,
            "type": "string"
          },
          "pageNumber": {
            "description": "Page number for which results where obtained.",
            "example": 1,
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "integer"
          },
          "previousPageAPI": {
            "description": "Link to previous page.",
            "example": null,
            "format": "uri",
            "maxLength": 2152,
            "minLength": 1,
            "nullable": true,
            "type": "string"
          },
          "totalCount": {
            "description": "Total number of matches found.",
            "example": 1,
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "integer"
          },
          "totalPages": {
            "description": "Total number of pages to obtain all the objects.",
            "example": 1,
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "integer"
          }
        },
        "required": [
          "object",
          "chargeAdditionalDataArray",
          "nextPageAPI",
          "previousPageAPI",
          "pageNumber",
          "totalPages",
          "totalCount"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "ChargeDegree": {
        "nullable": true,
        "properties": {
          "chargeDegreeId": {
            "example": "CHDGiHoKn66p3bkcNs",
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          },
          "createdDate": {
            "description": "The date and time when it was first created. This date and time is in UTC. Formatted as YYYY-MM-DD HH:MM:SS.",
            "example": "2020-05-07T10:17:56+00:00",
            "format": "date-time",
            "maxLength": 25,
            "minLength": 25,
            "nullable": false,
            "type": "string"
          },
          "name": {
            "example": "Burglary",
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "string"
          },
          "object": {
            "default": "ChargeDegree",
            "example": "ChargeDegree",
            "maxLength": 12,
            "minLength": 12,
            "nullable": false,
            "type": "string"
          }
        },
        "required": [
          "object",
          "chargeDegreeId",
          "name",
          "createdDate"
        ],
        "title": "ChargeDegree",
        "type": "object",
        "x-unicourt-container": false
      },
      "ChargeDegreeResponse": {
        "properties": {
          "chargeDegreeArray": {
            "items": {
              "$ref": "#/components/schemas/ChargeDegree"
            },
            "maxLength": 100,
            "type": "array"
          },
          "nextPageAPI": {
            "description": "Link to next page.",
            "example": null,
            "format": "uri",
            "maxLength": 2160,
            "minLength": 1,
            "nullable": true,
            "type": "string"
          },
          "object": {
            "default": "ChargeDegreeResponse",
            "example": "ChargeDegreeResponse",
            "maxLength": 20,
            "minLength": 20,
            "nullable": false,
            "type": "string"
          },
          "pageNumber": {
            "description": "Page number for which results where obtained.",
            "example": 1,
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "integer"
          },
          "previousPageAPI": {
            "description": "Link to previous page.",
            "example": null,
            "format": "uri",
            "maxLength": 2159,
            "minLength": 1,
            "nullable": true,
            "type": "string"
          },
          "totalCount": {
            "description": "Total number of matches found.",
            "example": 1,
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "integer"
          },
          "totalPages": {
            "description": "Total number of pages to obtain all the objects.",
            "example": 1,
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "integer"
          }
        },
        "required": [
          "object",
          "chargeDegreeArray",
          "nextPageAPI",
          "previousPageAPI",
          "pageNumber",
          "totalPages",
          "totalCount"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "ChargeGroup": {
        "properties": {
          "chargeGroupId": {
            "example": "CHGPiHoKn66p3bkcNs",
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          },
          "createdDate": {
            "description": "The date and time when it was first created. This date and time is in UTC. Formatted as YYYY-MM-DD HH:MM:SS.",
            "example": "2020-05-07T10:17:56+00:00",
            "format": "date-time",
            "maxLength": 25,
            "minLength": 25,
            "nullable": false,
            "type": "string"
          },
          "name": {
            "example": "Burglary",
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "string"
          },
          "object": {
            "default": "ChargeGroup",
            "example": "ChargeGroup",
            "maxLength": 11,
            "minLength": 11,
            "nullable": false,
            "type": "string"
          }
        },
        "required": [
          "object",
          "chargeGroupId",
          "name",
          "createdDate"
        ],
        "title": "ChargeGroup",
        "type": "object",
        "x-unicourt-container": false
      },
      "ChargeGroupResponse": {
        "properties": {
          "chargeGroupArray": {
            "items": {
              "$ref": "#/components/schemas/ChargeGroup"
            },
            "maxLength": 100,
            "type": "array"
          },
          "nextPageAPI": {
            "description": "Link to next page.",
            "example": null,
            "format": "uri",
            "maxLength": 2142,
            "minLength": 1,
            "nullable": true,
            "type": "string"
          },
          "object": {
            "default": "ChargeGroupResponse",
            "example": "ChargeGroupResponse",
            "maxLength": 19,
            "minLength": 19,
            "nullable": false,
            "type": "string"
          },
          "pageNumber": {
            "description": "Page number for which results where obtained.",
            "example": 1,
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "integer"
          },
          "previousPageAPI": {
            "description": "Link to previous page.",
            "example": null,
            "format": "uri",
            "maxLength": 2141,
            "minLength": 1,
            "nullable": true,
            "type": "string"
          },
          "totalCount": {
            "description": "Total number of matches found.",
            "example": 1,
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "integer"
          },
          "totalPages": {
            "description": "Total number of pages to obtain all the objects.",
            "example": 1,
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "integer"
          }
        },
        "required": [
          "object",
          "chargeGroupArray",
          "nextPageAPI",
          "previousPageAPI",
          "pageNumber",
          "totalPages",
          "totalCount"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "ChargeResponse": {
        "properties": {
          "chargeArray": {
            "items": {
              "$ref": "#/components/schemas/Charge"
            },
            "maxLength": 100,
            "type": "array"
          },
          "nextPageAPI": {
            "description": "Link to next page.",
            "example": null,
            "format": "uri",
            "maxLength": 2137,
            "minLength": 1,
            "nullable": true,
            "type": "string"
          },
          "object": {
            "default": "ChargeResponse",
            "example": "ChargeResponse",
            "maxLength": 14,
            "minLength": 14,
            "nullable": false,
            "type": "string"
          },
          "pageNumber": {
            "description": "Page number for which results where obtained.",
            "example": 1,
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "integer"
          },
          "previousPageAPI": {
            "description": "Link to previous page.",
            "example": null,
            "format": "uri",
            "maxLength": 2136,
            "minLength": 1,
            "nullable": true,
            "type": "string"
          },
          "totalCount": {
            "description": "Total number of matches found.",
            "example": 1,
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "integer"
          },
          "totalPages": {
            "description": "Total number of pages to obtain all the objects.",
            "example": 1,
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "integer"
          }
        },
        "required": [
          "object",
          "chargeArray",
          "nextPageAPI",
          "previousPageAPI",
          "pageNumber",
          "totalPages",
          "totalCount"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "ChargeSeverity": {
        "nullable": true,
        "properties": {
          "chargeSeverityId": {
            "example": "CHSEiHoKn66p3bkcNs",
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          },
          "createdDate": {
            "description": "The date and time when it was first created. This date and time is in UTC. Formatted as YYYY-MM-DD HH:MM:SS.",
            "example": "2020-05-07T10:17:56+00:00",
            "format": "date-time",
            "maxLength": 25,
            "minLength": 25,
            "nullable": false,
            "type": "string"
          },
          "name": {
            "example": "Burglary",
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "string"
          },
          "object": {
            "default": "ChargeSeverity",
            "example": "ChargeSeverity",
            "maxLength": 14,
            "minLength": 14,
            "nullable": false,
            "type": "string"
          }
        },
        "required": [
          "object",
          "chargeSeverityId",
          "name",
          "createdDate"
        ],
        "title": "ChargeSeverity",
        "type": "object",
        "x-unicourt-container": false
      },
      "ChargeSeverityResponse": {
        "properties": {
          "chargeSeverityArray": {
            "items": {
              "$ref": "#/components/schemas/ChargeSeverity"
            },
            "maxLength": 100,
            "type": "array"
          },
          "nextPageAPI": {
            "description": "Link to next page.",
            "example": null,
            "format": "uri",
            "maxLength": 2160,
            "minLength": 1,
            "nullable": true,
            "type": "string"
          },
          "object": {
            "default": "ChargeSeverityResponse",
            "example": "ChargeSeverityResponse",
            "maxLength": 22,
            "minLength": 22,
            "nullable": false,
            "type": "string"
          },
          "pageNumber": {
            "description": "Page number for which results where obtained.",
            "example": 1,
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "integer"
          },
          "previousPageAPI": {
            "description": "Link to previous page.",
            "example": null,
            "format": "uri",
            "maxLength": 2159,
            "minLength": 1,
            "nullable": true,
            "type": "string"
          },
          "totalCount": {
            "description": "Total number of matches found.",
            "example": 1,
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "integer"
          },
          "totalPages": {
            "description": "Total number of pages to obtain all the objects.",
            "example": 1,
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "integer"
          }
        },
        "required": [
          "object",
          "chargeSeverityArray",
          "nextPageAPI",
          "previousPageAPI",
          "pageNumber",
          "totalPages",
          "totalCount"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "Contact": {
        "description": "Contact object data schema.",
        "properties": {
          "addressArray": {
            "description": "List of available addresses.",
            "items": {
              "$ref": "#/components/schemas/Address"
            },
            "nullable": true,
            "type": "array"
          },
          "emailArray": {
            "description": "List of available emails.",
            "items": {
              "$ref": "#/components/schemas/Email"
            },
            "nullable": true,
            "type": "array"
          },
          "object": {
            "default": "Contact",
            "example": "Contact",
            "maxLength": 7,
            "minLength": 7,
            "nullable": false,
            "type": "string"
          },
          "phoneNumberArray": {
            "description": "List of available phone numbers.",
            "items": {
              "$ref": "#/components/schemas/Phone"
            },
            "nullable": true,
            "type": "array"
          }
        },
        "required": [
          "addressArray",
          "phoneNumberArray",
          "emailArray",
          "object"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "Court": {
        "nullable": true,
        "properties": {
          "additionalLevels": {
            "$ref": "#/components/schemas/AdditionalLevels"
          },
          "appealCourtsForCourtAPI": {
            "example": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/appealCourts",
            "format": "uri",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "type": "string",
            "x-logical-reference": "AppealCourtsForCourtByIdAPI"
          },
          "container": {
            "example": null,
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "type": "string"
          },
          "containerType": {
            "example": null,
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "type": "string"
          },
          "courtId": {
            "example": "CORTV4vCEaKrhystBz",
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          },
          "courtLocationsForCourtAPI": {
            "example": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/courtLocations",
            "format": "uri",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "type": "string",
            "x-logical-reference": "CourtLocationsForCourtByIdAPI"
          },
          "courtServiceStatusAPI": {
            "example": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=(Court%3A(courtId%3A%22CORTV4vCEaKrhystBz%22))",
            "format": "uri",
            "maxLength": 2048,
            "minLength": 1,
            "nullable": true,
            "type": "string",
            "x-logical-reference": "CourtServiceStatusListAPI"
          },
          "courtSystemId": {
            "example": "COSYACHBdMewtaG5DY",
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          },
          "courtTypeId": {
            "example": "COTPm8jjc2PAydpFhq",
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          },
          "createdDate": {
            "description": "The date and time when the Court was first created. This date and time is in UTC. Formatted as YYYY-MM-DD HH:MM:SS.",
            "example": "2020-05-07T10:17:56+00:00",
            "format": "date-time",
            "maxLength": 25,
            "minLength": 25,
            "nullable": false,
            "type": "string"
          },
          "jurisdictionGeoForCourtAPI": {
            "example": "https://enterpriseapi.unicourt.com/masterData/court/CORTV4vCEaKrhystBz/jurisdictionGeo",
            "format": "uri",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "type": "string",
            "x-logical-reference": "JurisdictionGeoForCourtByIdAPI"
          },
          "name": {
            "example": "Los Angeles County Superior Court",
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "string"
          },
          "nameAka": {
            "example": "Los Angeles County Superior Court of California",
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "string"
          },
          "object": {
            "default": "Court",
            "example": "Court",
            "maxLength": 5,
            "minLength": 5,
            "nullable": false,
            "type": "string"
          },
          "system": {
            "example": "California Superior Courts",
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "string"
          },
          "type": {
            "example": "State",
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "string"
          }
        },
        "required": [
          "object",
          "courtId",
          "courtTypeId",
          "courtSystemId",
          "type",
          "system",
          "name",
          "nameAka",
          "additionalLevels",
          "container",
          "containerType",
          "createdDate",
          "jurisdictionGeoForCourtAPI",
          "courtLocationsForCourtAPI",
          "appealCourtsForCourtAPI",
          "courtServiceStatusAPI"
        ],
        "title": "Court",
        "type": "object",
        "x-unicourt-container": false
      },
      "CourtCoverage": {
        "nullable": true,
        "properties": {
          "caseClassCoverageArray": {
            "items": {
              "$ref": "#/components/schemas/CaseClassCoverage"
            },
            "type": "array"
          },
          "court": {
            "$ref": "#/components/schemas/Court"
          },
          "lastUpdateCountDate": {
            "description": "Date when it was last updated.",
            "example": "2020-08-05T17:32:28+00:00",
            "maxLength": 25,
            "minLength": 25,
            "nullable": false,
            "type": "string"
          },
          "object": {
            "default": "CourtCoverage",
            "description": "Name of the object",
            "maxLength": 13,
            "minLength": 13,
            "nullable": false,
            "type": "string"
          },
          "totalCaseCount": {
            "description": "Total Cases for a specific court.",
            "example": 1480157,
            "type": "integer"
          },
          "totalCaseDocumentInLibraryCount": {
            "description": "Count of total Case Documents added in UniCourt Library.",
            "example": 25466,
            "type": "integer"
          },
          "totalCaseDocumentInLibraryInLastThirtyDaysCount": {
            "description": "Count of total Case Documents added in UniCourt Library in last 30 days",
            "example": 25466,
            "type": "integer"
          },
          "totalCasesInLastThirtyDaysCount": {
            "description": "Total Cases in last 30 days that were added to UniCourt",
            "example": 8889,
            "type": "integer"
          },
          "totalFreeCaseDocumentCount": {
            "description": "Total Free Case Documents for a specific court.",
            "example": 12545,
            "type": "integer"
          },
          "totalFreeCaseDocumentsInLastThirtyDaysCount": {
            "description": "Total Free Case Documents in last 30 days that were added to UniCourt",
            "example": 125,
            "type": "integer"
          },
          "totalPaidCaseDocumentCount": {
            "description": "Total Paid Case Documents for a specific court.",
            "example": 1480157,
            "type": "integer"
          },
          "totalPaidCaseDocumentsInLastThirtyDaysCount": {
            "description": "Total Paid Case Documents in last 30 days that were added to UniCourt",
            "example": 25466,
            "type": "integer"
          }
        },
        "required": [
          "object",
          "court",
          "lastUpdateCountDate",
          "totalCaseCount",
          "totalCasesInLastThirtyDaysCount",
          "totalFreeCaseDocumentCount",
          "totalFreeCaseDocumentsInLastThirtyDaysCount",
          "totalPaidCaseDocumentCount",
          "totalPaidCaseDocumentsInLastThirtyDaysCount",
          "totalCaseDocumentInLibraryCount",
          "totalCaseDocumentInLibraryInLastThirtyDaysCount",
          "caseClassCoverageArray"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "CourtLocation": {
        "nullable": true,
        "properties": {
          "city": {
            "description": "City",
            "example": "SPOKANE",
            "maxLength": 100,
            "nullable": true,
            "type": "string"
          },
          "courtLocationId": {
            "example": "COLOV75AKgqMqnfVhM",
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          },
          "courtServiceStatusAPI": {
            "example": "https://enterpriseapi.unicourt.com/masterData/courtServiceStatus?q=(CourtLocation%3A(courtLocationId%3A%22COLOV75AKgqMqnfVhM%22))",
            "format": "uri",
            "maxLength": 2048,
            "minLength": 1,
            "nullable": true,
            "type": "string",
            "x-logical-reference": "CourtServiceStatusListAPI"
          },
          "courtsForCourtLocationAPI": {
            "example": "https://enterpriseapi.unicourt.com/masterData/courtLocation/COLOV75AKgqMqnfVhM/courts",
            "format": "uri",
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "string",
            "x-logical-reference": "CourtsForCourtLocationByIdAPI"
          },
          "createdDate": {
            "description": "The date and time when it was first created. This date and time is in UTC. Formatted as YYYY-MM-DD HH:MM:SS.",
            "example": "2020-05-07T10:17:56+00:00",
            "format": "date-time",
            "maxLength": 25,
            "minLength": 25,
            "nullable": false,
            "type": "string"
          },
          "name": {
            "example": "Airport Courthouse",
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "string"
          },
          "object": {
            "default": "CourtLocation",
            "example": "CourtLocation",
            "maxLength": 13,
            "minLength": 13,
            "nullable": false,
            "type": "string"
          },
          "stateName": {
            "default": "UNKNOWN",
            "description": "State Name if present else default value.",
            "example": "NEW YORK",
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "string"
          },
          "streetAddress1": {
            "description": "1st part of the street address.",
            "example": "4407 N DIVISION ST",
            "maxLength": 250,
            "minLength": 1,
            "nullable": true,
            "type": "string"
          },
          "streetAddress2": {
            "description": "2nd part of the street address.",
            "example": "STE 516",
            "maxLength": 150,
            "nullable": true,
            "type": "string"
          }
        },
        "required": [
          "object",
          "courtLocationId",
          "name",
          "streetAddress1",
          "streetAddress2",
          "city",
          "stateName",
          "createdDate",
          "courtsForCourtLocationAPI",
          "courtServiceStatusAPI"
        ],
        "title": "CourtLocation",
        "type": "object",
        "x-unicourt-container": false
      },
      "CourtLocationResponse": {
        "properties": {
          "courtLocationArray": {
            "items": {
              "$ref": "#/components/schemas/CourtLocation"
            },
            "maxLength": 100,
            "type": "array"
          },
          "nextPageAPI": {
            "description": "Link to next page.",
            "example": null,
            "format": "uri",
            "maxLength": 2144,
            "minLength": 1,
            "nullable": true,
            "type": "string"
          },
          "object": {
            "default": "CourtLocationResponse",
            "example": "CourtLocationResponse",
            "maxLength": 21,
            "minLength": 21,
            "nullable": false,
            "type": "string"
          },
          "pageNumber": {
            "description": "Page number for which results where obtained.",
            "example": 1,
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "integer"
          },
          "previousPageAPI": {
            "description": "Link to previous page.",
            "example": null,
            "format": "uri",
            "maxLength": 2143,
            "minLength": 1,
            "nullable": true,
            "type": "string"
          },
          "totalCount": {
            "description": "Total number of matches found.",
            "example": 1,
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "integer"
          },
          "totalPages": {
            "description": "Total number of pages to obtain all the objects.",
            "example": 1,
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "integer"
          }
        },
        "required": [
          "object",
          "courtLocationArray",
          "nextPageAPI",
          "previousPageAPI",
          "pageNumber",
          "totalPages",
          "totalCount"
        ],
        "title": "CourtLocationResponse",
        "type": "object",
        "x-unicourt-container": false
      },
      "CourtResponse": {
        "properties": {
          "courtArray": {
            "items": {
              "$ref": "#/components/schemas/Court"
            },
            "maxLength": 100,
            "type": "array"
          },
          "nextPageAPI": {
            "description": "Link to next page.",
            "example": null,
            "format": "uri",
            "maxLength": 2136,
            "minLength": 1,
            "nullable": true,
            "type": "string"
          },
          "object": {
            "default": "CourtResponse",
            "example": "CourtResponse",
            "maxLength": 13,
            "minLength": 13,
            "nullable": false,
            "type": "string"
          },
          "pageNumber": {
            "example": 1,
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "integer"
          },
          "previousPageAPI": {
            "description": "Link to previous page.",
            "example": null,
            "format": "uri",
            "maxLength": 2135,
            "minLength": 1,
            "nullable": true,
            "type": "string"
          },
          "totalCount": {
            "description": "The number of matches that were found in the index.",
            "example": 1,
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "integer"
          },
          "totalPages": {
            "description": "Total pages for matches that were found in the index.",
            "example": 1,
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "integer"
          }
        },
        "required": [
          "object",
          "courtArray",
          "nextPageAPI",
          "previousPageAPI",
          "pageNumber",
          "totalPages",
          "totalCount"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "CourtServiceStatus": {
        "nullable": true,
        "properties": {
          "caseClassIdArray": {
            "description": "All the Case class ids associated to the service status",
            "example": [
              "CACLf7txmD5m5Y8RyZ"
            ],
            "items": {
              "maxLength": 18,
              "minLength": 18,
              "nullable": true,
              "type": "string"
            },
            "nullable": true,
            "type": "array"
          },
          "caseDocumentOrderServiceStatus": {
            "$ref": "#/components/schemas/ServiceStatus"
          },
          "caseTrackServiceStatus": {
            "$ref": "#/components/schemas/ServiceStatus"
          },
          "caseUpdateServiceStatus": {
            "$ref": "#/components/schemas/ServiceStatus"
          },
          "courtIdArray": {
            "description": "All the court ids associated to the service status",
            "example": [
              "CRSCV4vCEaKrhysQPq"
            ],
            "items": {
              "maxLength": 18,
              "minLength": 18,
              "nullable": true,
              "type": "string"
            },
            "nullable": true,
            "type": "array"
          },
          "courtLocationIdArray": {
            "description": "All the court location ids associated to the service status",
            "example": [
              "COLO35ekoDzA9iU5x4"
            ],
            "items": {
              "maxLength": 18,
              "minLength": 18,
              "nullable": true,
              "type": "string"
            },
            "nullable": true,
            "type": "array"
          },
          "courtServiceStatusId": {
            "description": "Court Service Status Object ID",
            "example": "CTSSV4vCEaKrhysQPq",
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          },
          "object": {
            "default": "CourtServiceStatus",
            "description": "Name of the object",
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          },
          "serviceStatusAsOn": {
            "description": "Date when the service status was last fetched.",
            "example": "2022-10-26T04:05:45+00:43",
            "maxLength": 25,
            "minLength": 25,
            "nullable": true,
            "type": "string"
          }
        },
        "required": [
          "object",
          "courtServiceStatusId",
          "courtIdArray",
          "courtLocationIdArray",
          "caseClassIdArray",
          "serviceStatusAsOn",
          "caseUpdateServiceStatus",
          "caseTrackServiceStatus",
          "caseDocumentOrderServiceStatus"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "CourtServiceStatusResponse": {
        "properties": {
          "courtServiceStatusArray": {
            "items": {
              "$ref": "#/components/schemas/CourtServiceStatus"
            },
            "maxLength": 100,
            "type": "array"
          },
          "nextPageAPI": {
            "description": "Link to next page.",
            "example": null,
            "format": "uri",
            "maxLength": 2153,
            "minLength": 1,
            "nullable": true,
            "type": "string"
          },
          "object": {
            "default": "CourtServiceStatusResponse",
            "example": "CourtServiceStatusResponse",
            "maxLength": 26,
            "minLength": 26,
            "nullable": false,
            "type": "string"
          },
          "pageNumber": {
            "description": "Page number for which results where obtained.",
            "example": 1,
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "integer"
          },
          "previousPageAPI": {
            "description": "Link to previous page.",
            "example": null,
            "format": "uri",
            "maxLength": 2152,
            "minLength": 1,
            "nullable": true,
            "type": "string"
          },
          "totalCount": {
            "description": "Total number of matches found.",
            "example": 1,
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "integer"
          },
          "totalPages": {
            "description": "Total number of pages to obtain all the objects.",
            "example": 1,
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "integer"
          }
        },
        "required": [
          "object",
          "courtServiceStatusArray",
          "nextPageAPI",
          "previousPageAPI",
          "pageNumber",
          "totalPages",
          "totalCount"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "CourtSystem": {
        "properties": {
          "courtSystemId": {
            "example": "COSYACHBdMewtaG5DY",
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          },
          "courtType": {
            "example": "State",
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "string"
          },
          "courtTypeId": {
            "example": "COTPm8jjc2PAydpFhq",
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          },
          "createdDate": {
            "description": "The date and time when the Court was first created. This date and time is in UTC. Formatted as YYYY-MM-DD HH:MM:SS.",
            "example": "2020-05-07T10:17:56+00:00",
            "format": "date-time",
            "maxLength": 25,
            "minLength": 25,
            "nullable": false,
            "type": "string"
          },
          "name": {
            "example": "California Superior Courts",
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "string"
          },
          "object": {
            "default": "CourtSystem",
            "example": "CourtSystem",
            "maxLength": 11,
            "minLength": 11,
            "nullable": false,
            "type": "string"
          }
        },
        "required": [
          "object",
          "courtTypeId",
          "courtSystemId",
          "courtType",
          "name",
          "createdDate"
        ],
        "title": "CourtSystem",
        "type": "object",
        "x-unicourt-container": false
      },
      "CourtSystemResponse": {
        "properties": {
          "courtSystemArray": {
            "items": {
              "$ref": "#/components/schemas/CourtSystem"
            },
            "maxLength": 100,
            "type": "array"
          },
          "nextPageAPI": {
            "description": "Link to next page.",
            "example": null,
            "format": "uri",
            "maxLength": 2142,
            "minLength": 1,
            "nullable": true,
            "type": "string"
          },
          "object": {
            "default": "CourtSystemResponse",
            "example": "CourtSystemResponse",
            "maxLength": 19,
            "minLength": 19,
            "nullable": false,
            "type": "string"
          },
          "pageNumber": {
            "description": "Page number for which results where obtained.",
            "example": 1,
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "integer"
          },
          "previousPageAPI": {
            "description": "Link to previous page.",
            "example": null,
            "format": "uri",
            "maxLength": 2141,
            "minLength": 1,
            "nullable": true,
            "type": "string"
          },
          "totalCount": {
            "description": "Total number of matches found.",
            "example": 1,
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "integer"
          },
          "totalPages": {
            "description": "Total number of pages to obtain all the objects.",
            "example": 1,
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "integer"
          }
        },
        "required": [
          "object",
          "courtSystemArray",
          "nextPageAPI",
          "previousPageAPI",
          "pageNumber",
          "totalPages",
          "totalCount"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "CourtType": {
        "properties": {
          "courtTypeId": {
            "example": "COTPm8jjc2PAydpFhq",
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          },
          "createdDate": {
            "description": "The date and time when the Court was first created. This date and time is in UTC. Formatted as YYYY-MM-DD HH:MM:SS.",
            "example": "2020-05-07T10:17:56+00:00",
            "format": "date-time",
            "maxLength": 25,
            "minLength": 25,
            "nullable": false,
            "type": "string"
          },
          "name": {
            "example": "State",
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "string"
          },
          "object": {
            "default": "CourtType",
            "example": "CourtType",
            "maxLength": 9,
            "minLength": 9,
            "nullable": false,
            "type": "string"
          }
        },
        "required": [
          "object",
          "courtTypeId",
          "name",
          "createdDate"
        ],
        "title": "CourtType",
        "type": "object",
        "x-unicourt-container": false
      },
      "CourtTypeResponse": {
        "properties": {
          "courtTypeArray": {
            "items": {
              "$ref": "#/components/schemas/CourtType"
            },
            "maxLength": 100,
            "type": "array"
          },
          "nextPageAPI": {
            "description": "Link to next page.",
            "example": null,
            "format": "uri",
            "maxLength": 2140,
            "minLength": 1,
            "nullable": true,
            "type": "string"
          },
          "object": {
            "default": "CourtTypeResponse",
            "example": "CourtTypeResponse",
            "maxLength": 17,
            "minLength": 17,
            "nullable": false,
            "type": "string"
          },
          "pageNumber": {
            "description": "Page number for which results where obtained.",
            "example": 1,
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "integer"
          },
          "previousPageAPI": {
            "description": "Link to previous page.",
            "example": null,
            "format": "uri",
            "maxLength": 2139,
            "minLength": 1,
            "nullable": true,
            "type": "string"
          },
          "totalCount": {
            "description": "Total number of matches found.",
            "example": 1,
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "integer"
          },
          "totalPages": {
            "description": "Total number of pages to obtain all the objects.",
            "example": 1,
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "integer"
          }
        },
        "required": [
          "object",
          "courtTypeArray",
          "nextPageAPI",
          "previousPageAPI",
          "pageNumber",
          "totalPages",
          "totalCount"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "DailyUsageResponse": {
        "properties": {
          "apiCallsBillable": {
            "description": "Total number of API calls billed for the billing cycle.",
            "properties": {
              "count": {
                "description": "Total API calls billed  for the billing cycle",
                "example": 100,
                "type": "integer"
              },
              "lastUpdated": {
                "description": "Last Updated date and time for the field apiCallsBillable",
                "example": "2022-11-10T10:17:56+00:00",
                "maxLength": 25,
                "minLength": 25,
                "nullable": true,
                "type": "string"
              }
            },
            "required": [
              "count",
              "lastUpdated"
            ],
            "type": "object"
          },
          "apiCallsCredited": {
            "description": "Total number of callbackFailures including caseUpdate, caseDocumentOrder and caseExport for the billing cycle.",
            "properties": {
              "count": {
                "description": "Total API calls credited back for the billing cycle",
                "example": 100,
                "type": "integer"
              },
              "lastUpdated": {
                "description": "Last Updated date and time for the field apiCallsCredited",
                "example": "2022-11-10T10:17:56+00:00",
                "maxLength": 25,
                "minLength": 25,
                "nullable": true,
                "type": "string"
              }
            },
            "required": [
              "count",
              "lastUpdated"
            ],
            "type": "object"
          },
          "apiCallsMade": {
            "description": "Total API calls made for the billing cycle.",
            "properties": {
              "count": {
                "description": "Total API calls made for the billing cycle",
                "example": 100,
                "type": "integer"
              },
              "lastUpdated": {
                "description": "Last Updated date and time for the field apiCallsMade",
                "example": "2022-11-10T10:17:56+00:00",
                "maxLength": 25,
                "minLength": 25,
                "nullable": true,
                "type": "string"
              }
            },
            "required": [
              "count",
              "lastUpdated"
            ],
            "type": "object"
          },
          "apiUsage": {
            "description": "StartDate and endDate of the billing cycle.",
            "type": "object"
          },
          "object": {
            "default": "DailyUsageResponse",
            "description": "Name of the object.",
            "example": "DailyUsageResponse",
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          },
          "usageEndTime": {
            "description": "End time of the usage.",
            "example": "2022-11-10T23:59:59+00:00",
            "format": "date",
            "maxLength": 25,
            "minLength": 25,
            "nullable": false,
            "type": "string"
          },
          "usageStartTime": {
            "description": "Start time of the usage.",
            "example": "2022-11-10T00:00:00+00:00",
            "format": "date",
            "maxLength": 25,
            "minLength": 25,
            "nullable": false,
            "type": "string"
          }
        },
        "required": [
          "object",
          "usageStartTime",
          "usageEndTime",
          "apiUsage",
          "apiCallsMade",
          "apiCallsCredited",
          "apiCallsBillable"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "DocketEntries": {
        "nullable": true,
        "properties": {
          "docketEntryArray": {
            "items": {
              "$ref": "#/components/schemas/DocketEntry"
            },
            "maxItems": 100,
            "type": "array"
          },
          "nextPageAPI": {
            "description": "Link to next page of a particular entity in a Case.",
            "example": "https://enterpriseapi.unicourt.com/case/CASEgued96d541f794/parties/?pageNumber=1",
            "maxLength": 255,
            "nullable": true,
            "type": "string"
          },
          "object": {
            "default": "DocketEntries",
            "description": "Name of the object",
            "maxLength": 13,
            "minLength": 13,
            "nullable": false,
            "type": "string"
          },
          "pageNumber": {
            "description": "Page number for which results where obtained.",
            "example": 1,
            "type": "integer"
          },
          "totalCount": {
            "description": "Total number of parties of the Case entity in a Case.",
            "example": 150,
            "type": "integer"
          },
          "totalPages": {
            "description": "Total number of pages to obtain all the objects of a party in the Case.",
            "example": 120,
            "type": "integer"
          }
        },
        "required": [
          "object",
          "pageNumber",
          "totalPages",
          "docketEntryArray",
          "nextPageAPI",
          "totalCount"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "DocketEntry": {
        "nullable": true,
        "properties": {
          "boundary": {
            "description": "Determines if it is the first docket entry or the last docket entry. This value will be set only for the first and last docket entry. For other docket entries it will be null. However, this will be set as single_docket_entry when the Case contains only one docket entry.",
            "enum": [
              "first",
              "last",
              "single_docket_entry",
              null
            ],
            "example": "last",
            "nullable": true,
            "type": "string"
          },
          "docketBadge": {
            "description": "Docket Badge helps you to know what type of a docket entry it is.",
            "enum": [
              "DOCKET",
              "CHARGE",
              "HEARING",
              "JUDGEMENT",
              "FINANCIAL",
              "DISPOSITION",
              "SENTENCE",
              "BOND",
              "BAIL",
              "CAUSE_OF_ACTION",
              "ARREST",
              "WARRANT",
              "SUMMON",
              "TICKLER",
              "OPINION"
            ],
            "example": "DOCKET",
            "type": "string"
          },
          "docketEntryDate": {
            "description": "Docket Action Date",
            "example": "2020-04-28T11:51:27+00:00",
            "format": "date-time",
            "maxLength": 25,
            "minLength": 25,
            "nullable": false,
            "type": "string"
          },
          "docketEntryPrimaryDocuments": {
            "$ref": "#/components/schemas/DocketEntryPrimaryDocuments"
          },
          "docketEntrySecondaryDocuments": {
            "$ref": "#/components/schemas/DocketEntrySecondaryDocuments"
          },
          "docketNumber": {
            "description": "The respective docket entry number which is defined in the court website.",
            "example": 204,
            "nullable": true,
            "type": "integer"
          },
          "lastFetchDate": {
            "description": "When this docket entry was last fetched from the source.",
            "example": "2020-04-28T11:51:27+00:00",
            "maxLength": 25,
            "minLength": 25,
            "nullable": false,
            "type": "string"
          },
          "object": {
            "default": "DocketEntry",
            "description": "Name of the object",
            "maxLength": 11,
            "minLength": 11,
            "nullable": false,
            "type": "string"
          },
          "referencedDocketNumberArray": {
            "description": "Other Docket Numbers that referenced for a particular docket entry.",
            "items": {
              "$ref": "#/components/schemas/ReferencedDocketNumber"
            },
            "type": "array"
          },
          "sortOrder": {
            "description": "Order number how the dockets have stored in UniCourt.",
            "example": 0,
            "type": "integer"
          },
          "text": {
            "description": "Source Docket Entry",
            "example": "STIPULATION for Extension of Time to File Answer to 01/15/2020 re Answer to Complaint (Attorney Civil Case Opening),,,,,, Crossclaim,,,,,, Counterclaim,,,,, #172 filed by Cross-Complainant TW Tedesco Properties, L.P.. (Attachments: #1 Proposed Order)(Hamrick, Alpheus) (Entered: 12/05/2019)",
            "maxLength": 1000000,
            "nullable": false,
            "type": "string"
          },
          "textStructured": {
            "$ref": "#/components/schemas/SourceStructuredData"
          }
        },
        "required": [
          "object",
          "sortOrder",
          "docketEntryDate",
          "docketNumber",
          "docketBadge",
          "text",
          "textStructured",
          "referencedDocketNumberArray",
          "docketEntryPrimaryDocuments",
          "docketEntrySecondaryDocuments",
          "lastFetchDate",
          "boundary"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "DocketEntryPrimaryDocuments": {
        "description": "Primary Documents refers to documents that are directly related to a docket entry. Primary Documents could be specific to a courts or case type in courts. For isntance the below example is in PACER. PACER District Courts - Here the primary document is one which is attached to the docket number. Because in district for a primary document it can have many attachments associatated to it. PACER Appeal Courts - Here the attachments for a docket entry are the primary documents. Because in appeal for those attachments there is no primary documents.",
        "nullable": true,
        "properties": {
          "caseDocumentArray": {
            "items": {
              "$ref": "#/components/schemas/CaseDocument"
            },
            "maxItems": 100,
            "type": "array"
          },
          "nextPageAPI": {
            "description": "Link to next page of a particular entity in a Case.",
            "example": "https://enterpriseapi.unicourt.com/case/CASEgued96d541f794/parties/?pageNumber=1",
            "maxLength": 255,
            "nullable": true,
            "type": "string"
          },
          "object": {
            "default": "DocketEntryPrimaryDocuments",
            "description": "Name of the object",
            "maxLength": 27,
            "minLength": 27,
            "nullable": false,
            "type": "string"
          },
          "pageNumber": {
            "description": "Page number for which results where obtained.",
            "example": 1,
            "type": "integer"
          },
          "totalCount": {
            "description": "Total number of parties of the Case. entity in a Case.",
            "example": 150,
            "type": "integer"
          },
          "totalPages": {
            "description": "Total number of pages to obtain all the objects of a party in the Case.",
            "example": 120,
            "type": "integer"
          }
        },
        "required": [
          "object",
          "pageNumber",
          "totalPages",
          "nextPageAPI",
          "totalCount",
          "caseDocumentArray"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "DocketEntrySecondaryDocuments": {
        "description": "Secondary Documents refers to documents that are attached to a docket entry. Secondary Documents could be specific to a courts or case type in courts. For isntance the below example is in PACER. PACER District Courts - Here the secondary document is one which is attached in the docket entry.",
        "nullable": true,
        "properties": {
          "caseDocumentArray": {
            "items": {
              "$ref": "#/components/schemas/CaseDocument"
            },
            "maxItems": 100,
            "type": "array"
          },
          "nextPageAPI": {
            "description": "Link to next page of a particular entity in a Case.",
            "example": "https://enterpriseapi.unicourt.com/case/CASEgued96d541f794/parties/?pageNumber=1",
            "maxLength": 255,
            "nullable": true,
            "type": "string"
          },
          "object": {
            "default": "DocketEntrySecondaryDocuments",
            "description": "Name of the object",
            "maxLength": 29,
            "minLength": 29,
            "nullable": false,
            "type": "string"
          },
          "pageNumber": {
            "description": "Page number for which results where obtained.",
            "example": 1,
            "type": "integer"
          },
          "totalCount": {
            "description": "Total number of parties of the Case. entity in a Case.",
            "example": 150,
            "type": "integer"
          },
          "totalPages": {
            "description": "Total number of pages to obtain all the objects of a party in the Case.",
            "example": 120,
            "type": "integer"
          }
        },
        "required": [
          "object",
          "pageNumber",
          "totalPages",
          "nextPageAPI",
          "totalCount",
          "caseDocumentArray"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "DocumentDownload": {
        "properties": {
          "caseDocumentDownloadAPI": {
            "description": "API call to download the document again if the above fileUrl is expired.",
            "example": "https://enterpriseapi.unicourt.com/caseDocumentDownload/CDOCdgc9b0531de2a0",
            "format": "uri",
            "maxLength": 1024,
            "minLength": 1,
            "nullable": false,
            "type": "string"
          },
          "caseDocumentId": {
            "description": "Requested Document ID.",
            "example": "CDOCdgc9b0531de2a0",
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          },
          "expiryDate": {
            "description": "Expiry date-time for the fileUrl provided in this object.",
            "example": "2022-07-08T09:41:39+00:00",
            "maxLength": 25,
            "minLength": 25,
            "nullable": false,
            "type": "string"
          },
          "fileUrl": {
            "description": "Link to download the file.",
            "example": "https://case_docs.s3.amazonaws.com/pc/db1/arwdce/CDOCdgc9b0531de2a0.pdf?Signature=iaDrqu3QdGn4Iiivj12HGE0Cd%2FU%3D&Expires=1519114632&AWSAccessKeyId=ASIAIVIPKMBFROMOG4UA&x-amz-security-token=FQoDYXdzEBAaDAFHPFrD90ZiDAXztiK3A5quX27wV0JyJ/MEZZC72CPlfmLYNblJvE9oW8nObvf1H5p%2Boj9Qsg0NQJ36qKmsV2IVFNtmqkoXufMqjpdb1S/p4rp6VPPk6fweYsqkVkjhHkkLesIq8XDAxlKSE9i9TUO8RaKl90c3RszzKhJCjkmLdKEFuwoPv1W1EDyJHsZ222TSnkOJfEJYcaVRhvNPQjSXkl%2BhwrX3Ft0Pzns1rGDtNMj6/2iRoE%2Blqqi4/uFNKbRMxaPS4xi9a7JcevwHPQhj8bVEZyIkZ35vQ4g2WFpImt1uafHPSuzE3WglbkO4yP7mP62P6qIl9xpYpYqzFLdecAkcz0ipBIJltfegTvITfxFMzlYHZimkOx9uJIGXKpD//VSc%2BW95/8JgcAPbGAdCXaxLOVbb1XPSxlO46irUaXFUSBHDy0rKuXdirRiIs583HQt2K6MvMBPzB7BbbE998V1sQsezHvvazdESDSVrjBstXrP23laQg7IiK5rbtGxYYqSEKOlaUd3eFIJwnfqYPVp%2Bl%2BWwORnbi96BtziNUABuccd3KepVMvth481k/xf12Fnakl/vS5A9ArOT7BjwY7q783Mok5Kv1AU%3D",
            "maxLength": 1024,
            "minLength": 1,
            "nullable": false,
            "type": "string"
          },
          "object": {
            "default": "DocumentDownload",
            "description": "Name of the object.",
            "example": "DocumentDownload",
            "maxLength": 16,
            "minLength": 16,
            "nullable": false,
            "type": "string"
          }
        },
        "required": [
          "object",
          "caseDocumentId",
          "expiryDate",
          "fileUrl",
          "caseDocumentDownloadAPI"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "Email": {
        "description": "Email object data schema.",
        "properties": {
          "emailId": {
            "description": "email id",
            "example": "mike@smitch.com",
            "maxLength": 100,
            "minLength": 1,
            "nullable": false,
            "type": "string"
          },
          "firstFetchDate": {
            "description": "Date at which this record is created in UniCourt.",
            "example": "2017-07-21T17:32:28+00:00",
            "format": "date-time",
            "maxLength": 35,
            "minLength": 25,
            "nullable": false,
            "type": "string"
          },
          "isVisible": {
            "description": "Boolean indicating if the email is visible or not.",
            "example": false,
            "maxLength": 5,
            "minLength": 4,
            "nullable": false,
            "type": "boolean"
          },
          "lastFetchDate": {
            "description": "Date at which this record was updated in UniCourt.",
            "example": "2017-07-21T17:32:28+00:00",
            "format": "date-time",
            "maxLength": 35,
            "minLength": 25,
            "nullable": false,
            "type": "string"
          },
          "object": {
            "default": "Email",
            "example": "Email",
            "maxLength": 5,
            "minLength": 5,
            "nullable": false,
            "type": "string"
          }
        },
        "required": [
          "emailId",
          "isVisible",
          "firstFetchDate",
          "lastFetchDate",
          "object"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "Exception": {
        "description": "Exception object contains specific error code and its message related to the API request validation error or error occurred during API request processing.",
        "nullable": true,
        "properties": {
          "code": {
            "description": "Indicates the type of error occured.",
            "maxLength": 75,
            "minLength": 1,
            "nullable": false,
            "type": "string"
          },
          "details": {
            "description": "Describes what went wrong.",
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "string"
          },
          "message": {
            "description": "Indicates the error message that describes the error code.",
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "string"
          },
          "object": {
            "default": "Exception",
            "example": "Exception",
            "maxLength": 9,
            "minLength": 9,
            "nullable": false,
            "type": "string"
          }
        },
        "required": [
          "object",
          "code",
          "message",
          "details"
        ],
        "title": "Exception",
        "type": "object",
        "x-unicourt-container": false
      },
      "ExportFile": {
        "nullable": true,
        "properties": {
          "expiryDate": {
            "description": "Expiry date-time for the fileUrl provided in this object.",
            "example": "2021-10-10T10:10:24+00:00",
            "format": "date time",
            "maxLength": 40,
            "minLength": 10,
            "nullable": false,
            "type": "string"
          },
          "fileUrl": {
            "description": "Link to download the file.",
            "example": "https://case_docs.s3.amazonaws.com/pc/db1/arwdce/CDOCvkpXZC8FzBAEz.pdf",
            "maxLength": 2048,
            "minLength": 1,
            "nullable": false,
            "type": "string"
          },
          "name": {
            "description": "Name of the file.",
            "example": "CDOCvkpXZC8FzBAEz.pdf",
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "string"
          },
          "object": {
            "default": "ExportFile",
            "example": "ExportFile",
            "maxLength": 10,
            "minLength": 10,
            "nullable": false,
            "type": "string"
          }
        },
        "required": [
          "expiryDate",
          "name",
          "fileUrl",
          "object"
        ],
        "title": "ExportFile",
        "type": "object",
        "x-unicourt-container": false
      },
      "ExtractedFields": {
        "additionalProperties": true,
        "nullable": true,
        "properties": {
          "key": {
            "description": "This can be an field that is extracted from rawOrderedDataArray on request of different users.",
            "nullable": true,
            "type": "string"
          }
        },
        "type": "object",
        "x-unicourt-container": false
      },
      "Hearing": {
        "nullable": true,
        "properties": {
          "firstFetchDate": {
            "description": "When this hearing was first fetched from the source.",
            "example": "2020-04-28T11:51:27+00:00",
            "maxLength": 25,
            "minLength": 25,
            "nullable": false,
            "type": "string"
          },
          "hearingDate": {
            "description": "Hearing Date",
            "example": "2020-04-28T11:51:27+00:00",
            "format": "date-time",
            "maxLength": 25,
            "minLength": 25,
            "nullable": false,
            "type": "string"
          },
          "hearingDescription": {
            "description": "Source Hearing Description Text",
            "example": "STIPULATION for Extension of Time to File Answer to 01/15/2020 re Answer to Complaint (Attorney Civil Case Opening),,,,,, Crossclaim,,,,,, Counterclaim,,,,, #172 filed by Cross-Complainant TW Tedesco Properties, L.P.. (Attachments: #1 Proposed Order)(Hamrick, Alpheus) (Entered: 12/05/2019)",
            "maxLength": 100000,
            "nullable": true,
            "type": "string"
          },
          "hearingStructured": {
            "$ref": "#/components/schemas/SourceStructuredData"
          },
          "lastFetchDate": {
            "description": "When this hearing was last fetched from the source.",
            "example": "2020-04-28T11:51:27+00:00",
            "maxLength": 25,
            "minLength": 25,
            "nullable": false,
            "type": "string"
          },
          "location": {
            "description": "Location where the hearing will takeplace.",
            "example": "Los Angeles",
            "maxLength": 250,
            "nullable": true,
            "type": "string"
          },
          "object": {
            "default": "Hearing",
            "description": "Name of the object",
            "maxLength": 7,
            "minLength": 7,
            "nullable": false,
            "type": "string"
          }
        },
        "required": [
          "object",
          "hearingDate",
          "hearingDescription",
          "hearingStructured",
          "location",
          "firstFetchDate",
          "lastFetchDate"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "Hearings": {
        "nullable": true,
        "properties": {
          "hearingArray": {
            "items": {
              "$ref": "#/components/schemas/Hearing"
            },
            "type": "array"
          },
          "nextPageAPI": {
            "description": "Link to next page of a particular entity in a Case.",
            "example": "https://enterpriseapi.unicourt.com/case/CASEgued96d541f794/parties/?pageNumber=1",
            "maxLength": 255,
            "nullable": true,
            "type": "string"
          },
          "object": {
            "default": "Hearings",
            "description": "Name of the object",
            "maxLength": 8,
            "minLength": 8,
            "nullable": false,
            "type": "string"
          },
          "pageNumber": {
            "description": "Page number for which results where obtained.",
            "example": 1,
            "type": "integer"
          },
          "totalCount": {
            "description": "Total number of parties of the Case entity in a Case.",
            "example": 150,
            "type": "integer"
          },
          "totalPages": {
            "description": "Total number of pages to obtain all the objects of a party in the Case.",
            "example": 120,
            "type": "integer"
          }
        },
        "required": [
          "object",
          "pageNumber",
          "hearingArray",
          "totalPages",
          "nextPageAPI",
          "totalCount"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "InvalidateAccessTokenRequest": {
        "properties": {
          "clientId": {
            "description": "Your Client ID obtainable by logging into your UniCourt account.",
            "example": "G3cfixgetVzfaoszGOBp5LPGtih1nMJ9",
            "maxLength": 32,
            "minLength": 32,
            "nullable": false,
            "type": "string"
          },
          "clientSecret": {
            "description": "Your Client Secret ID obtainable by logging into your UniCourt account.",
            "example": "u6PTti57IjPlrwU5MzOwLBD2MCwx-IEbo8sTStTivh1I-EqQ8Jcm27Gfo2GhpHCw",
            "maxLength": 64,
            "minLength": 64,
            "nullable": false,
            "type": "string"
          },
          "tokenId": {
            "description": "The Token ID of token being invalidated",
            "example": "TKID384a057WFC3Dp3",
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          }
        },
        "required": [
          "clientId",
          "clientSecret",
          "tokenId"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "Judge": {
        "nullable": true,
        "properties": {
          "contact": {
            "$ref": "#/components/schemas/Contact"
          },
          "firstFetchDate": {
            "description": "When was the judge first fetched from the court site.",
            "example": "2021-10-10T10:10:24+00:00",
            "format": "date-time",
            "maxLength": 25,
            "minLength": 25,
            "nullable": false,
            "type": "string"
          },
          "firstName": {
            "description": "First name of the judge. This is normalized by UniCourt.",
            "example": "Donald",
            "maxLength": 250,
            "nullable": true,
            "type": "string"
          },
          "isVisible": {
            "description": "Signifies if the judge as this judge type is currently isVisible or not for the case.",
            "example": true,
            "type": "boolean"
          },
          "judgeId": {
            "description": "ID for the judge in this case. This ID is unique within a case and NOT across cases. If the same Judge were to appear in another case this ID would be different.",
            "example": "JUDGgue04d2894de7a",
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          },
          "judgeType": {
            "$ref": "#/components/schemas/JudgeType"
          },
          "lastFetchDate": {
            "description": "When was the judge last fetched from the court site.",
            "example": "2021-10-10T10:10:24+00:00",
            "format": "date-time",
            "maxLength": 25,
            "minLength": 25,
            "nullable": false,
            "type": "string"
          },
          "lastName": {
            "description": "Last name of the judge. This is normalized by UniCourt.",
            "example": "Grincewicz",
            "maxLength": 100,
            "nullable": true,
            "type": "string"
          },
          "middleName": {
            "description": "Middle name of the judge. This is normalized by UniCourt.",
            "example": "E",
            "maxLength": 100,
            "nullable": true,
            "type": "string"
          },
          "name": {
            "description": "Name of the judge as provided by Court.",
            "example": "Donald E Grincewicz",
            "maxLength": 250,
            "minLength": 1,
            "nullable": false,
            "type": "string"
          },
          "namePrefix": {
            "maxLength": 10,
            "nullable": true,
            "type": "string"
          },
          "nameSuffix": {
            "maxLength": 10,
            "nullable": true,
            "type": "string"
          },
          "object": {
            "default": "Judge",
            "description": "Name of the object",
            "maxLength": 5,
            "minLength": 5,
            "nullable": false,
            "type": "string"
          },
          "possibleNormJudgeArray": {
            "items": {
              "$ref": "#/components/schemas/PossibleNormJudge"
            },
            "type": "array"
          },
          "sourceJudgeType": {
            "example": "judge",
            "maxLength": 50,
            "nullable": false,
            "type": "string"
          }
        },
        "required": [
          "object",
          "judgeId",
          "name",
          "namePrefix",
          "firstName",
          "middleName",
          "lastName",
          "nameSuffix",
          "contact",
          "judgeType",
          "sourceJudgeType",
          "isVisible",
          "firstFetchDate",
          "lastFetchDate",
          "possibleNormJudgeArray"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "JudgeAnalyticsAPI": {
        "properties": {
          "associatedNormAttorneysAPI": {
            "format": "uri",
            "maxLength": 255,
            "nullable": false,
            "type": "string",
            "x-logical-reference": "AssociatedNormAttorneysForNormJudgeAPI"
          },
          "associatedNormLawFirmsAPI": {
            "format": "uri",
            "maxLength": 255,
            "nullable": false,
            "type": "string",
            "x-logical-reference": "AssociatedNormLawFirmsForNormJudgeAPI"
          },
          "associatedNormPartiesAPI": {
            "format": "uri",
            "maxLength": 255,
            "nullable": false,
            "type": "string",
            "x-logical-reference": "AssociatedNormPartiesForNormJudgeAPI"
          },
          "normJudgeAPI": {
            "description": "Link to Details for the Judge.",
            "format": "uri",
            "maxLength": 255,
            "nullable": false,
            "type": "string",
            "x-logical-reference": "NormJudgeAPI"
          },
          "object": {
            "default": "JudgeAnalyticsAPI",
            "maxLength": 17,
            "nullable": false,
            "type": "string"
          }
        },
        "required": [
          "object",
          "normJudgeAPI",
          "associatedNormAttorneysAPI",
          "associatedNormPartiesAPI",
          "associatedNormLawFirmsAPI"
        ],
        "title": "JudgeAnalyticsAPI",
        "type": "object",
        "x-unicourt-container": false
      },
      "JudgeType": {
        "nullable": true,
        "properties": {
          "createdDate": {
            "description": "The date and time when it was first created. This date and time is in UTC. Formatted as YYYY-MM-DD HH:MM:SS.",
            "example": "2020-05-07T10:17:56+00:00",
            "format": "date-time",
            "maxLength": 25,
            "minLength": 25,
            "nullable": false,
            "type": "string"
          },
          "judgeTypeId": {
            "example": "JGTPkwrfzkDJUvxpN9",
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          },
          "name": {
            "example": "Judge",
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "string"
          },
          "object": {
            "default": "JudgeType",
            "example": "JudgeType",
            "maxLength": 9,
            "minLength": 9,
            "nullable": false,
            "type": "string"
          }
        },
        "required": [
          "object",
          "judgeTypeId",
          "name",
          "createdDate"
        ],
        "title": "JudgeType",
        "type": "object",
        "x-unicourt-container": false
      },
      "JudgeTypeResponse": {
        "properties": {
          "judgeTypeArray": {
            "items": {
              "$ref": "#/components/schemas/JudgeType"
            },
            "maxLength": 100,
            "type": "array"
          },
          "nextPageAPI": {
            "description": "Link to next page.",
            "example": null,
            "format": "uri",
            "maxLength": 2142,
            "minLength": 1,
            "nullable": true,
            "type": "string"
          },
          "object": {
            "default": "JudgeTypeResponse",
            "example": "JudgeTypeResponse",
            "maxLength": 17,
            "minLength": 17,
            "nullable": false,
            "type": "string"
          },
          "pageNumber": {
            "description": "Page number for which results where obtained.",
            "example": 1,
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "integer"
          },
          "previousPageAPI": {
            "description": "Link to previous page.",
            "example": null,
            "format": "uri",
            "maxLength": 2141,
            "minLength": 1,
            "nullable": true,
            "type": "string"
          },
          "totalCount": {
            "description": "Total number of matches found.",
            "example": 1,
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "integer"
          },
          "totalPages": {
            "description": "Total number of pages to obtain all the objects.",
            "example": 1,
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "integer"
          }
        },
        "required": [
          "object",
          "judgeTypeArray",
          "nextPageAPI",
          "previousPageAPI",
          "pageNumber",
          "totalPages",
          "totalCount"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "Judges": {
        "nullable": true,
        "properties": {
          "judgeArray": {
            "items": {
              "$ref": "#/components/schemas/Judge"
            },
            "maxItems": 25,
            "type": "array"
          },
          "nextPageAPI": {
            "description": "Link to next page of a particular entity in a Case.",
            "example": "https://enterpriseapi.unicourt.com/case/CASEgued96d541f794/parties/?pageNumber=1",
            "maxLength": 255,
            "nullable": true,
            "type": "string"
          },
          "object": {
            "default": "Judges",
            "description": "Name of the object",
            "maxLength": 6,
            "minLength": 6,
            "nullable": false,
            "type": "string"
          },
          "pageNumber": {
            "description": "Page number for which results where obtained.",
            "example": 1,
            "type": "integer"
          },
          "totalCount": {
            "description": "Total number of parties of the Case entity in a Case.",
            "example": 150,
            "type": "integer"
          },
          "totalPages": {
            "description": "Total number of pages to obtain all the objects of a party in the Case.",
            "example": 120,
            "type": "integer"
          }
        },
        "required": [
          "object",
          "pageNumber",
          "totalPages",
          "nextPageAPI",
          "judgeArray",
          "totalCount"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "JurisdictionGeo": {
        "properties": {
          "city": {
            "example": null,
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "type": "string"
          },
          "country": {
            "example": "United States of America",
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "string"
          },
          "county": {
            "example": "Los Angeles",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "type": "string"
          },
          "courtsForJurisdictionGeoAPI": {
            "example": "https://enterpriseapi.unicourt.com/masterData/jurisdictionGeo/JUGO8Mep3ckEkD2SFk/courts?pageNumber=1",
            "format": "uri",
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "string",
            "x-logical-reference": "CourtsForJurisdictionGeoByIdAPI"
          },
          "createdDate": {
            "description": "The date and time when it was first created. This date and time is in UTC. Formatted as YYYY-MM-DD HH:MM:SS.",
            "example": "2020-05-07T10:17:56+00:00",
            "format": "date-time",
            "maxLength": 25,
            "minLength": 25,
            "nullable": false,
            "type": "string"
          },
          "fipsCode": {
            "example": "06037",
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "string"
          },
          "jurisdictionGeoId": {
            "example": "JUGO8Mep3ckEkD2SFk",
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          },
          "object": {
            "default": "JurisdictionGeo",
            "example": "JurisdictionGeo",
            "maxLength": 15,
            "minLength": 15,
            "nullable": false,
            "type": "string"
          },
          "state": {
            "example": "California",
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "string"
          },
          "zipCodeArray": {
            "example": [],
            "items": {
              "maxLength": 255,
              "minLength": 1,
              "nullable": false,
              "type": "string"
            },
            "nullable": true,
            "type": "array"
          }
        },
        "required": [
          "object",
          "jurisdictionGeoId",
          "country",
          "createdDate",
          "state",
          "county",
          "city",
          "fipsCode",
          "zipCodeArray",
          "courtsForJurisdictionGeoAPI"
        ],
        "title": "JurisdictionGeo",
        "type": "object",
        "x-unicourt-container": false
      },
      "JurisdictionGeoResponse": {
        "properties": {
          "jurisdictionGeoArray": {
            "items": {
              "$ref": "#/components/schemas/JurisdictionGeo"
            },
            "maxLength": 100,
            "type": "array"
          },
          "nextPageAPI": {
            "description": "Link to next page.",
            "example": null,
            "format": "uri",
            "maxLength": 2147,
            "minLength": 1,
            "nullable": true,
            "type": "string"
          },
          "object": {
            "default": "JurisdictionGeoResponse",
            "example": "JurisdictionGeoResponse",
            "maxLength": 23,
            "minLength": 23,
            "nullable": false,
            "type": "string"
          },
          "pageNumber": {
            "description": "Page number for which results where obtained.",
            "example": 1,
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "integer"
          },
          "previousPageAPI": {
            "description": "Link to previous page.",
            "example": null,
            "format": "uri",
            "maxLength": 2146,
            "minLength": 1,
            "nullable": true,
            "type": "string"
          },
          "totalCount": {
            "description": "Total number of matches found.",
            "example": 1,
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "integer"
          },
          "totalPages": {
            "description": "Total number of pages to obtain all the objects.",
            "example": 1,
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "integer"
          }
        },
        "required": [
          "object",
          "jurisdictionGeoArray",
          "nextPageAPI",
          "previousPageAPI",
          "pageNumber",
          "totalPages",
          "totalCount"
        ],
        "title": "JurisdictionGeoResponse",
        "type": "object",
        "x-unicourt-container": false
      },
      "LastTrackedDetails": {
        "properties": {
          "lastTrackDate": {
            "description": "The date and time when the case was tracked for this account.",
            "example": "2020-05-14T11:51:27+00:00",
            "format": "date-time",
            "maxLength": 25,
            "minLength": 25,
            "nullable": true,
            "type": "string"
          },
          "lastTrackException": {
            "$ref": "#/components/schemas/Exception"
          },
          "object": {
            "default": "LastTrackedDetails",
            "description": "Name of the object.",
            "example": "LastTrackedDetails",
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          },
          "pacerOptions": {
            "$ref": "#/components/schemas/CaseUpdatePacerOptionsResponse"
          }
        },
        "required": [
          "object",
          "pacerOptions",
          "lastTrackDate",
          "lastTrackException"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "LawFirmAnalyticsAPI": {
        "properties": {
          "associatedNormAttorneyAPI": {
            "format": "uri",
            "maxLength": 255,
            "nullable": false,
            "type": "string",
            "x-logical-reference": "AssociatedNormAttorneysForNormLawFirmAPI"
          },
          "associatedNormJudgeAPI": {
            "format": "uri",
            "maxLength": 255,
            "nullable": false,
            "type": "string",
            "x-logical-reference": "AssociatedNormJudgesForNormLawFirmAPI"
          },
          "associatedNormPartiesAPI": {
            "format": "uri",
            "maxLength": 255,
            "nullable": false,
            "type": "string",
            "x-logical-reference": "AssociatedNormPartiesForNormLawFirmAPI"
          },
          "caseCountAnalyticsByOpposingNormAttorneyAPI": {
            "format": "uri",
            "maxLength": 255,
            "nullable": true,
            "type": "string",
            "x-logical-reference": "CaseCountAnalyticsByOpposingNormAttorneyAPI"
          },
          "caseCountAnalyticsByOpposingNormLawFirmAPI": {
            "format": "uri",
            "maxLength": 255,
            "nullable": false,
            "type": "string",
            "x-logical-reference": "CaseCountAnalyticsByOpposingNormLawFirmAPI"
          },
          "caseCountAnalyticsByOpposingNormPartyAPI": {
            "format": "uri",
            "maxLength": 255,
            "nullable": true,
            "type": "string",
            "x-logical-reference": "CaseCountAnalyticsByOpposingNormPartyAPI"
          },
          "normLawFirmAPI": {
            "description": "Link to Details for the Law Firm.",
            "format": "uri",
            "maxLength": 255,
            "nullable": false,
            "type": "string",
            "x-logical-reference": "NormLawFirmAPI"
          },
          "object": {
            "default": "LawFirmAnalyticsAPI",
            "maxLength": 19,
            "nullable": false,
            "type": "string"
          }
        },
        "required": [
          "object",
          "normLawFirmAPI",
          "associatedNormAttorneyAPI",
          "associatedNormJudgeAPI",
          "associatedNormPartiesAPI",
          "caseCountAnalyticsByOpposingNormAttorneyAPI",
          "caseCountAnalyticsByOpposingNormLawFirmAPI",
          "caseCountAnalyticsByOpposingNormPartyAPI"
        ],
        "title": "LawFirmAnalyticsAPI",
        "type": "object",
        "x-unicourt-container": false
      },
      "MatchedObject": {
        "nullable": true,
        "properties": {
          "highlightSnippet": {
            "example": "<b>CASEic46ed4faeb9b8</b>",
            "maxLength": 10000,
            "minLength": 1,
            "nullable": false,
            "type": "string"
          },
          "matchedObjectAPI": {
            "example": "https://enterpriseapi.unicourt.com/case/CASEic46ed4faeb9b8",
            "format": "uri",
            "maxLength": 2048,
            "minLength": 1,
            "nullable": false,
            "type": "string"
          },
          "matchedObjectAttribute": {
            "example": "caseId",
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "string"
          },
          "matchedObjectId": {
            "example": "CASEic46ed4faeb9b8",
            "maxLength": 18,
            "minLength": 17,
            "nullable": false,
            "type": "string"
          },
          "matchedObjectName": {
            "example": "Case",
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "string"
          },
          "object": {
            "default": "MatchedObject",
            "example": "MatchedObject",
            "maxLength": 13,
            "minLength": 13,
            "nullable": false,
            "type": "string"
          }
        },
        "required": [
          "object",
          "matchedObjectId",
          "matchedObjectName",
          "matchedObjectAttribute",
          "highlightSnippet",
          "matchedObjectAPI"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "NatureOfSuit": {
        "description": "Nature Of Suit for a case.",
        "nullable": true,
        "properties": {
          "code": {
            "description": "Nos Code from the source site which is extracted from the sourceText.",
            "example": 62,
            "nullable": false,
            "type": "integer"
          },
          "name": {
            "description": "Code Name from the source site which is extracted from the sourceText.",
            "example": "Dischargeability",
            "maxLength": 255,
            "nullable": true,
            "type": "string"
          },
          "object": {
            "default": "NatureOfSuit",
            "description": "Name of the object",
            "maxLength": 12,
            "minLength": 12,
            "nullable": false,
            "type": "string"
          },
          "section": {
            "description": "Section of a nos code extracted from the sourceText.",
            "example": "523(a)(2), false pretenses, false representation, actual fraud",
            "maxLength": 255,
            "nullable": true,
            "type": "string"
          },
          "sourceText": {
            "description": "Source nos code data from the court site.",
            "example": "62 Dischargeability - 523(a)(2), false pretenses, false representation, actual fraud",
            "maxLength": 500,
            "nullable": true,
            "type": "string"
          }
        },
        "required": [
          "object",
          "sourceText",
          "code",
          "name",
          "section"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "NormAttorney": {
        "description": "Norm Attorney",
        "properties": {
          "attorneyAnalyticsAPI": {
            "$ref": "#/components/schemas/AttorneyAnalyticsAPI"
          },
          "barRecordArray": {
            "items": {
              "$ref": "#/components/schemas/BarRecord"
            },
            "type": "array"
          },
          "caseAnalyticsAPI": {
            "$ref": "#/components/schemas/CaseAnalyticsAPI"
          },
          "caseSearchAPI": {
            "format": "uri",
            "maxLength": 255,
            "nullable": false,
            "type": "string",
            "x-logical-reference": "CaseSearchAPI"
          },
          "firstName": {
            "maxLength": 500,
            "nullable": false,
            "type": "string"
          },
          "hasAssociatedPublicData": {
            "type": "boolean"
          },
          "lastName": {
            "maxLength": 500,
            "nullable": false,
            "type": "string"
          },
          "middleName": {
            "maxLength": 500,
            "nullable": true,
            "type": "string"
          },
          "name": {
            "maxLength": 500,
            "nullable": false,
            "type": "string"
          },
          "normAttorneyId": {
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          },
          "object": {
            "default": "NormAttorney",
            "maxLength": 12,
            "nullable": false,
            "type": "string"
          },
          "similarNormAttorneyArray": {
            "items": {
              "$ref": "#/components/schemas/SimilarNormAttorney"
            },
            "type": "array"
          }
        },
        "required": [
          "object",
          "normAttorneyId",
          "name",
          "firstName",
          "middleName",
          "lastName",
          "caseSearchAPI",
          "caseAnalyticsAPI",
          "hasAssociatedPublicData",
          "barRecordArray",
          "attorneyAnalyticsAPI",
          "similarNormAttorneyArray"
        ],
        "title": "NormAttorney",
        "type": "object",
        "x-unicourt-container": false
      },
      "NormAttorneySearchResponse": {
        "properties": {
          "nextPageAPI": {
            "description": "Link to next page.",
            "example": null,
            "format": "uri",
            "maxLength": 2120,
            "minLength": 1,
            "nullable": true,
            "type": "string"
          },
          "normAttorneySearchId": {
            "description": "Query been sent by client",
            "example": "ASRCe8eCknX9E8pQQ6",
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          },
          "normAttorneySearchResultArray": {
            "items": {
              "$ref": "#/components/schemas/NormAttorneySearchResult"
            },
            "maxLength": 10,
            "type": "array"
          },
          "object": {
            "default": "NormAttorneySearchResponse",
            "example": "NormAttorneySearchResponse",
            "maxLength": 26,
            "minLength": 26,
            "nullable": false,
            "type": "string"
          },
          "pageNumber": {
            "example": 1,
            "maxLength": 4,
            "minLength": 1,
            "nullable": false,
            "type": "integer"
          },
          "previousPageAPI": {
            "description": "Link to previous page.",
            "example": null,
            "format": "uri",
            "maxLength": 2119,
            "minLength": 1,
            "nullable": true,
            "type": "string"
          },
          "q": {
            "description": "Query been sent by client",
            "example": "normAttorneyId%3A%22NATYabUuTuEiuiRzc%22",
            "maxLength": 2048,
            "minLength": 3,
            "nullable": false,
            "type": "string"
          },
          "totalCount": {
            "description": "The number of matches that were found in the index.",
            "example": 1,
            "maxLength": 11,
            "minLength": 1,
            "nullable": false,
            "type": "integer"
          },
          "totalPages": {
            "description": "Total pages for matches that were found in the index.",
            "example": 1,
            "maxLength": 4,
            "minLength": 1,
            "nullable": false,
            "type": "integer"
          }
        },
        "required": [
          "object",
          "normAttorneySearchResultArray",
          "q",
          "normAttorneySearchId",
          "nextPageAPI",
          "previousPageAPI",
          "pageNumber",
          "totalPages",
          "totalCount"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "NormAttorneySearchResult": {
        "properties": {
          "firstFetchDate": {
            "example": "2020-04-25T10:42:46+00:00",
            "format": "date-time",
            "maxLength": 25,
            "minLength": 25,
            "nullable": false,
            "type": "string"
          },
          "hasAssociatedPublicData": {
            "example": true,
            "maxLength": 5,
            "minLength": 4,
            "nullable": false,
            "type": "boolean"
          },
          "lastFetchDate": {
            "example": "2020-04-25T10:42:46+00:00",
            "format": "date-time",
            "maxLength": 25,
            "minLength": 25,
            "nullable": false,
            "type": "string"
          },
          "matchedObjectArray": {
            "items": {
              "$ref": "#/components/schemas/MatchedObject"
            },
            "type": "array"
          },
          "name": {
            "example": "MARJOLEIN VAN DEN BOSCH-BROEREN",
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "string"
          },
          "normAttorneyDetailsAPI": {
            "example": "https://enterpriseapi.unicourt.com/normAttorney/NATYabUuTuEiuiRzc/",
            "format": "uri",
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "string"
          },
          "normAttorneyId": {
            "example": "NATYabUuTuEiuiRzc",
            "maxLength": 18,
            "minLength": 17,
            "nullable": false,
            "type": "string"
          },
          "object": {
            "default": "NormAttorneySearchResult",
            "example": "NormAttorneySearchResult",
            "maxLength": 24,
            "minLength": 24,
            "nullable": false,
            "type": "string"
          }
        },
        "required": [
          "object",
          "normAttorneyId",
          "name",
          "firstFetchDate",
          "lastFetchDate",
          "hasAssociatedPublicData",
          "normAttorneyDetailsAPI",
          "matchedObjectArray"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "NormCorporateGroup": {
        "properties": {
          "normCorporateGroupId": {
            "maxLength": 18,
            "minLength": 18,
            "nullable": true,
            "type": "string"
          },
          "normCorporateGroupName": {
            "maxLength": 500,
            "nullable": true,
            "type": "string"
          },
          "object": {
            "default": "NormCorporateGroup",
            "maxLength": 18,
            "nullable": false,
            "type": "string"
          }
        },
        "required": [
          "object",
          "normCorporateGroupId",
          "normCorporateGroupName"
        ],
        "title": "NormCorporateGroup",
        "type": "object",
        "x-unicourt-container": false
      },
      "NormJudge": {
        "description": "Norm Judge",
        "properties": {
          "caseAnalyticsAPI": {
            "$ref": "#/components/schemas/CaseAnalyticsAPI"
          },
          "caseSearchAPI": {
            "format": "uri",
            "maxLength": 255,
            "nullable": false,
            "type": "string",
            "x-logical-reference": "CaseSearchAPI"
          },
          "firstName": {
            "maxLength": 500,
            "nullable": false,
            "type": "string"
          },
          "hasAssociatedPublicData": {
            "type": "boolean"
          },
          "judgeAnalyticsAPI": {
            "$ref": "#/components/schemas/JudgeAnalyticsAPI"
          },
          "judicialDataArray": {
            "items": {
              "$ref": "#/components/schemas/NormJudgePublicData"
            },
            "type": "array"
          },
          "lastName": {
            "maxLength": 500,
            "nullable": false,
            "type": "string"
          },
          "middleName": {
            "maxLength": 500,
            "nullable": true,
            "type": "string"
          },
          "name": {
            "maxLength": 500,
            "nullable": false,
            "type": "string"
          },
          "normJudgeId": {
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          },
          "object": {
            "default": "NormJudge",
            "maxLength": 9,
            "nullable": false,
            "type": "string"
          }
        },
        "required": [
          "object",
          "normJudgeId",
          "name",
          "firstName",
          "middleName",
          "lastName",
          "caseSearchAPI",
          "caseAnalyticsAPI",
          "hasAssociatedPublicData",
          "judicialDataArray",
          "judgeAnalyticsAPI"
        ],
        "title": "NormJudge",
        "type": "object",
        "x-unicourt-container": false
      },
      "NormJudgePublicData": {
        "description": "This contains the Judge Public details that is obtained from various sources.",
        "properties": {
          "abaRatings": {
            "description": "American Bar Association (ABA) Rating of the Judge.",
            "nullable": true,
            "properties": {
              "rating": {
                "description": "rating",
                "maxLength": 50,
                "nullable": true,
                "type": "string"
              },
              "year": {
                "description": "Year when Rating was recieved.",
                "nullable": true,
                "type": "integer"
              }
            },
            "required": [
              "rating",
              "year"
            ],
            "type": "object"
          },
          "aliasArray": {
            "description": "Other Names of the Judge.",
            "items": {
              "maxLength": 250,
              "nullable": false,
              "type": "string"
            },
            "type": "array"
          },
          "bio": {
            "properties": {
              "birthCity": {
                "description": "The Birth City of the Judge.",
                "maxLength": 50,
                "nullable": true,
                "type": "string"
              },
              "birthDate": {
                "description": "The Date of Birth of the Judge.",
                "format": "date-time",
                "maxLength": 25,
                "nullable": true,
                "type": "string"
              },
              "birthState": {
                "description": "The Birth State of the Judge.",
                "maxLength": 50,
                "nullable": true,
                "type": "string"
              },
              "deathCity": {
                "description": "The Death City of the Judge.",
                "maxLength": 50,
                "nullable": true,
                "type": "string"
              },
              "deathDate": {
                "description": "The Date of the Death of the Judge.",
                "format": "date-time",
                "maxLength": 25,
                "nullable": true,
                "type": "string"
              },
              "deathState": {
                "description": "The Death State of the Judge.",
                "maxLength": 50,
                "nullable": true,
                "type": "string"
              },
              "ethnicity": {
                "description": "Ethnic Group of the Judge.",
                "maxLength": 50,
                "nullable": true,
                "type": "string"
              },
              "politicalAffiliation": {
                "description": "The Political Affiliation of the Judge.",
                "maxLength": 50,
                "nullable": true,
                "type": "string"
              }
            },
            "required": [
              "ethnicity",
              "birthCity",
              "birthDate",
              "birthState",
              "deathCity",
              "deathDate",
              "deathState",
              "politicalAffiliation"
            ],
            "type": "object"
          },
          "contact": {
            "$ref": "#/components/schemas/Contact"
          },
          "educationArray": {
            "description": "The Education History of the judge.",
            "items": {
              "properties": {
                "degree": {
                  "description": "The Degree Awarded to the Judge",
                  "maxLength": 250,
                  "nullable": true,
                  "type": "string"
                },
                "school": {
                  "description": "The University which awarded the degree to the Judge.",
                  "maxLength": 250,
                  "nullable": true,
                  "type": "string"
                },
                "year": {
                  "description": "The year when the degree was awarded.",
                  "nullable": true,
                  "type": "integer"
                }
              },
              "required": [
                "degree",
                "year",
                "school"
              ],
              "type": "object"
            },
            "maxLength": 250,
            "type": "array"
          },
          "firstFetchDate": {
            "format": "date-time",
            "maxLength": 25,
            "nullable": true,
            "type": "string"
          },
          "judicialSource": {
            "description": "The judicial source of the Judge",
            "properties": {
              "name": {
                "description": "Name of the Judicial Data Source",
                "maxLength": 500,
                "nullable": false,
                "type": "string"
              },
              "type": {
                "description": "Type of acquisition of the data source",
                "enum": [
                  "Website",
                  "Other"
                ],
                "maxLength": 7,
                "nullable": false,
                "type": "string"
              },
              "url": {
                "description": "URL of the data source, if type is Website",
                "maxLength": 150,
                "nullable": true,
                "type": "string"
              }
            },
            "required": [
              "name",
              "type",
              "url"
            ],
            "type": "object"
          },
          "judicialStatus": {
            "description": "The judicial status of the Judge",
            "maxLength": 50,
            "nullable": true,
            "type": "string"
          },
          "lastFetchDate": {
            "format": "date-time",
            "maxLength": 25,
            "nullable": true,
            "type": "string"
          },
          "lastFetchDateWithUpdates": {
            "description": "Last Fetch Date of the Judge Update.",
            "format": "date-time",
            "maxLength": 25,
            "nullable": true,
            "type": "string"
          },
          "nameHistoryArray": {
            "description": "Name changes of the Judge. Change in the official name. Other names go to Alias array.",
            "items": {
              "properties": {
                "firstName": {
                  "maxLength": 500,
                  "nullable": true,
                  "type": "string"
                },
                "isVisible": {
                  "type": "boolean"
                },
                "lastName": {
                  "maxLength": 500,
                  "nullable": true,
                  "type": "string"
                },
                "middleName": {
                  "maxLength": 500,
                  "nullable": true,
                  "type": "string"
                },
                "prefix": {
                  "maxLength": 5,
                  "nullable": true,
                  "type": "string"
                },
                "suffix": {
                  "maxLength": 5,
                  "nullable": true,
                  "type": "string"
                }
              },
              "required": [
                "firstName",
                "middleName",
                "lastName",
                "prefix",
                "suffix",
                "isVisible"
              ],
              "type": "object"
            },
            "type": "array"
          },
          "object": {
            "default": "NormJudgePublicData",
            "maxLength": 19,
            "nullable": false,
            "type": "string"
          },
          "professionalCareerArray": {
            "description": "The non-judicial career history of the judge.",
            "items": {
              "maxLength": 2000,
              "nullable": false,
              "type": "string"
            },
            "type": "array"
          },
          "serviceHistoryArray": {
            "description": "Judicial History of the Judge.",
            "items": {
              "$ref": "#/components/schemas/ServiceHistory"
            },
            "type": "array"
          }
        },
        "required": [
          "object",
          "judicialStatus",
          "judicialSource",
          "abaRatings",
          "aliasArray",
          "bio",
          "contact",
          "educationArray",
          "professionalCareerArray",
          "serviceHistoryArray",
          "nameHistoryArray",
          "firstFetchDate",
          "lastFetchDate",
          "lastFetchDateWithUpdates"
        ],
        "title": "NormJudgePublicData",
        "type": "object",
        "x-unicourt-container": false
      },
      "NormJudgeSearchResponse": {
        "properties": {
          "nextPageAPI": {
            "description": "Link to next page.",
            "example": null,
            "format": "uri",
            "maxLength": 2117,
            "minLength": 1,
            "nullable": true,
            "type": "string"
          },
          "normJudgeSearchId": {
            "description": "Query been sent by client",
            "example": "JSRCEvsmuaffjKjW9T",
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          },
          "normJudgeSearchResultArray": {
            "items": {
              "$ref": "#/components/schemas/NormJudgeSearchResult"
            },
            "maxLength": 10,
            "type": "array"
          },
          "object": {
            "default": "NormJudgeSearchResponse",
            "example": "NormJudgeSearchResponse",
            "maxLength": 23,
            "minLength": 23,
            "nullable": false,
            "type": "string"
          },
          "pageNumber": {
            "example": 1,
            "maxLength": 4,
            "minLength": 1,
            "nullable": false,
            "type": "integer"
          },
          "previousPageAPI": {
            "description": "Link to previous page.",
            "example": null,
            "format": "uri",
            "maxLength": 2116,
            "minLength": 1,
            "nullable": true,
            "type": "string"
          },
          "q": {
            "description": "Query been sent by client",
            "example": "normJudgeId%3A%22NJUDXnbhERCyKSaUj%22",
            "maxLength": 2048,
            "minLength": 3,
            "nullable": false,
            "type": "string"
          },
          "totalCount": {
            "description": "The number of matches that were found in the index.",
            "example": 1,
            "maxLength": 11,
            "minLength": 1,
            "nullable": false,
            "type": "integer"
          },
          "totalPages": {
            "description": "Total pages for matches that were found in the index.",
            "example": 1,
            "maxLength": 4,
            "minLength": 1,
            "nullable": false,
            "type": "integer"
          }
        },
        "required": [
          "object",
          "normJudgeSearchResultArray",
          "q",
          "normJudgeSearchId",
          "nextPageAPI",
          "previousPageAPI",
          "pageNumber",
          "totalPages",
          "totalCount"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "NormJudgeSearchResult": {
        "properties": {
          "firstFetchDate": {
            "example": "2020-04-25T10:42:46+00:00",
            "format": "date-time",
            "maxLength": 25,
            "minLength": 25,
            "nullable": false,
            "type": "string"
          },
          "lastFetchDate": {
            "example": "2020-04-25T10:42:46+00:00",
            "format": "date-time",
            "maxLength": 25,
            "minLength": 25,
            "nullable": false,
            "type": "string"
          },
          "matchedObjectArray": {
            "items": {
              "$ref": "#/components/schemas/MatchedObject"
            },
            "type": "array"
          },
          "name": {
            "example": "JOHN MURHPY",
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "string"
          },
          "normJudgeDetailsAPI": {
            "example": "https://enterpriseapi.unicourt.com/normJudge/NJUDXnbhERCyKSaUj",
            "format": "uri",
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "string"
          },
          "normJudgeId": {
            "example": "NJUDXnbhERCyKSaUj",
            "maxLength": 18,
            "minLength": 17,
            "nullable": false,
            "type": "string"
          },
          "object": {
            "default": "NormJudgeSearchResult",
            "example": "NormJudgeSearchResult",
            "maxLength": 21,
            "minLength": 21,
            "nullable": false,
            "type": "string"
          }
        },
        "required": [
          "object",
          "normJudgeId",
          "name",
          "firstFetchDate",
          "lastFetchDate",
          "normJudgeDetailsAPI",
          "matchedObjectArray"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "NormLawFirm": {
        "description": "Schema for Norm Law Firm containing Organization sub-field.",
        "properties": {
          "caseAnalyticsAPI": {
            "$ref": "#/components/schemas/CaseAnalyticsAPI"
          },
          "caseSearchAPI": {
            "format": "uri",
            "maxLength": 255,
            "nullable": false,
            "type": "string",
            "x-logical-reference": "CaseSearchAPI"
          },
          "lawFirmAnalyticsAPI": {
            "$ref": "#/components/schemas/LawFirmAnalyticsAPI"
          },
          "name": {
            "maxLength": 500,
            "nullable": false,
            "type": "string"
          },
          "normLawFirmId": {
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          },
          "normOrganizationData": {
            "$ref": "#/components/schemas/NormOrganization"
          },
          "object": {
            "default": "NormLawFirm",
            "maxLength": 11,
            "nullable": false,
            "type": "string"
          }
        },
        "required": [
          "object",
          "normLawFirmId",
          "name",
          "caseSearchAPI",
          "caseAnalyticsAPI",
          "normOrganizationData",
          "lawFirmAnalyticsAPI"
        ],
        "title": "NormLawFirm",
        "type": "object",
        "x-unicourt-container": false
      },
      "NormLawFirmSearchResponse": {
        "properties": {
          "nextPageAPI": {
            "description": "Link to next page.",
            "example": null,
            "format": "uri",
            "maxLength": 2119,
            "minLength": 1,
            "nullable": true,
            "type": "string"
          },
          "normLawFirmSearchId": {
            "description": "Query been sent by client",
            "example": "LSRCTQ6CCfmFNg472y",
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          },
          "normLawFirmSearchResultArray": {
            "items": {
              "$ref": "#/components/schemas/NormLawFirmSearchResult"
            },
            "maxLength": 10,
            "type": "array"
          },
          "object": {
            "default": "NormLawFirmSearchResponse",
            "example": "NormLawFirmSearchResponse",
            "maxLength": 25,
            "minLength": 25,
            "nullable": false,
            "type": "string"
          },
          "pageNumber": {
            "example": 1,
            "maxLength": 4,
            "minLength": 1,
            "nullable": false,
            "type": "integer"
          },
          "previousPageAPI": {
            "description": "Link to previous page.",
            "example": null,
            "format": "uri",
            "maxLength": 2118,
            "minLength": 1,
            "nullable": true,
            "type": "string"
          },
          "q": {
            "description": "Query been sent by client",
            "example": "normLawFirmId%3A%22NORGgooQKwAYeRhcv%22",
            "maxLength": 2048,
            "minLength": 3,
            "nullable": false,
            "type": "string"
          },
          "totalCount": {
            "description": "The number of matches that were found in the index.",
            "example": 1,
            "maxLength": 11,
            "minLength": 1,
            "nullable": false,
            "type": "integer"
          },
          "totalPages": {
            "description": "Total pages for matches that were found in the index.",
            "example": 1,
            "maxLength": 4,
            "minLength": 1,
            "nullable": false,
            "type": "integer"
          }
        },
        "required": [
          "object",
          "normLawFirmSearchResultArray",
          "q",
          "normLawFirmSearchId",
          "nextPageAPI",
          "previousPageAPI",
          "pageNumber",
          "totalPages",
          "totalCount"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "NormLawFirmSearchResult": {
        "properties": {
          "firstFetchDate": {
            "example": "2020-04-25T10:42:46+00:00",
            "format": "date-time",
            "maxLength": 25,
            "minLength": 25,
            "nullable": false,
            "type": "string"
          },
          "lastFetchDate": {
            "example": "2020-04-25T10:42:46+00:00",
            "format": "date-time",
            "maxLength": 25,
            "minLength": 25,
            "nullable": false,
            "type": "string"
          },
          "matchedObjectArray": {
            "items": {
              "$ref": "#/components/schemas/MatchedObject"
            },
            "type": "array"
          },
          "name": {
            "example": "MIDLAND CREDIT MANAGEMENT, INC.",
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "string"
          },
          "normLawFirmDetailsAPI": {
            "example": "https://enterpriseapi.unicourt.com/normLawFirm/NORGgooQKwAYeRhcv/",
            "format": "uri",
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "string"
          },
          "normLawFirmId": {
            "example": "NORGgooQKwAYeRhcv",
            "maxLength": 18,
            "minLength": 17,
            "nullable": false,
            "type": "string"
          },
          "object": {
            "default": "NormLawFirmSearchResult",
            "example": "NormLawFirmSearchResult",
            "maxLength": 23,
            "minLength": 23,
            "nullable": false,
            "type": "string"
          }
        },
        "required": [
          "object",
          "normLawFirmId",
          "name",
          "firstFetchDate",
          "lastFetchDate",
          "normLawFirmDetailsAPI",
          "matchedObjectArray"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "NormOrganization": {
        "properties": {
          "cik": {
            "maxLength": 15,
            "nullable": true,
            "type": "string"
          },
          "isInvolvedInLitigation": {
            "type": "boolean"
          },
          "lei": {
            "maxLength": 250,
            "nullable": true,
            "type": "string"
          },
          "naics": {
            "maxLength": 250,
            "nullable": true,
            "type": "string"
          },
          "naicsDescription": {
            "maxLength": 250,
            "nullable": true,
            "type": "string"
          },
          "name": {
            "maxLength": 500,
            "nullable": false,
            "type": "string"
          },
          "normCorporateGroupArray": {
            "items": {
              "$ref": "#/components/schemas/NormCorporateGroup"
            },
            "type": "array"
          },
          "normOrganizationId": {
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          },
          "normPartyAPI": {
            "format": "uri",
            "maxLength": 255,
            "nullable": false,
            "type": "string"
          },
          "object": {
            "default": "NormOrganization",
            "maxLength": 16,
            "nullable": false,
            "type": "string"
          },
          "organizationType": {
            "enum": [
              "Business",
              "GovernmentAgency"
            ],
            "maxLength": 100,
            "nullable": false,
            "type": "string"
          },
          "sic": {
            "maxLength": 10,
            "nullable": true,
            "type": "string"
          },
          "sicDescription": {
            "maxLength": 100,
            "nullable": true,
            "type": "string"
          },
          "sosDataArray": {
            "items": {
              "$ref": "#/components/schemas/SOSData"
            },
            "type": "array"
          },
          "tickerArray": {
            "items": {
              "properties": {
                "exchange": {
                  "maxLength": 250,
                  "nullable": true,
                  "type": "string"
                },
                "symbols": {
                  "items": {
                    "maxLength": 250,
                    "nullable": false,
                    "type": "string"
                  },
                  "type": "array"
                }
              },
              "required": [
                "exchange",
                "symbols"
              ],
              "type": "object"
            },
            "maxLength": 250,
            "type": "array"
          }
        },
        "required": [
          "object",
          "normOrganizationId",
          "name",
          "organizationType",
          "lei",
          "cik",
          "tickerArray",
          "naics",
          "naicsDescription",
          "sic",
          "sicDescription",
          "isInvolvedInLitigation",
          "normPartyAPI",
          "normCorporateGroupArray",
          "sosDataArray"
        ],
        "title": "NormOrganization",
        "type": "object",
        "x-unicourt-container": false
      },
      "NormParty": {
        "description": "Norm Party",
        "properties": {
          "caseAnalyticsAPI": {
            "$ref": "#/components/schemas/CaseAnalyticsAPI"
          },
          "caseSearchAPI": {
            "format": "uri",
            "maxLength": 255,
            "nullable": false,
            "type": "string",
            "x-logical-reference": "CaseSearchAPI"
          },
          "individualData": {
            "description": "* Only applicable if the Party is an Individual.\n",
            "nullable": true,
            "properties": {
              "firstName": {
                "maxLength": 500,
                "nullable": true,
                "type": "string"
              },
              "lastName": {
                "maxLength": 500,
                "nullable": true,
                "type": "string"
              },
              "middleName": {
                "maxLength": 500,
                "nullable": true,
                "type": "string"
              },
              "name": {
                "maxLength": 500,
                "nullable": true,
                "type": "string"
              }
            },
            "required": [
              "name",
              "firstName",
              "middleName",
              "lastName"
            ],
            "title": "Individual",
            "type": "object"
          },
          "name": {
            "maxLength": 500,
            "nullable": false,
            "type": "string"
          },
          "normOrganizationData": {
            "$ref": "#/components/schemas/NormOrganization"
          },
          "normPartyId": {
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          },
          "object": {
            "default": "NormParty",
            "maxLength": 9,
            "nullable": false,
            "type": "string"
          },
          "partyAnalyticsAPI": {
            "$ref": "#/components/schemas/PartyAnalyticsAPI"
          },
          "partyClassificationType": {
            "enum": [
              "Individual",
              "Organization"
            ],
            "maxLength": 12,
            "nullable": false,
            "type": "string"
          },
          "relatedNormPartyArray": {
            "items": {
              "$ref": "#/components/schemas/RelatedNormParty"
            },
            "type": "array"
          }
        },
        "required": [
          "object",
          "normPartyId",
          "name",
          "partyClassificationType",
          "caseSearchAPI",
          "caseAnalyticsAPI",
          "individualData",
          "normOrganizationData",
          "partyAnalyticsAPI",
          "relatedNormPartyArray"
        ],
        "title": "NormParty",
        "type": "object",
        "x-unicourt-container": false
      },
      "NormPartySearchResponse": {
        "properties": {
          "nextPageAPI": {
            "description": "Link to next page.",
            "example": null,
            "format": "uri",
            "maxLength": 2117,
            "minLength": 1,
            "nullable": true,
            "type": "string"
          },
          "normPartySearchId": {
            "description": "Query been sent by client",
            "example": "PSRCMT69XMcMgmzyw7",
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          },
          "normPartySearchResultArray": {
            "items": {
              "$ref": "#/components/schemas/NormPartySearchResult"
            },
            "maxLength": 10,
            "type": "array"
          },
          "object": {
            "default": "NormPartySearchResponse",
            "example": "NormPartySearchResponse",
            "maxLength": 23,
            "minLength": 23,
            "nullable": false,
            "type": "string"
          },
          "pageNumber": {
            "example": 1,
            "maxLength": 4,
            "minLength": 1,
            "nullable": false,
            "type": "integer"
          },
          "previousPageAPI": {
            "description": "Link to previous page.",
            "example": null,
            "format": "uri",
            "maxLength": 2116,
            "minLength": 1,
            "nullable": true,
            "type": "string"
          },
          "q": {
            "description": "Query been sent by client",
            "example": "normPartyId%3A%22NORGSCPx3qNeJiqye%22",
            "maxLength": 2048,
            "minLength": 3,
            "nullable": false,
            "type": "string"
          },
          "totalCount": {
            "description": "The number of matches that were found in the index.",
            "example": 1,
            "maxLength": 11,
            "minLength": 1,
            "nullable": false,
            "type": "integer"
          },
          "totalPages": {
            "description": "Total pages for matches that were found in the index.",
            "example": 1,
            "maxLength": 4,
            "minLength": 1,
            "nullable": false,
            "type": "integer"
          }
        },
        "required": [
          "object",
          "normPartySearchResultArray",
          "q",
          "normPartySearchId",
          "nextPageAPI",
          "previousPageAPI",
          "pageNumber",
          "totalPages",
          "totalCount"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "NormPartySearchResult": {
        "properties": {
          "firstFetchDate": {
            "example": "2020-01-25T10:42:46+00:00",
            "format": "date-time",
            "maxLength": 25,
            "minLength": 25,
            "nullable": false,
            "type": "string"
          },
          "lastFetchDate": {
            "example": "2020-04-25T08:42:46+00:00",
            "format": "date-time",
            "maxLength": 25,
            "minLength": 25,
            "nullable": false,
            "type": "string"
          },
          "matchedObjectArray": {
            "items": {
              "$ref": "#/components/schemas/MatchedObject"
            },
            "type": "array"
          },
          "name": {
            "example": "JOHN SAUNDERS",
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "string"
          },
          "normPartyDetailsAPI": {
            "example": "https://enterpriseapi.unicourt.com/normParty/NORGSCPx3qNeJiqye/",
            "format": "uri",
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "string"
          },
          "normPartyId": {
            "example": "NORGSCPx3qNeJiqye",
            "maxLength": 18,
            "minLength": 17,
            "nullable": false,
            "type": "string"
          },
          "object": {
            "default": "NormPartySearchResult",
            "example": "NormPartySearchResult",
            "maxLength": 21,
            "minLength": 21,
            "nullable": false,
            "type": "string"
          },
          "partyClassificationType": {
            "example": "BUSINESS",
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "string"
          }
        },
        "required": [
          "object",
          "normPartyId",
          "name",
          "partyClassificationType",
          "firstFetchDate",
          "lastFetchDate",
          "normPartyDetailsAPI",
          "matchedObjectArray"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "PACERCaseSearchContent": {
        "properties": {
          "object": {
            "default": "PACERCaseSearchContent",
            "description": "Name of the object",
            "maxLength": 22,
            "minLength": 22,
            "nullable": false,
            "type": "string"
          },
          "pclBankruptcyChapter": {
            "description": "This parameter represents the bankruptcy chapter of the case when it is present",
            "example": "13",
            "maxLength": 50,
            "nullable": true,
            "type": "string"
          },
          "pclCaseId": {
            "description": "Sequentially generated number that identifies the case.",
            "example": 12569,
            "type": "integer"
          },
          "pclCaseLink": {
            "description": "Link to case in the case management/electronic case files (CM/ECF) system at the court.",
            "example": "https://ecf.jpml.uscourts.gov/cgi-bin/iqquerymenu.pl?375295",
            "maxLength": 255,
            "nullable": true,
            "type": "string"
          },
          "pclCaseNumber": {
            "description": "The sequence number of the case.",
            "example": 96,
            "type": "integer"
          },
          "pclCaseNumberFull": {
            "description": "Case Number.",
            "example": "1:2002cv00096",
            "maxLength": 50,
            "nullable": true,
            "type": "string"
          },
          "pclCaseOffice": {
            "description": "The divisional office in which the case was filed.",
            "example": "1",
            "maxLength": 2,
            "nullable": true,
            "type": "string"
          },
          "pclCaseTitle": {
            "description": "Title of the case.",
            "example": "James Kelly v. Maria Poole",
            "maxLength": 255,
            "nullable": true,
            "type": "string"
          },
          "pclCaseType": {
            "description": "Code that identifies the type of case.",
            "example": "cv",
            "maxLength": 6,
            "nullable": true,
            "type": "string"
          },
          "pclCaseYear": {
            "description": "The year in which the case falls. Could be two or four digit.",
            "example": 2002,
            "type": "integer"
          },
          "pclCivilCtoNumber": {
            "description": "This parameter represents the civil cto number of the case when it is present",
            "example": "212",
            "maxLength": 50,
            "nullable": true,
            "type": "string"
          },
          "pclCivilDateDisposition": {
            "description": "This parameter represents the civil disposition date of the case when it is present",
            "example": "2002-05-13",
            "maxLength": 10,
            "nullable": true,
            "type": "string"
          },
          "pclCivilDateInitiated": {
            "description": "This parameter represents the civil initiated date of the case when it is present",
            "example": "2002-04-25",
            "maxLength": 10,
            "nullable": true,
            "type": "string"
          },
          "pclCivilDateTerminated": {
            "description": "This parameter represents the civil terminated date of the case when it is present",
            "example": "2010-05-10",
            "maxLength": 10,
            "nullable": true,
            "type": "string"
          },
          "pclCivilStatDisposition": {
            "description": "This parameter represents the civil stat disposition of the case when it is present",
            "example": "CTO Final",
            "maxLength": 50,
            "nullable": true,
            "type": "string"
          },
          "pclCivilStatInitiated": {
            "description": "This parameter represents the civil stat initiated of the case when it is present",
            "example": "CTO Filed",
            "maxLength": 50,
            "nullable": true,
            "type": "string"
          },
          "pclCivilStatTerminated": {
            "description": "This parameter represents the civil stat terminated of the case when it is present",
            "example": "Closed",
            "maxLength": 50,
            "nullable": true,
            "type": "string"
          },
          "pclCivilTransferee": {
            "description": "This parameter represents the civil transferee of the case when it is present",
            "example": "2006-69199",
            "maxLength": 50,
            "nullable": true,
            "type": "string"
          },
          "pclCourtId": {
            "description": "The general geographical region or specific court district. The court ID is the abbreviation of the court location combined with the court type (dc or bk). Please refer the Appendix B",
            "example": "jpmldc",
            "maxLength": 6,
            "nullable": true,
            "type": "string"
          },
          "pclDateDischarged": {
            "description": "This parameter represents the date discharged of the case when it is present",
            "example": "2006-06-10",
            "maxLength": 10,
            "nullable": true,
            "type": "string"
          },
          "pclDateDismissed": {
            "description": "This parameter represents the date dismissed of the case when it is present",
            "example": "2006-05-20",
            "maxLength": 10,
            "nullable": true,
            "type": "string"
          },
          "pclDateFiled": {
            "description": "Filing date of the case.",
            "example": "2002-08-15",
            "maxLength": 10,
            "nullable": true,
            "type": "string"
          },
          "pclDateReopened": {
            "description": "This parameter represents the date reopened of the case when it is present",
            "example": "2007-06-10",
            "maxLength": 10,
            "nullable": true,
            "type": "string"
          },
          "pclDateTermed": {
            "description": "This parameter represents the date termed of the case when it is present",
            "example": "2006-07-10",
            "maxLength": 10,
            "nullable": true,
            "type": "string"
          },
          "pclDisposition": {
            "description": "This parameter represents the disposition of the case when it is present",
            "example": "Dismissed for failure to pay filing fee",
            "maxLength": 100,
            "nullable": true,
            "type": "string"
          },
          "pclDispositionMethod": {
            "description": "This parameter represents the disposition method of the case when it is present",
            "example": "Dismissed for failure to pay filing fee",
            "maxLength": 100,
            "nullable": true,
            "type": "string"
          },
          "pclJointBankruptcyFlag": {
            "description": "This parameter represents the joint bankruptcy flag of the case when it is present",
            "example": "y",
            "maxLength": 50,
            "nullable": true,
            "type": "string"
          },
          "pclJointDischargedDate": {
            "description": "This parameter represents the joint discharged date of the case when it is present",
            "example": "2008-08-08",
            "maxLength": 10,
            "nullable": true,
            "type": "string"
          },
          "pclJointDismissedDate": {
            "description": "This parameter represents the joint dismissed date of the case when it is present",
            "example": "2008-08-08",
            "maxLength": 10,
            "nullable": true,
            "type": "string"
          },
          "pclJointDispositionMethod": {
            "description": "This parameter represents the joint disposition method of the case when it is present",
            "example": "Hardship Discharge",
            "maxLength": 100,
            "nullable": true,
            "type": "string"
          },
          "pclJpmlNumber": {
            "description": "JPML Case Seed number.",
            "example": 875,
            "nullable": true,
            "type": "integer"
          },
          "pclJurisdictionType": {
            "description": "Link to case in the case management/electronic case files (CM/ECF) system at the court.",
            "enum": [
              "Appellate",
              "Bankruptcy",
              "Criminal",
              "Civil",
              "Multi-district Litigation"
            ],
            "example": "Appellate",
            "type": "string"
          },
          "pclMdlCourtId": {
            "description": "Which court does this mdl belongs too.",
            "example": "mssdce",
            "maxLength": 10,
            "nullable": true,
            "type": "string"
          },
          "pclMdlDateOrdered": {
            "description": "This parameter represents the mdl date ordered of the case when it is present",
            "example": "2002-08-15",
            "maxLength": 10,
            "nullable": true,
            "type": "string"
          },
          "pclMdlDateReceived": {
            "description": "This parameter represents the mdl date received of the case when it is present",
            "example": "2002-08-15",
            "maxLength": 10,
            "nullable": true,
            "type": "string"
          },
          "pclMdlExtension": {
            "description": "This parameter represents the mdl extension of the case when it is present",
            "maxLength": 50,
            "nullable": true,
            "type": "string"
          },
          "pclMdlJudgeLastName": {
            "description": "This parameter represents the mdl judge lastname of the case when it is present",
            "maxLength": 50,
            "nullable": true,
            "type": "string"
          },
          "pclMdlLittype": {
            "description": "This parameter represents the mdl lit type of the case when it is present",
            "maxLength": 50,
            "nullable": true,
            "type": "string"
          },
          "pclMdlStatus": {
            "description": "This parameter represents the mdl status of the case when it is present",
            "maxLength": 50,
            "nullable": true,
            "type": "string"
          },
          "pclMdlTransferee": {
            "description": "This parameter represents the mdl transferee of the case when it is present",
            "maxLength": 50,
            "nullable": true,
            "type": "string"
          },
          "pclMdlTransfereeDistrict": {
            "description": "This parameter represents the mdl transferee district of the case when it is present",
            "maxLength": 50,
            "nullable": true,
            "type": "string"
          },
          "pclNatureOfSuit": {
            "description": "This parameter represents the nature of suit of the case when it is present",
            "example": "360",
            "maxLength": 50,
            "nullable": true,
            "type": "string"
          }
        },
        "required": [
          "object",
          "pclCaseLink",
          "pclJurisdictionType",
          "pclCaseId",
          "pclCaseNumberFull",
          "pclCaseTitle",
          "pclCaseOffice",
          "pclCaseNumber",
          "pclCaseType",
          "pclCaseYear",
          "pclCourtId",
          "pclDateFiled",
          "pclJpmlNumber",
          "pclMdlCourtId",
          "pclMdlDateOrdered",
          "pclMdlDateReceived",
          "pclMdlExtension",
          "pclMdlJudgeLastName",
          "pclMdlLittype",
          "pclMdlStatus",
          "pclMdlTransferee",
          "pclMdlTransfereeDistrict",
          "pclCivilCtoNumber",
          "pclCivilDateDisposition",
          "pclCivilDateInitiated",
          "pclCivilDateTerminated",
          "pclCivilStatDisposition",
          "pclCivilStatInitiated",
          "pclCivilStatTerminated",
          "pclCivilTransferee",
          "pclBankruptcyChapter",
          "pclDateDischarged",
          "pclDateDismissed",
          "pclDateReopened",
          "pclDateTermed",
          "pclDisposition",
          "pclDispositionMethod",
          "pclJointBankruptcyFlag",
          "pclJointDischargedDate",
          "pclJointDismissedDate",
          "pclJointDispositionMethod",
          "pclNatureOfSuit"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "PACERCaseSearchResults": {
        "properties": {
          "hasOnlyMetaInfo": {
            "description": "This field determines if the UniCourt Content has only meta information. If the value is true and you require to get the latest updates of the case you will need to make a request to the updateCase API.",
            "example": false,
            "type": "boolean"
          },
          "object": {
            "default": "PACERCaseSearchResults",
            "description": "Name of the object",
            "maxLength": 22,
            "minLength": 22,
            "nullable": false,
            "type": "string"
          },
          "pacerContent": {
            "$ref": "#/components/schemas/PACERCaseSearchContent"
          },
          "uniCourtContent": {
            "$ref": "#/components/schemas/CaseSearchResult"
          }
        },
        "required": [
          "object",
          "pacerContent",
          "hasOnlyMetaInfo",
          "uniCourtContent"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "PACERImportCase": {
        "properties": {
          "courtFee": {
            "description": "Court Fee charged for the Find Case request. This is only applicable for Appeal Cases.",
            "example": 0.1,
            "nullable": true,
            "type": "number"
          },
          "object": {
            "default": "PACERImportCase",
            "description": "Name of the object",
            "maxLength": 15,
            "minLength": 15,
            "nullable": false,
            "type": "string"
          },
          "pacerImportCaseResultsArray": {
            "items": {
              "$ref": "#/components/schemas/PACERImportCaseResults"
            },
            "type": "array"
          }
        },
        "required": [
          "object",
          "courtFee",
          "pacerImportCaseResultsArray"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "PACERImportCaseResults": {
        "nullable": true,
        "properties": {
          "hasOnlyMetaInfo": {
            "description": "This field determines if the UniCourt Content has only meta information. If the value is true and you require to get the latest updates of the case you will need to make a request to the updateCase API.",
            "example": false,
            "type": "boolean"
          },
          "object": {
            "default": "PACERImportCaseResults",
            "description": "Name of the object",
            "maxLength": 22,
            "minLength": 22,
            "nullable": false,
            "type": "string"
          },
          "uniCourtContent": {
            "$ref": "#/components/schemas/CaseSearchResult"
          }
        },
        "required": [
          "object",
          "hasOnlyMetaInfo",
          "uniCourtContent"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "PACERPartySearchContent": {
        "properties": {
          "object": {
            "default": "PACERPartySearchContent",
            "description": "Name of the object",
            "maxLength": 23,
            "minLength": 23,
            "nullable": false,
            "type": "string"
          },
          "pclCaseId": {
            "description": "Sequentially generated number that identifies the case.",
            "example": 12569,
            "type": "integer"
          },
          "pclCaseNumber": {
            "description": "The sequence number of the case.",
            "example": 96,
            "type": "integer"
          },
          "pclCaseNumberFull": {
            "description": "Case Number.",
            "example": "1:2002cv00096",
            "maxLength": 50,
            "nullable": true,
            "type": "string"
          },
          "pclCaseOffice": {
            "description": "The divisional office in which the case was filed.",
            "example": "1",
            "maxLength": 2,
            "nullable": true,
            "type": "string"
          },
          "pclCaseTitle": {
            "description": "Title of the case.",
            "example": "James Kelly v. Maria Poole",
            "maxLength": 255,
            "nullable": true,
            "type": "string"
          },
          "pclCaseType": {
            "description": "Code that identifies the type of case.",
            "example": "cv",
            "maxLength": 6,
            "nullable": true,
            "type": "string"
          },
          "pclCaseYear": {
            "description": "The year in which the case falls. Could be two or four digit.",
            "example": 2002,
            "type": "integer"
          },
          "pclCourtCase": {
            "$ref": "#/components/schemas/PACERCaseSearchContent"
          },
          "pclCourtId": {
            "description": "The general geographical region or specific court district. The court ID is the abbreviation of the court location combined with the court type (dc or bk). Please refer the Appendix B",
            "example": "jpmldc",
            "maxLength": 6,
            "nullable": true,
            "type": "string"
          },
          "pclDateFiled": {
            "description": "Filing date of the case.",
            "example": "2002-08-15",
            "maxLength": 10,
            "nullable": true,
            "type": "string"
          },
          "pclFirstName": {
            "description": "This parameter represents the first name of the case when it is present",
            "example": "William",
            "maxLength": 255,
            "nullable": true,
            "type": "string"
          },
          "pclGeneration": {
            "description": "This parameter represents the generation of the case when it is present",
            "example": "jr",
            "maxLength": 50,
            "nullable": true,
            "type": "string"
          },
          "pclJurisdictionType": {
            "description": "Link to case in the case management/electronic case files (CM/ECF) system at the court.",
            "enum": [
              "Appellate",
              "Bankruptcy",
              "Criminal",
              "Civil",
              "Multi-district Litigation"
            ],
            "example": "Appellate",
            "type": "string"
          },
          "pclLastName": {
            "description": "This parameter represents the last name of the case when it is present",
            "example": "Smith",
            "maxLength": 255,
            "nullable": true,
            "type": "string"
          },
          "pclMiddleName": {
            "description": "This parameter represents the middle name of the case when it is present",
            "example": "Steven",
            "maxLength": 255,
            "nullable": true,
            "type": "string"
          },
          "pclPartyRole": {
            "description": "This parameter represents the party role of the case when it is present",
            "example": "dft",
            "maxLength": 50,
            "nullable": true,
            "type": "string"
          },
          "pclPartyType": {
            "description": "This parameter represents the party type of the case when it is present",
            "example": "pty",
            "maxLength": 50,
            "nullable": true,
            "type": "string"
          }
        },
        "required": [
          "object",
          "pclJurisdictionType",
          "pclCaseId",
          "pclCaseNumberFull",
          "pclCaseTitle",
          "pclCaseOffice",
          "pclCaseNumber",
          "pclCaseType",
          "pclCaseYear",
          "pclCourtId",
          "pclDateFiled",
          "pclLastName",
          "pclFirstName",
          "pclMiddleName",
          "pclGeneration",
          "pclPartyRole",
          "pclPartyType",
          "pclCourtCase"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "PACERPartySearchResults": {
        "properties": {
          "hasOnlyMetaInfo": {
            "description": "This field determines if the UniCourt Content has only meta information. If the value is true and you require to get the latest updates of the case you will need to make a request to the updateCase API.",
            "example": false,
            "type": "boolean"
          },
          "object": {
            "default": "PACERPartySearchResults",
            "description": "Name of the object",
            "maxLength": 23,
            "minLength": 23,
            "nullable": false,
            "type": "string"
          },
          "pacerContent": {
            "$ref": "#/components/schemas/PACERPartySearchContent"
          },
          "uniCourtContent": {
            "$ref": "#/components/schemas/CaseSearchResult"
          }
        },
        "required": [
          "object",
          "pacerContent",
          "hasOnlyMetaInfo",
          "uniCourtContent"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "PACERSearchPageInfo": {
        "properties": {
          "first": {
            "description": "Indicates if the current page is the first page.",
            "example": true,
            "type": "boolean"
          },
          "last": {
            "description": "Indicates if the current page is the last page.",
            "example": true,
            "type": "boolean"
          },
          "number": {
            "description": "Current Page number.",
            "example": 2,
            "type": "integer"
          },
          "numberOfElements": {
            "description": "Number of records returned.",
            "example": 54,
            "type": "integer"
          },
          "object": {
            "default": "PACERSearchPageInfo",
            "description": "Name of the object",
            "maxLength": 19,
            "minLength": 19,
            "nullable": false,
            "type": "string"
          },
          "size": {
            "description": "Number of results obtained in a page..",
            "example": 54,
            "type": "integer"
          },
          "totalElements": {
            "description": "Total number of records available",
            "example": 487,
            "type": "integer"
          },
          "totalPages": {
            "description": "Total pages of data available.",
            "example": 1,
            "type": "integer"
          }
        },
        "required": [
          "object",
          "number",
          "size",
          "totalPages",
          "totalElements",
          "numberOfElements",
          "first",
          "last"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "PACERSearchReceipt": {
        "properties": {
          "billablePages": {
            "description": "No of pages that was billed for the given PACER search.",
            "example": 1,
            "type": "integer"
          },
          "clientCode": {
            "description": "client code added if any was set.",
            "example": "964758",
            "maxLength": 100,
            "nullable": true,
            "type": "string"
          },
          "csoId": {
            "description": "PACER Account ID.",
            "example": 4696152,
            "maxLength": 100,
            "nullable": true,
            "type": "integer"
          },
          "description": {
            "description": "Description of the search made.",
            "example": "Multi-district Litigation Party Search",
            "maxLength": 100,
            "nullable": true,
            "type": "string"
          },
          "firmId": {
            "description": "Firm ID.",
            "example": "964758",
            "maxLength": 100,
            "nullable": true,
            "type": "string"
          },
          "loginId": {
            "description": "ID which is used for PACER login.",
            "example": "johnSmith",
            "maxLength": 40,
            "nullable": false,
            "type": "string"
          },
          "object": {
            "default": "PACERSearchReceipt",
            "description": "Name of the object",
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          },
          "reportId": {
            "description": "Report ID for the search made.",
            "example": "32d75b38-76c4-4f85-a1be-df742c578bec",
            "maxLength": 100,
            "nullable": true,
            "type": "string"
          },
          "search": {
            "description": "Details of the search made for this request.",
            "example": "All Courts; Name Smith, William; Jurisdiction MDL; Page: 1",
            "maxLength": 255,
            "nullable": true,
            "type": "string"
          },
          "searchFee": {
            "description": "PACER Search Fee.",
            "example": ".10",
            "maxLength": 5,
            "minLength": 3,
            "nullable": false,
            "type": "string"
          },
          "transactionDate": {
            "description": "Date when the transaction was made at the pacer court site.",
            "example": "2022-09-04T21:33:21-05:00",
            "format": "date-time",
            "maxLength": 25,
            "minLength": 25,
            "nullable": false,
            "type": "string"
          }
        },
        "required": [
          "object",
          "transactionDate",
          "searchFee",
          "billablePages",
          "loginId",
          "clientCode",
          "firmId",
          "search",
          "description",
          "csoId",
          "reportId"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "PCLCase": {
        "properties": {
          "nextPageAPI": {
            "description": "Link to next page of the PCL Search Results.",
            "example": "https://enterpriseapi.unicourt.com/pacerCaseLocator/partySearch/civilCourts?pageNumber=2&jobId=PCLJ3Ygn4ooAvNenww",
            "maxLength": 255,
            "nullable": true,
            "type": "string"
          },
          "object": {
            "default": "PCLCase",
            "description": "Name of the object",
            "maxLength": 7,
            "minLength": 7,
            "nullable": false,
            "type": "string"
          },
          "pacerPageInfo": {
            "$ref": "#/components/schemas/PACERSearchPageInfo"
          },
          "pacerReceipt": {
            "$ref": "#/components/schemas/PACERSearchReceipt"
          },
          "pacerSearchResultsArray": {
            "items": {
              "$ref": "#/components/schemas/PACERCaseSearchResults"
            },
            "type": "array"
          },
          "pageNumber": {
            "description": "Page number for which results where obtained.",
            "example": 1,
            "type": "integer"
          },
          "totalCount": {
            "description": "Total number of records available for this Search.",
            "example": 125,
            "type": "integer"
          },
          "totalPages": {
            "description": "Total number of pages to obtain all the objects the current PCL Search.",
            "example": 3,
            "type": "integer"
          }
        },
        "required": [
          "object",
          "pageNumber",
          "pacerReceipt",
          "pacerPageInfo",
          "pacerSearchResultsArray",
          "nextPageAPI",
          "totalPages",
          "totalCount"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "PCLParty": {
        "properties": {
          "nextPageAPI": {
            "description": "Link to next page of the PCL Search Results.",
            "example": "https://enterpriseapi.unicourt.com/pacerCaseLocator/partySearch/civilCourts?pageNumber=2&jobId=PCLJ3Ygn4ooAvNenww",
            "maxLength": 255,
            "nullable": true,
            "type": "string"
          },
          "object": {
            "default": "PCLParty",
            "description": "Name of the object",
            "maxLength": 8,
            "minLength": 8,
            "nullable": false,
            "type": "string"
          },
          "pacerPageInfo": {
            "$ref": "#/components/schemas/PACERSearchPageInfo"
          },
          "pacerReceipt": {
            "$ref": "#/components/schemas/PACERSearchReceipt"
          },
          "pacerSearchResultsArray": {
            "items": {
              "$ref": "#/components/schemas/PACERPartySearchResults"
            },
            "type": "array"
          },
          "pageNumber": {
            "description": "Page number for which results where obtained.",
            "example": 1,
            "type": "integer"
          },
          "totalCount": {
            "description": "Total number of records available for this Search.",
            "example": 125,
            "type": "integer"
          },
          "totalPages": {
            "description": "Total number of pages to obtain all the objects the current PCL Search.",
            "example": 3,
            "type": "integer"
          }
        },
        "required": [
          "object",
          "pageNumber",
          "pacerReceipt",
          "pacerPageInfo",
          "pacerSearchResultsArray",
          "nextPageAPI",
          "totalPages",
          "totalCount"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "PacerCredential": {
        "properties": {
          "defaultPacerClientCode": {
            "description": "Pacer Client Code.",
            "example": "Test UniCourt API",
            "maxLength": 32,
            "minLength": 0,
            "nullable": true,
            "type": "string"
          },
          "object": {
            "default": "PacerCredential",
            "description": "Name of the object.",
            "example": "PacerCredential",
            "maxLength": 15,
            "minLength": 15,
            "nullable": false,
            "type": "string"
          },
          "pacerUserId": {
            "description": "Pacer User Id.",
            "example": "URKYwer3tyh5r56gq2",
            "maxLength": 40,
            "minLength": 6,
            "nullable": false,
            "type": "string"
          }
        },
        "required": [
          "object",
          "pacerUserId",
          "defaultPacerClientCode"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "PacerCredentialListResponse": {
        "properties": {
          "nextPageAPI": {
            "description": "Link for the next page.",
            "example": null,
            "format": "uri",
            "maxLength": 1024,
            "minLength": 1,
            "nullable": true,
            "type": "string"
          },
          "object": {
            "default": "PacerCredentialListResponse",
            "description": "Name of the object.",
            "example": "PacerCredentialListResponse",
            "maxLength": 27,
            "minLength": 27,
            "nullable": false,
            "type": "string"
          },
          "pacerCredentialArray": {
            "description": "Array of pacer credentials.",
            "items": {
              "$ref": "#/components/schemas/PacerCredential"
            },
            "maxItems": 100,
            "minItems": 0,
            "nullable": false,
            "type": "array"
          },
          "pageNumber": {
            "description": "Current page number.",
            "example": 1,
            "type": "integer"
          },
          "previousPageAPI": {
            "description": "Link for the previous page.",
            "example": null,
            "format": "uri",
            "maxLength": 1024,
            "minLength": 1,
            "nullable": true,
            "type": "string"
          },
          "totalCount": {
            "description": "Total number of pacer credentials available.",
            "example": 1,
            "type": "integer"
          },
          "totalPages": {
            "description": "Total number of pages available.",
            "example": 1,
            "type": "integer"
          }
        },
        "required": [
          "object",
          "nextPageAPI",
          "previousPageAPI",
          "pageNumber",
          "totalCount",
          "totalPages",
          "pacerCredentialArray"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "PacerCredentialRequest": {
        "properties": {
          "defaultPacerClientCode": {
            "description": "Pacer Client Code.",
            "example": "Test UniCourt API",
            "maxLength": 32,
            "minLength": 0,
            "nullable": true,
            "type": "string"
          },
          "pacerUserId": {
            "description": "Pacer User Id.",
            "example": "URKYwer3tyh5r56gq2",
            "maxLength": 40,
            "minLength": 6,
            "nullable": false,
            "type": "string"
          },
          "password": {
            "description": "Password.",
            "example": "your password",
            "maxLength": 45,
            "minLength": 8,
            "nullable": false,
            "type": "string"
          }
        },
        "required": [
          "pacerUserId",
          "password"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "Parties": {
        "nullable": true,
        "properties": {
          "nextPageAPI": {
            "description": "Link to next page of a particular entity in a Case.",
            "example": "https://enterpriseapi.unicourt.com/case/CASEgued96d541f794/parties/?pageNumber=1",
            "maxLength": 255,
            "nullable": true,
            "type": "string"
          },
          "object": {
            "default": "Parties",
            "description": "Name of the object",
            "maxLength": 7,
            "minLength": 7,
            "nullable": false,
            "type": "string"
          },
          "pageNumber": {
            "description": "Page number for which results where obtained.",
            "example": 1,
            "type": "integer"
          },
          "partyArray": {
            "items": {
              "$ref": "#/components/schemas/Party"
            },
            "maxItems": 25,
            "type": "array"
          },
          "totalCount": {
            "description": "Total number of parties of the Case entity in a Case.",
            "example": 150,
            "type": "integer"
          },
          "totalPages": {
            "description": "Total number of pages to obtain all the objects of a party in the Case.",
            "example": 120,
            "type": "integer"
          }
        },
        "required": [
          "object",
          "pageNumber",
          "partyArray",
          "totalPages",
          "nextPageAPI",
          "totalCount"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "Party": {
        "nullable": true,
        "properties": {
          "attorneyRepresentationType": {
            "$ref": "#/components/schemas/AttorneyRepresentationType"
          },
          "contact": {
            "$ref": "#/components/schemas/Contact"
          },
          "firstFetchDate": {
            "description": "When was the party first fetched from the court site.",
            "example": "2021-10-10T10:10:24+00:00",
            "format": "date-time",
            "maxLength": 25,
            "minLength": 25,
            "nullable": false,
            "type": "string"
          },
          "firstName": {
            "description": "First name of the party. This is normalized by UniCourt.",
            "example": "LA",
            "maxLength": 250,
            "nullable": true,
            "type": "string"
          },
          "isVisible": {
            "description": "Signifies if the party as this party type is currently isVisible or not for the case.",
            "example": true,
            "type": "boolean"
          },
          "lastFetchDate": {
            "description": "When was the party last fetched from the court site.",
            "example": "2021-10-10T10:10:24+00:00",
            "format": "date-time",
            "maxLength": 25,
            "minLength": 25,
            "nullable": false,
            "type": "string"
          },
          "lastName": {
            "description": "Last name of the party. This is normalized by UniCourt.",
            "example": "DE",
            "maxLength": 100,
            "nullable": true,
            "type": "string"
          },
          "middleName": {
            "description": "Middle name of the party. This is normalized by UniCourt.",
            "example": "FUENTE JOE",
            "maxLength": 100,
            "nullable": true,
            "type": "string"
          },
          "name": {
            "description": "Name of the party as provided by Court.",
            "example": "DE LA FUENTE JOE",
            "maxLength": 250,
            "minLength": 1,
            "nullable": false,
            "type": "string"
          },
          "namePrefix": {
            "maxLength": 10,
            "nullable": true,
            "type": "string"
          },
          "nameSuffix": {
            "maxLength": 10,
            "nullable": true,
            "type": "string"
          },
          "object": {
            "default": "Party",
            "description": "Name of the object",
            "maxLength": 5,
            "minLength": 5,
            "nullable": false,
            "type": "string"
          },
          "partyAttorneyAssociations": {
            "$ref": "#/components/schemas/PartyAttorneyAssociations"
          },
          "partyClassificationType": {
            "description": "To know the type of an entity in a case, if it is an Individual, Company or Other. An entity to a case could be the parties, attorneys or judges involved.",
            "enum": [
              "INDIVIDUAL",
              "COMPANY",
              "OTHER"
            ],
            "maxLength": 50,
            "nullable": false,
            "type": "string"
          },
          "partyId": {
            "description": "ID for the party in this case. This ID is unique within a case and NOT across cases. If the same party were to appear in another case this ID would be different.",
            "example": "PRTYgu537f3901f406",
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          },
          "partyRole": {
            "$ref": "#/components/schemas/PartyRole"
          },
          "possibleNormPartyArray": {
            "items": {
              "$ref": "#/components/schemas/PossibleNormParty"
            },
            "type": "array"
          },
          "sourcePartyRole": {
            "description": "Party Type as provided by Court.",
            "example": "ptf",
            "maxLength": 50,
            "nullable": false,
            "type": "string"
          }
        },
        "required": [
          "object",
          "partyId",
          "name",
          "namePrefix",
          "firstName",
          "middleName",
          "lastName",
          "nameSuffix",
          "contact",
          "partyClassificationType",
          "partyRole",
          "sourcePartyRole",
          "isVisible",
          "firstFetchDate",
          "lastFetchDate",
          "attorneyRepresentationType",
          "partyAttorneyAssociations",
          "possibleNormPartyArray"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "PartyAnalyticsAPI": {
        "properties": {
          "associatedNormAttorneysAPI": {
            "format": "uri",
            "maxLength": 255,
            "nullable": false,
            "type": "string",
            "x-logical-reference": "AssociatedNormAttorneysForNormPartyAPI"
          },
          "associatedNormJudgesAPI": {
            "format": "uri",
            "maxLength": 255,
            "nullable": false,
            "type": "string",
            "x-logical-reference": "AssociatedNormJudgesForNormPartyAPI"
          },
          "associatedNormLawFirmsAPI": {
            "format": "uri",
            "maxLength": 255,
            "nullable": false,
            "type": "string",
            "x-logical-reference": "AssociatedNormLawFirmsForNormPartyAPI"
          },
          "caseCountAnalyticsByOpposingNormAttorneyAPI": {
            "format": "uri",
            "maxLength": 255,
            "nullable": true,
            "type": "string",
            "x-logical-reference": "CaseCountAnalyticsByOpposingNormAttorneyAPI"
          },
          "caseCountAnalyticsByOpposingNormLawFirmAPI": {
            "format": "uri",
            "maxLength": 255,
            "nullable": true,
            "type": "string",
            "x-logical-reference": "CaseCountAnalyticsByOpposingNormLawFirmAPI"
          },
          "caseCountAnalyticsByOpposingNormPartyAPI": {
            "format": "uri",
            "maxLength": 255,
            "nullable": false,
            "type": "string",
            "x-logical-reference": "CaseCountAnalyticsByOpposingNormPartyAPI"
          },
          "normPartyAPI": {
            "description": "Link to Details for the Party.",
            "format": "uri",
            "maxLength": 255,
            "nullable": false,
            "type": "string",
            "x-logical-reference": "NormPartyAPI"
          },
          "object": {
            "default": "PartyAnalyticsAPI",
            "maxLength": 17,
            "nullable": false,
            "type": "string"
          }
        },
        "required": [
          "object",
          "normPartyAPI",
          "associatedNormAttorneysAPI",
          "associatedNormLawFirmsAPI",
          "associatedNormJudgesAPI",
          "caseCountAnalyticsByOpposingNormAttorneyAPI",
          "caseCountAnalyticsByOpposingNormLawFirmAPI",
          "caseCountAnalyticsByOpposingNormPartyAPI"
        ],
        "title": "PartyAnalyticsAPI",
        "type": "object",
        "x-unicourt-container": false
      },
      "PartyAttorneyAssociation": {
        "nullable": true,
        "properties": {
          "attorneyId": {
            "description": "ID for the attorney in this case. This ID is unique within a case and NOT across cases. If the same attorney were to appear in another case this ID would be different.",
            "example": "ATTYgu01be2e4de654",
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          },
          "isVisible": {
            "description": "Signifies if this party attorney relationship is currently isVisible or not for the case.",
            "example": true,
            "type": "boolean"
          },
          "object": {
            "default": "PartyAttorneyAssociation",
            "description": "Name of the object",
            "maxLength": 24,
            "minLength": 24,
            "nullable": false,
            "type": "string"
          },
          "partyAttorneyAssociationId": {
            "description": "ID of the association",
            "example": "PATMguccbcb5acb4a7",
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          },
          "partyId": {
            "description": "ID for the party in this case. This ID is unique within a case and NOT across cases. If the same attorney were to appear in another case this ID would be different.",
            "example": "PRTYgu537f3901f406",
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          }
        },
        "required": [
          "object",
          "partyAttorneyAssociationId",
          "attorneyId",
          "partyId",
          "isVisible"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "PartyAttorneyAssociations": {
        "nullable": true,
        "properties": {
          "nextPageAPI": {
            "description": "Link to next page of a particular entity in a Case.",
            "example": "https://enterpriseapi.unicourt.com/case/CASEgued96d541f794/parties/?pageNumber=1",
            "maxLength": 255,
            "nullable": true,
            "type": "string"
          },
          "object": {
            "default": "PartyAttorneyAssociations",
            "description": "Name of the object",
            "maxLength": 25,
            "minLength": 25,
            "nullable": false,
            "type": "string"
          },
          "pageNumber": {
            "description": "Page number for which results where obtained.",
            "example": 1,
            "type": "integer"
          },
          "partyAttorneyAssociationArray": {
            "items": {
              "$ref": "#/components/schemas/PartyAttorneyAssociation"
            },
            "maxItems": 25,
            "type": "array"
          },
          "totalCount": {
            "description": "Total number of parties of the Case entity in a Case.",
            "example": 150,
            "type": "integer"
          },
          "totalPages": {
            "description": "Total number of pages to obtain all the objects of a party in the Case.",
            "example": 120,
            "type": "integer"
          }
        },
        "required": [
          "object",
          "pageNumber",
          "partyAttorneyAssociationArray",
          "totalPages",
          "nextPageAPI",
          "totalCount"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "PartyRole": {
        "nullable": true,
        "properties": {
          "createdDate": {
            "description": "The date and time when it was first created. This date and time is in UTC. Formatted as YYYY-MM-DD HH:MM:SS.",
            "example": "2020-05-07T10:17:56+00:00",
            "format": "date-time",
            "maxLength": 25,
            "minLength": 25,
            "nullable": false,
            "type": "string"
          },
          "description": {
            "example": null,
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "type": "string"
          },
          "name": {
            "example": "Plaintiff",
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "string"
          },
          "object": {
            "default": "PartyRole",
            "example": "PartyRole",
            "maxLength": 9,
            "minLength": 9,
            "nullable": false,
            "type": "string"
          },
          "partyRoleGroup": {
            "example": "Party Offensive",
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "string"
          },
          "partyRoleGroupId": {
            "example": "PTYGBnjxbx6tKNfVEP",
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          },
          "partyRoleId": {
            "example": "PTYRiP8nMgPxBsPc5i",
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          }
        },
        "required": [
          "object",
          "partyRoleId",
          "partyRoleGroupId",
          "partyRoleGroup",
          "name",
          "description",
          "createdDate"
        ],
        "title": "PartyRole",
        "type": "object",
        "x-unicourt-container": false
      },
      "PartyRoleGroup": {
        "properties": {
          "createdDate": {
            "description": "The date and time when it was first created. This date and time is in UTC. Formatted as YYYY-MM-DD HH:MM:SS.",
            "example": "2020-05-07T10:17:56+00:00",
            "format": "date-time",
            "maxLength": 25,
            "minLength": 25,
            "nullable": false,
            "type": "string"
          },
          "description": {
            "example": null,
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "type": "string"
          },
          "name": {
            "example": "Party Offensive",
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "string"
          },
          "object": {
            "default": "PartyRoleGroup",
            "example": "PartyRoleGroup",
            "maxLength": 14,
            "minLength": 14,
            "nullable": false,
            "type": "string"
          },
          "partyRoleGroupId": {
            "example": "PTYGBnjxbx6tKNfVEP",
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          }
        },
        "required": [
          "object",
          "partyRoleGroupId",
          "name",
          "description",
          "createdDate"
        ],
        "title": "PartyRoleGroup",
        "type": "object",
        "x-unicourt-container": false
      },
      "PartyRoleGroupResponse": {
        "properties": {
          "nextPageAPI": {
            "description": "Link to next page.",
            "example": null,
            "format": "uri",
            "maxLength": 2147,
            "minLength": 1,
            "nullable": true,
            "type": "string"
          },
          "object": {
            "default": "PartyRoleGroupResponse",
            "example": "PartyRoleGroupResponse",
            "maxLength": 22,
            "minLength": 22,
            "nullable": false,
            "type": "string"
          },
          "pageNumber": {
            "description": "Page number for which results where obtained.",
            "example": 1,
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "integer"
          },
          "partyRoleGroupArray": {
            "items": {
              "$ref": "#/components/schemas/PartyRoleGroup"
            },
            "maxLength": 100,
            "type": "array"
          },
          "previousPageAPI": {
            "description": "Link to previous page.",
            "example": null,
            "format": "uri",
            "maxLength": 2146,
            "minLength": 1,
            "nullable": true,
            "type": "string"
          },
          "totalCount": {
            "description": "Total number of matches found.",
            "example": 1,
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "integer"
          },
          "totalPages": {
            "description": "Total number of pages to obtain all the objects.",
            "example": 1,
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "integer"
          }
        },
        "required": [
          "object",
          "partyRoleGroupArray",
          "nextPageAPI",
          "previousPageAPI",
          "pageNumber",
          "totalPages",
          "totalCount"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "PartyRoleResponse": {
        "properties": {
          "nextPageAPI": {
            "description": "Link to next page.",
            "example": null,
            "format": "uri",
            "maxLength": 2142,
            "minLength": 1,
            "nullable": true,
            "type": "string"
          },
          "object": {
            "default": "PartyRoleResponse",
            "example": "PartyRoleResponse",
            "maxLength": 17,
            "minLength": 17,
            "nullable": false,
            "type": "string"
          },
          "pageNumber": {
            "description": "Page number for which results where obtained.",
            "example": 1,
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "integer"
          },
          "partyRoleArray": {
            "items": {
              "$ref": "#/components/schemas/PartyRole"
            },
            "maxLength": 100,
            "type": "array"
          },
          "previousPageAPI": {
            "description": "Link to previous page.",
            "example": null,
            "format": "uri",
            "maxLength": 2141,
            "minLength": 1,
            "nullable": true,
            "type": "string"
          },
          "totalCount": {
            "description": "Total number of matches found.",
            "example": 1,
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "integer"
          },
          "totalPages": {
            "description": "Total number of pages to obtain all the objects.",
            "example": 1,
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "integer"
          }
        },
        "required": [
          "object",
          "partyRoleArray",
          "nextPageAPI",
          "previousPageAPI",
          "pageNumber",
          "totalPages",
          "totalCount"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "Phone": {
        "description": "Phone object data schema.",
        "properties": {
          "firstFetchDate": {
            "description": "Date at which this record is created in UniCourt.",
            "example": "2017-07-21T17:32:28+00:00",
            "format": "date-time",
            "maxLength": 35,
            "minLength": 25,
            "nullable": false,
            "type": "string"
          },
          "isVisible": {
            "description": "Boolean indicating if the phone is visible or not.",
            "example": false,
            "maxLength": 5,
            "minLength": 4,
            "nullable": false,
            "type": "boolean"
          },
          "lastFetchDate": {
            "description": "Date at which this record was updated in UniCourt.",
            "example": "2017-07-21T17:32:28+00:00",
            "format": "date-time",
            "maxLength": 35,
            "minLength": 25,
            "nullable": false,
            "type": "string"
          },
          "object": {
            "default": "Phone",
            "example": "Phone",
            "maxLength": 5,
            "minLength": 5,
            "nullable": false,
            "type": "string"
          },
          "phoneNumber": {
            "description": "Phone Number",
            "example": "(123) 42344424",
            "maxLength": 30,
            "minLength": 1,
            "nullable": false,
            "type": "string"
          },
          "phoneType": {
            "description": "Resolved phone type (ideally from master data).",
            "enum": [
              "DEFAULT",
              "OFFICE",
              "FAX",
              "PHONE"
            ],
            "example": "OFFICE",
            "maxLength": 250,
            "minLength": 1,
            "nullable": false,
            "type": "string"
          }
        },
        "required": [
          "phoneNumber",
          "phoneType",
          "isVisible",
          "firstFetchDate",
          "lastFetchDate",
          "object"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "PossibleNormAttorney": {
        "nullable": true,
        "properties": {
          "associatedNormJudgesAPI": {
            "format": "uri",
            "maxLength": 255,
            "nullable": false,
            "type": "string",
            "x-logical-reference": "AssociatedNormJudgesForNormAttorneyAPI"
          },
          "associatedNormLawFirmsAPI": {
            "format": "uri",
            "maxLength": 255,
            "nullable": false,
            "type": "string",
            "x-logical-reference": "AssociatedNormLawFirmsForNormAttorneyAPI"
          },
          "associatedNormPartiesAPI": {
            "format": "uri",
            "maxLength": 255,
            "nullable": false,
            "type": "string",
            "x-logical-reference": "AssociatedNormPartiesForNormAttorneyAPI"
          },
          "bestMatch": {
            "default": false,
            "type": "boolean"
          },
          "caseCountAnalyticsByNormAttorneyAPI": {
            "format": "uri",
            "maxLength": 255,
            "nullable": false,
            "type": "string",
            "x-logical-reference": "CaseCountAnalyticsByNormAttorneyAPI"
          },
          "caseCountAnalyticsByOpposingNormAttorneyAPI": {
            "format": "uri",
            "maxLength": 255,
            "nullable": false,
            "type": "string",
            "x-logical-reference": "CaseCountAnalyticsByOpposingNormAttorneyAPI"
          },
          "confidenceScore": {
            "format": "float",
            "type": "number"
          },
          "normAttorneyAPI": {
            "format": "uri",
            "maxLength": 255,
            "nullable": false,
            "type": "string",
            "x-logical-reference": "NormAttorneyAPI"
          },
          "normAttorneyId": {
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          },
          "normAttorneyName": {
            "maxLength": 500,
            "nullable": false,
            "type": "string"
          },
          "object": {
            "default": "PossibleNormAttorney",
            "description": "Name of the object",
            "maxLength": 20,
            "minLength": 20,
            "nullable": false,
            "type": "string"
          },
          "scoreConstituents": {
            "properties": {
              "address": {
                "enum": [
                  "Matched",
                  "Mismatched",
                  "Not_Provided_By_Data_Source"
                ],
                "maxLength": 250,
                "nullable": false,
                "type": "string"
              },
              "barId": {
                "enum": [
                  "Matched",
                  "Mismatched",
                  "Not_Provided_By_Data_Source"
                ],
                "maxLength": 250,
                "nullable": false,
                "type": "string"
              },
              "email": {
                "enum": [
                  "Matched",
                  "Mismatched",
                  "Not_Provided_By_Data_Source"
                ],
                "maxLength": 250,
                "nullable": false,
                "type": "string"
              },
              "lawFirm": {
                "enum": [
                  "Matched",
                  "Mismatched",
                  "Not_Provided_By_Data_Source"
                ],
                "maxLength": 250,
                "nullable": false,
                "type": "string"
              },
              "nameSimilarityScore": {
                "format": "float",
                "type": "number"
              },
              "otherPotentialNormAttorneys": {
                "type": "integer"
              },
              "phone": {
                "enum": [
                  "Matched",
                  "Mismatched",
                  "Not_Provided_By_Data_Source"
                ],
                "maxLength": 250,
                "nullable": false,
                "type": "string"
              }
            },
            "required": [
              "nameSimilarityScore",
              "otherPotentialNormAttorneys",
              "barId",
              "address",
              "email",
              "phone",
              "lawFirm"
            ],
            "type": "object"
          }
        },
        "required": [
          "object",
          "normAttorneyId",
          "normAttorneyName",
          "bestMatch",
          "confidenceScore",
          "scoreConstituents",
          "normAttorneyAPI",
          "associatedNormJudgesAPI",
          "associatedNormLawFirmsAPI",
          "associatedNormPartiesAPI",
          "caseCountAnalyticsByNormAttorneyAPI",
          "caseCountAnalyticsByOpposingNormAttorneyAPI"
        ],
        "title": "PossibleNormAttorney",
        "type": "object",
        "x-unicourt-container": false
      },
      "PossibleNormJudge": {
        "nullable": true,
        "properties": {
          "associatedNormAttorneysAPI": {
            "example": "https://enterpriseapi.unicourt.com/normJudge/NATY2LJwigb5HFRir/associatedNormAttorneys?pageNumber=1",
            "format": "uri",
            "maxLength": 255,
            "nullable": false,
            "type": "string",
            "x-logical-reference": "AssociatedNormAttorneysForNormJudgeAPI"
          },
          "associatedNormLawFirmsAPI": {
            "example": "https://enterpriseapi.unicourt.com/normJudge/NATY2LJwigb5HFRir/associatedNormLawFirms?pageNumber=1",
            "format": "uri",
            "maxLength": 255,
            "nullable": false,
            "type": "string",
            "x-logical-reference": "AssociatedNormLawFirmsForNormJudgeAPI"
          },
          "associatedNormPartiesAPI": {
            "example": "https://enterpriseapi.unicourt.com/normJudge/NATY2LJwigb5HFRir/associatedNormParties?pageNumber=1",
            "format": "uri",
            "maxLength": 255,
            "nullable": false,
            "type": "string",
            "x-logical-reference": "AssociatedNormPartiesForNormJudgeAPI"
          },
          "bestMatch": {
            "default": false,
            "type": "boolean"
          },
          "caseCountAnalyticsByNormJudgeAPI": {
            "format": "uri",
            "maxLength": 250,
            "nullable": false,
            "type": "string",
            "x-logical-reference": "CaseCountAnalyticsByNormJudgeAPI"
          },
          "confidenceScore": {
            "format": "float",
            "nullable": true,
            "type": "number"
          },
          "normJudgeAPI": {
            "description": "Link to Details For the Judge.",
            "example": "https://enterpriseapi.unicourt.com/normJudge/NJUD3Ygn4ooAvNxAmd",
            "format": "uri",
            "maxLength": 255,
            "nullable": false,
            "type": "string",
            "x-logical-reference": "NormJudgeAPI"
          },
          "normJudgeId": {
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          },
          "normJudgeName": {
            "maxLength": 500,
            "nullable": false,
            "type": "string"
          },
          "object": {
            "default": "PossibleNormJudge",
            "description": "Name of the object",
            "maxLength": 17,
            "minLength": 17,
            "nullable": false,
            "type": "string"
          },
          "scoreConstituents": {
            "nullable": true,
            "properties": {
              "address": {
                "enum": [
                  "Matched",
                  "Mismatched",
                  "Not_Provided_By_Data_Source"
                ],
                "maxLength": 250,
                "nullable": false,
                "type": "string"
              },
              "email": {
                "enum": [
                  "Matched",
                  "Mismatched",
                  "Not_Provided_By_Data_Source"
                ],
                "maxLength": 250,
                "nullable": false,
                "type": "string"
              },
              "nameSimilarityScore": {
                "format": "float",
                "type": "number"
              },
              "otherPotentialNormJudges": {
                "type": "integer"
              },
              "phone": {
                "enum": [
                  "Matched",
                  "Mismatched",
                  "Not_Provided_By_Data_Source"
                ],
                "maxLength": 250,
                "nullable": false,
                "type": "string"
              }
            },
            "required": [
              "nameSimilarityScore",
              "otherPotentialNormJudges",
              "address",
              "email",
              "phone"
            ],
            "type": "object"
          }
        },
        "required": [
          "object",
          "normJudgeId",
          "normJudgeName",
          "bestMatch",
          "confidenceScore",
          "scoreConstituents",
          "normJudgeAPI",
          "associatedNormAttorneysAPI",
          "associatedNormLawFirmsAPI",
          "associatedNormPartiesAPI",
          "caseCountAnalyticsByNormJudgeAPI"
        ],
        "title": "PossibleNormJudge",
        "type": "object",
        "x-unicourt-container": false
      },
      "PossibleNormLawFirm": {
        "nullable": true,
        "properties": {
          "associatedNormAttorneyAPI": {
            "format": "uri",
            "maxLength": 255,
            "nullable": false,
            "type": "string",
            "x-logical-reference": "AssociatedNormAttorneysForNormLawFirmAPI"
          },
          "associatedNormJudgeAPI": {
            "format": "uri",
            "maxLength": 255,
            "nullable": false,
            "type": "string",
            "x-logical-reference": "AssociatedNormJudgesForNormLawFirmAPI"
          },
          "associatedNormPartiesAPI": {
            "format": "uri",
            "maxLength": 255,
            "nullable": false,
            "type": "string",
            "x-logical-reference": "AssociatedNormPartiesForNormJudgeAPI"
          },
          "bestMatch": {
            "default": false,
            "type": "boolean"
          },
          "caseCountAnalyticsByNormLawFirmAPI": {
            "format": "uri",
            "maxLength": 255,
            "nullable": false,
            "type": "string",
            "x-logical-reference": "CaseCountAnalyticsByNormLawFirmAPI"
          },
          "caseCountAnalyticsByOpposingNormLawFirmAPI": {
            "format": "uri",
            "maxLength": 255,
            "nullable": false,
            "type": "string",
            "x-logical-reference": "CaseCountAnalyticsByOpposingNormLawFirmAPI"
          },
          "confidenceScore": {
            "format": "float",
            "type": "number"
          },
          "normLawFirmAPI": {
            "format": "uri",
            "maxLength": 255,
            "nullable": false,
            "type": "string",
            "x-logical-reference": "NormLawFirmAPI"
          },
          "normLawFirmId": {
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          },
          "normLawFirmName": {
            "maxLength": 500,
            "nullable": false,
            "type": "string"
          },
          "object": {
            "default": "PossibleNormLawFirm",
            "description": "Name of the object",
            "maxLength": 19,
            "minLength": 19,
            "nullable": false,
            "type": "string"
          },
          "scoreConstituents": {
            "properties": {
              "address": {
                "enum": [
                  "Matched",
                  "Mismatched",
                  "Not_Provided_By_Data_Source"
                ],
                "maxLength": 250,
                "nullable": false,
                "type": "string"
              },
              "email": {
                "enum": [
                  "Matched",
                  "Mismatched",
                  "Not_Provided_By_Data_Source"
                ],
                "maxLength": 250,
                "nullable": false,
                "type": "string"
              },
              "nameSimilarityScore": {
                "format": "float",
                "type": "number"
              },
              "otherPotentialNormLawFirms": {
                "type": "integer"
              },
              "phone": {
                "enum": [
                  "Matched",
                  "Mismatched",
                  "Not_Provided_By_Data_Source"
                ],
                "maxLength": 250,
                "nullable": false,
                "type": "string"
              },
              "secretaryOfStateId": {
                "enum": [
                  "Matched",
                  "Mismatched",
                  "Not_Provided_By_Data_Source"
                ],
                "maxLength": 250,
                "nullable": false,
                "type": "string"
              }
            },
            "required": [
              "nameSimilarityScore",
              "otherPotentialNormLawFirms",
              "secretaryOfStateId",
              "address",
              "email",
              "phone"
            ],
            "type": "object"
          },
          "sourceDetails": {
            "properties": {
              "linkedNormAttorneyIdArray": {
                "items": {
                  "maxLength": 18,
                  "minLength": 18,
                  "nullable": false,
                  "type": "string"
                },
                "type": "array"
              },
              "source": {
                "enum": [
                  "Case_Attorney_Linked_In_Other_Cases",
                  "Case_Attorney_Field_Contains_Law_Firm"
                ],
                "maxLength": 250,
                "nullable": true,
                "type": "string"
              }
            },
            "required": [
              "source",
              "linkedNormAttorneyIdArray"
            ],
            "type": "object"
          }
        },
        "required": [
          "object",
          "normLawFirmId",
          "normLawFirmName",
          "bestMatch",
          "sourceDetails",
          "confidenceScore",
          "scoreConstituents",
          "normLawFirmAPI",
          "associatedNormAttorneyAPI",
          "associatedNormJudgeAPI",
          "associatedNormPartiesAPI",
          "caseCountAnalyticsByNormLawFirmAPI",
          "caseCountAnalyticsByOpposingNormLawFirmAPI"
        ],
        "title": "PossibleNormLawFirm",
        "type": "object",
        "x-unicourt-container": false
      },
      "PossibleNormParty": {
        "nullable": true,
        "properties": {
          "associatedNormAttorneysAPI": {
            "example": "https://enterpriseapi.unicourt.com/normParty/NPTY3Ygn4ooAvNxAm2/associatedNormAttorneys?pageNumber=1",
            "format": "url",
            "maxLength": 255,
            "nullable": false,
            "type": "string",
            "x-logical-reference": "AssociatedNormAttorneysForNormPartyAPI"
          },
          "associatedNormJudgesAPI": {
            "example": "https://enterpriseapi.unicourt.com/normParty/NPTY3Ygn4ooAvNxAm2/associatedNormJudges?pageNumber=1",
            "format": "url",
            "maxLength": 255,
            "nullable": false,
            "type": "string",
            "x-logical-reference": "AssociatedNormJudgesForNormPartyAPI"
          },
          "associatedNormLawFirmsAPI": {
            "example": "https://enterpriseapi.unicourt.com/normParty/NPTY3Ygn4ooAvNxAm2/associatedNormLawFirms?pageNumber=1",
            "format": "url",
            "maxLength": 255,
            "nullable": false,
            "type": "string",
            "x-logical-reference": "AssociatedNormLawFirmsForNormPartyAPI"
          },
          "bestMatch": {
            "default": false,
            "type": "boolean"
          },
          "caseCountAnalyticsByNormPartyAPI": {
            "format": "uri",
            "maxLength": 255,
            "nullable": false,
            "type": "string",
            "x-logical-reference": "CaseCountAnalyticsByNormPartyAPI"
          },
          "caseCountAnalyticsByOpposingNormPartyAPI": {
            "example": "https://enterpriseapi.unicourt.com/normParty/NPTY3Ygn4ooAvNxAm2/caseCountAnalyticsByOpposingNormParty?pageNumber=1",
            "format": "url",
            "maxLength": 255,
            "nullable": false,
            "type": "string",
            "x-logical-reference": "CaseCountAnalyticsByOpposingNormPartyAPI"
          },
          "confidenceScore": {
            "format": "float",
            "type": "number"
          },
          "normPartyAPI": {
            "description": "Link to Details For the Party.",
            "example": "https://enterpriseapi.unicourt.com/normParty/NPTY3Ygn4ooAvNxAmd",
            "format": "url",
            "maxLength": 255,
            "nullable": false,
            "type": "string",
            "x-logical-reference": "NormPartyAPI"
          },
          "normPartyId": {
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          },
          "normPartyName": {
            "maxLength": 500,
            "nullable": false,
            "type": "string"
          },
          "object": {
            "default": "PossibleNormParty",
            "description": "Name of the object",
            "maxLength": 17,
            "minLength": 17,
            "nullable": false,
            "type": "string"
          },
          "scoreConstituents": {
            "properties": {
              "address": {
                "enum": [
                  "Matched",
                  "Mismatched",
                  "Not_Provided_By_Data_Source"
                ],
                "maxLength": 250,
                "nullable": false,
                "type": "string"
              },
              "email": {
                "enum": [
                  "Matched",
                  "Mismatched",
                  "Not_Provided_By_Data_Source"
                ],
                "maxLength": 250,
                "nullable": false,
                "type": "string"
              },
              "nameSimilarityScore": {
                "format": "float",
                "type": "number"
              },
              "otherPotentialNormParties": {
                "type": "integer"
              },
              "phone": {
                "enum": [
                  "Matched",
                  "Mismatched",
                  "Not_Provided_By_Data_Source"
                ],
                "maxLength": 250,
                "nullable": false,
                "type": "string"
              },
              "secretaryOfStateId": {
                "enum": [
                  "Matched",
                  "Mismatched",
                  "Not_Provided_By_Data_Source"
                ],
                "maxLength": 250,
                "nullable": false,
                "type": "string"
              }
            },
            "required": [
              "nameSimilarityScore",
              "otherPotentialNormParties",
              "secretaryOfStateId",
              "address",
              "email",
              "phone"
            ],
            "type": "object"
          }
        },
        "required": [
          "object",
          "normPartyId",
          "normPartyName",
          "bestMatch",
          "confidenceScore",
          "scoreConstituents",
          "normPartyAPI",
          "associatedNormAttorneysAPI",
          "associatedNormLawFirmsAPI",
          "associatedNormJudgesAPI",
          "caseCountAnalyticsByNormPartyAPI",
          "caseCountAnalyticsByOpposingNormPartyAPI"
        ],
        "title": "PossibleNormParty",
        "type": "object",
        "x-unicourt-container": false
      },
      "PreviewDocument": {
        "nullable": true,
        "properties": {
          "addedToLibraryDate": {
            "description": "Date and time when the preview document was downloaded and added to the UniCourt CrowdSourced Library.",
            "example": "2018-02-16T11:43:56+00:00",
            "maxLength": 25,
            "minLength": 25,
            "nullable": true,
            "type": "string"
          },
          "downloadAPI": {
            "description": "Link to get the file url for the preview document which is already present in the UniCourt CrowdSourced Library.",
            "example": "https://enterpriseapi.unicourt.com/caseDocument/CDOC3Ygn4oovIn33T/download/?isPreviewDocument=true",
            "maxLength": 255,
            "nullable": true,
            "type": "string",
            "x-logical-reference": "CaseDocumentDownloadAPI"
          },
          "inLibrary": {
            "description": "Determines if the preview document is present in the UniCourt Library or not.",
            "example": true,
            "type": "boolean"
          },
          "object": {
            "default": "PreviewDocument",
            "description": "Name of the object",
            "maxLength": 15,
            "minLength": 15,
            "nullable": false,
            "type": "string"
          }
        },
        "required": [
          "object",
          "inLibrary",
          "addedToLibraryDate",
          "downloadAPI"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "RawOrderedData": {
        "nullable": true,
        "properties": {
          "childArray": {
            "description": "Any docket text that belongs to the main docket text is added in the child.",
            "items": {
              "$ref": "#/components/schemas/RawOrderedDataChild"
            },
            "type": "array"
          },
          "lbl": {
            "description": "Label of the docket from the source.",
            "example": "name",
            "maxLength": 100000,
            "nullable": true,
            "type": "string"
          },
          "ord": {
            "description": "Structure order",
            "example": 0,
            "type": "integer"
          },
          "val": {
            "description": "List of available addresses.",
            "example": "Proietti, Donald",
            "maxLength": 1000000,
            "nullable": true,
            "type": "string"
          }
        },
        "required": [
          "ord",
          "lbl",
          "val",
          "childArray"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "RawOrderedDataChild": {
        "nullable": true,
        "properties": {
          "childArray": {
            "description": "Any docket text that belongs to the main docket text is added in the child.",
            "items": {
              "description": "Contact object Data Schema.",
              "nullable": true,
              "properties": {
                "childArray": {
                  "items": {
                    "type": "object"
                  },
                  "type": "array"
                },
                "lbl": {
                  "description": "Label of the docket from the source.",
                  "example": "name",
                  "maxLength": 500,
                  "nullable": true,
                  "type": "string"
                },
                "ord": {
                  "description": "Structure order.",
                  "example": 0,
                  "type": "integer"
                },
                "val": {
                  "description": "List of available addresses.",
                  "example": "Proietti, Donald",
                  "maxLength": 1000000,
                  "nullable": true,
                  "type": "string"
                }
              },
              "required": [
                "ord",
                "lbl",
                "val",
                "childArray"
              ],
              "type": "object"
            },
            "type": "array"
          },
          "lbl": {
            "description": "Label of the docket from the source.",
            "example": "",
            "maxLength": 255,
            "nullable": true,
            "type": "string"
          },
          "ord": {
            "description": "Structure order.",
            "example": 0,
            "type": "integer"
          },
          "val": {
            "description": "List of available addresses.",
            "example": "Proietti, Donald",
            "maxLength": 100000,
            "nullable": true,
            "type": "string"
          }
        },
        "required": [
          "ord",
          "lbl",
          "val",
          "childArray"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "ReferencedDocketNumber": {
        "description": "Object consisiting of each docket entry number and its corresponding API call.",
        "nullable": true,
        "properties": {
          "docketEntriesAPI": {
            "description": "Link to Docket Entries API with the current docket number. The response of this API will give all the primary documents and secondary documents that are associated to it.",
            "example": "https://enterpriseapi.unicourt.com/case/CASEgued96d541f794/docketEntries?docketNumber=172",
            "maxLength": 255,
            "nullable": true,
            "type": "string"
          },
          "docketNumber": {
            "description": "Each referenced docket number",
            "example": 172,
            "type": "integer"
          },
          "object": {
            "default": "ReferencedDocketNumber",
            "description": "Name of the object",
            "maxLength": 22,
            "minLength": 22,
            "nullable": false,
            "type": "string"
          }
        },
        "required": [
          "object",
          "docketNumber",
          "docketEntriesAPI"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "RelatedCase": {
        "nullable": true,
        "properties": {
          "additionalSourceData": {
            "$ref": "#/components/schemas/SourceStructuredData"
          },
          "caseAPI": {
            "description": "Link to the Case API of the current related case.",
            "example": "https://enterpriseapi.unicourt.com/case/CASEgued96d541f794/",
            "maxLength": 255,
            "nullable": true,
            "type": "string",
            "x-logical-reference": "CaseAPI"
          },
          "caseId": {
            "description": "Case ID of the related Case. This can be null if this case in not found in our database. However the meta information of the related case will be present.",
            "example": "CASEjr6533d15dc165",
            "maxLength": 18,
            "minLength": 18,
            "nullable": true,
            "type": "string"
          },
          "caseName": {
            "description": "Case Name of the related Case.",
            "example": "Richard Jacob vs Johnson & Johnson",
            "maxLength": 250,
            "nullable": true,
            "type": "string"
          },
          "caseNumber": {
            "description": "Case Number of the related Case.",
            "example": "CAC/3:19-cv-0001",
            "maxLength": 50,
            "minLength": 3,
            "nullable": false,
            "type": "string"
          },
          "caseRelationshipType": {
            "$ref": "#/components/schemas/CaseRelationshipType"
          },
          "isVisible": {
            "description": "This specifies if the related cases is still related to the parent case or not.",
            "example": true,
            "type": "boolean"
          },
          "object": {
            "default": "RelatedCase",
            "description": "Name of the object",
            "maxLength": 11,
            "minLength": 11,
            "nullable": false,
            "type": "string"
          },
          "sourceCaseRelationshipType": {
            "description": "Case Relationship Type provided by court.",
            "example": "PARENT CASE",
            "maxLength": 250,
            "minLength": 3,
            "nullable": false,
            "type": "string"
          }
        },
        "required": [
          "object",
          "caseId",
          "caseNumber",
          "caseName",
          "caseRelationshipType",
          "sourceCaseRelationshipType",
          "isVisible",
          "additionalSourceData",
          "caseAPI"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "RelatedCases": {
        "nullable": true,
        "properties": {
          "nextPageAPI": {
            "description": "Link to next page of a particular entity in a Case.",
            "example": "https://enterpriseapi.unicourt.com/case/CASEgued96d541f794/parties/?pageNumber=1",
            "maxLength": 255,
            "nullable": true,
            "type": "string"
          },
          "object": {
            "default": "RelatedCases",
            "description": "Name of the object",
            "maxLength": 12,
            "minLength": 12,
            "nullable": false,
            "type": "string"
          },
          "pageNumber": {
            "description": "Page number for which results where obtained.",
            "example": 1,
            "type": "integer"
          },
          "relatedCaseArray": {
            "items": {
              "$ref": "#/components/schemas/RelatedCase"
            },
            "maxItems": 100,
            "type": "array"
          },
          "totalCount": {
            "description": "Total number of parties of the Case entity in a Case.",
            "example": 150,
            "type": "integer"
          },
          "totalPages": {
            "description": "Total number of pages to obtain all the objects of a party in the Case.",
            "example": 120,
            "type": "integer"
          }
        },
        "required": [
          "object",
          "pageNumber",
          "totalPages",
          "nextPageAPI",
          "totalCount",
          "relatedCaseArray"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "RelatedNormParty": {
        "properties": {
          "normPartyId": {
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          },
          "object": {
            "default": "RelatedNormParty",
            "maxLength": 16,
            "nullable": false,
            "type": "string"
          },
          "relationshipType": {
            "enum": [
              "Parent",
              "Child",
              "Same_Corporate_Group"
            ],
            "maxLength": 250,
            "nullable": false,
            "type": "string"
          }
        },
        "required": [
          "object",
          "normPartyId",
          "relationshipType"
        ],
        "title": "RelatedNormParty",
        "type": "object",
        "x-unicourt-container": false
      },
      "SOSAssociatedNormOrganization": {
        "properties": {
          "fromDate": {
            "format": "date-time",
            "maxLength": 25,
            "nullable": false,
            "type": "string"
          },
          "name": {
            "maxLength": 500,
            "nullable": false,
            "type": "string"
          },
          "normOrganizationAPI": {
            "format": "uri",
            "maxLength": 255,
            "nullable": true,
            "type": "string"
          },
          "normOrganizationId": {
            "maxLength": 18,
            "minLength": 17,
            "nullable": true,
            "type": "string"
          },
          "object": {
            "default": "SOSAssociatedNormOrganization",
            "maxLength": 29,
            "nullable": false,
            "type": "string"
          },
          "relationshipType": {
            "enum": [
              "Parent",
              "Child"
            ],
            "maxLength": 6,
            "nullable": false,
            "type": "string"
          },
          "toDate": {
            "format": "date-time",
            "maxLength": 25,
            "nullable": true,
            "type": "string"
          }
        },
        "required": [
          "object",
          "normOrganizationId",
          "normOrganizationAPI",
          "relationshipType",
          "name",
          "fromDate",
          "toDate"
        ],
        "title": "SOSAssociatedNormOrganization",
        "type": "object",
        "x-unicourt-container": false
      },
      "SOSData": {
        "properties": {
          "associatedSoSPersonArray": {
            "items": {
              "$ref": "#/components/schemas/AssociatedSoSPerson"
            },
            "type": "array"
          },
          "contact": {
            "$ref": "#/components/schemas/Contact"
          },
          "domesticRegistration": {
            "default": true,
            "type": "boolean"
          },
          "fein": {
            "maxLength": 16,
            "nullable": true,
            "type": "string"
          },
          "firstFetchDate": {
            "format": "date-time",
            "maxLength": 25,
            "nullable": false,
            "type": "string"
          },
          "inactivationDate": {
            "format": "date-time",
            "maxLength": 25,
            "nullable": true,
            "type": "string"
          },
          "isActive": {
            "default": true,
            "type": "boolean"
          },
          "lastFetchDate": {
            "format": "date-time",
            "maxLength": 25,
            "nullable": false,
            "type": "string"
          },
          "lastFetchDateWithUpdates": {
            "description": "Last Fetch Date of Organization with Updates.",
            "format": "date-time",
            "maxLength": 25,
            "nullable": false,
            "type": "string"
          },
          "nameChangesArray": {
            "items": {
              "$ref": "#/components/schemas/SOSNameChange"
            },
            "type": "array"
          },
          "object": {
            "default": "SOSData",
            "maxLength": 7,
            "nullable": false,
            "type": "string"
          },
          "registeredDate": {
            "format": "date-time",
            "maxLength": 25,
            "nullable": true,
            "type": "string"
          },
          "sosAssociatedNormOrganizationArray": {
            "items": {
              "$ref": "#/components/schemas/SOSAssociatedNormOrganization"
            },
            "type": "array"
          },
          "sosNumber": {
            "maxLength": 50,
            "nullable": true,
            "type": "string"
          },
          "stateCode": {
            "maxLength": 2,
            "nullable": false,
            "type": "string"
          },
          "status": {
            "enum": [
              "Active"
            ],
            "maxLength": 10,
            "nullable": true,
            "type": "string"
          }
        },
        "required": [
          "object",
          "sosNumber",
          "stateCode",
          "fein",
          "domesticRegistration",
          "registeredDate",
          "status",
          "isActive",
          "inactivationDate",
          "associatedSoSPersonArray",
          "contact",
          "nameChangesArray",
          "sosAssociatedNormOrganizationArray",
          "firstFetchDate",
          "lastFetchDate",
          "lastFetchDateWithUpdates"
        ],
        "title": "SOSData",
        "type": "object",
        "x-unicourt-container": false
      },
      "SOSDataPreview": {
        "properties": {
          "object": {
            "default": "SOSDataPreview",
            "maxLength": 14,
            "nullable": false,
            "type": "string"
          },
          "sosNumber": {
            "maxLength": 250,
            "nullable": false,
            "type": "string"
          },
          "stateCode": {
            "maxLength": 2,
            "nullable": false,
            "type": "string"
          }
        },
        "required": [
          "object",
          "sosNumber",
          "stateCode"
        ],
        "title": "SOSDataPreview",
        "type": "object",
        "x-unicourt-container": true
      },
      "SOSNameChange": {
        "properties": {
          "fromDate": {
            "format": "date-time",
            "maxLength": 25,
            "nullable": true,
            "type": "string"
          },
          "name": {
            "maxLength": 500,
            "nullable": false,
            "type": "string"
          },
          "object": {
            "default": "SOSNameChange",
            "maxLength": 13,
            "nullable": false,
            "type": "string"
          },
          "toDate": {
            "format": "date-time",
            "maxLength": 25,
            "nullable": true,
            "type": "string"
          }
        },
        "required": [
          "object",
          "name",
          "fromDate",
          "toDate"
        ],
        "title": "SOSNameChange",
        "type": "object",
        "x-unicourt-container": false
      },
      "Schedule": {
        "properties": {
          "days": {
            "description": "[] -> if schedule type is daily <br>\n1-7 -> if schedule type is weekly <br>\n1-31 -> if schedule type is monthly\n",
            "example": [
              1,
              3,
              5
            ],
            "items": {
              "type": "integer"
            },
            "type": "array"
          },
          "object": {
            "default": "Schedule",
            "description": "Name of the object.",
            "example": "Schedule",
            "maxLength": 8,
            "minLength": 8,
            "nullable": false,
            "type": "string"
          },
          "type": {
            "enum": [
              "daily",
              "weekly",
              "monthly"
            ],
            "example": "weekly",
            "maxLength": 7,
            "minLength": 5,
            "nullable": false,
            "type": "string"
          }
        },
        "required": [
          "object",
          "type",
          "days"
        ],
        "title": "Schedule",
        "type": "object",
        "x-unicourt-container": false
      },
      "ServiceHistory": {
        "description": "A timeline of courts where the judge has been employed.",
        "properties": {
          "appointedBy": {
            "description": "The President-in-charge of the Judges appointment.",
            "maxLength": 100,
            "nullable": true,
            "type": "string"
          },
          "fromDate": {
            "description": "The year in which the Judge began practicing in his current service.",
            "format": "date-time",
            "maxLength": 25,
            "nullable": true,
            "type": "string"
          },
          "fromYear": {
            "description": "The year in which the Judge began practicing in his current service.",
            "nullable": true,
            "type": "integer"
          },
          "isVisible": {
            "description": "Boolean indicating if the service history  is visible or not.",
            "type": "boolean"
          },
          "object": {
            "default": "ServiceHistory",
            "maxLength": 14,
            "nullable": false,
            "type": "string"
          },
          "reasonForTermination": {
            "description": "The reason for the Judges termination for the current position.",
            "maxLength": 50,
            "nullable": true,
            "type": "string"
          },
          "sourceCourt": {
            "description": "The court served by the Judge. The court is taken from source.",
            "maxLength": 250,
            "nullable": true,
            "type": "string"
          },
          "title": {
            "description": "Title held by the Judge.",
            "maxLength": 50,
            "nullable": true,
            "type": "string"
          },
          "toDate": {
            "description": "The year in which the Judge stoped practicing in his current service.",
            "format": "date-time",
            "maxLength": 25,
            "nullable": true,
            "type": "string"
          },
          "toYear": {
            "description": "The year in which the Judge stoped practicing in his current service.",
            "nullable": true,
            "type": "integer"
          }
        },
        "required": [
          "object",
          "appointedBy",
          "reasonForTermination",
          "sourceCourt",
          "title",
          "fromYear",
          "toYear",
          "fromDate",
          "toDate",
          "isVisible"
        ],
        "title": "ServiceHistory",
        "type": "object",
        "x-unicourt-container": false
      },
      "ServiceStatus": {
        "nullable": true,
        "properties": {
          "object": {
            "default": "ServiceStatus",
            "description": "Name of the object",
            "maxLength": 13,
            "minLength": 13,
            "nullable": false,
            "type": "string"
          },
          "serviceDetails": {
            "description": "Status Details of Case Update Services Status.",
            "enum": [
              "acceptingCaseUpdates",
              "notAcceptingCaseUpdates",
              "acceptingCaseTrack",
              "notAcceptingCaseTrack",
              "acceptingAutoDocOrders",
              "acceptingManualDocOrders",
              "notAcceptingAutoDocOrdersLimitExceeded",
              "notAcceptingManualDocOrdersLimitExceeded",
              "notAcceptingDocOrders"
            ],
            "example": "notAcceptingCaseUpdates",
            "type": "string"
          },
          "serviceStatusDownDetails": {
            "$ref": "#/components/schemas/ServiceStatusDownDetails"
          },
          "serviceUp": {
            "description": "Status of Case Update Services Status.",
            "example": false,
            "type": "boolean"
          }
        },
        "required": [
          "object",
          "serviceUp",
          "serviceDetails",
          "serviceStatusDownDetails"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "ServiceStatusDownDetails": {
        "nullable": true,
        "properties": {
          "details": {
            "description": "Details of the reason.",
            "example": "The integration is broken due to changes in the structure of Case Detail page in the court site.",
            "maxLength": 1000,
            "nullable": true,
            "type": "string"
          },
          "eta": {
            "description": "Estimated Time this Service could be Up again for the use.",
            "example": "2020-08-05T17:32:28+00:00",
            "maxLength": 25,
            "minLength": 25,
            "nullable": true,
            "type": "string"
          },
          "object": {
            "default": "ServiceStatusDownDetails",
            "description": "Name of the object",
            "maxLength": 24,
            "minLength": 24,
            "nullable": false,
            "type": "string"
          },
          "reason": {
            "description": "This field determines the reason behind status being down. Following are the possible reason for the service to be down:\n\n\tunderMaintenance: It means that the site is under scheduled maintenance.\n\n\tnotIntegrated: When an court with specific case type is not integrated in UniCourt.\n\n\tbrokenIntegration: Due to some updates made to the court site our existing Integration has broken and will require a fix to be made to support this court again for a spcific case type category.\n\n\tsourceMigrated: When a source is migrated from one site to another for a specific case type category.",
            "enum": [
              "underMaintenance",
              "notIntegrated",
              "brokenIntegration",
              "sourceMigrated"
            ],
            "example": "brokenIntegration",
            "type": "string"
          }
        },
        "required": [
          "object",
          "reason",
          "details",
          "eta"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "SimilarNormAttorney": {
        "properties": {
          "barRecordPreviewArray": {
            "items": {
              "$ref": "#/components/schemas/BarRecordPreview"
            },
            "type": "array"
          },
          "name": {
            "maxLength": 500,
            "minLength": 1,
            "nullable": false,
            "type": "string"
          },
          "normAttorneyAPI": {
            "format": "uri",
            "maxLength": 255,
            "nullable": false,
            "type": "string"
          },
          "normAttorneyId": {
            "maxLength": 18,
            "minLength": 18,
            "nullable": false,
            "type": "string"
          },
          "normAttorneySimilarityScore": {
            "format": "float",
            "type": "number"
          },
          "object": {
            "default": "SimilarNormAttorney",
            "maxLength": 19,
            "minLength": 19,
            "nullable": false,
            "type": "string"
          }
        },
        "required": [
          "object",
          "normAttorneyId",
          "normAttorneyAPI",
          "name",
          "normAttorneySimilarityScore",
          "barRecordPreviewArray"
        ],
        "title": "SimilarNormAttorney",
        "type": "object",
        "x-unicourt-container": false
      },
      "SourceCaseData": {
        "description": "Source data in the court website.",
        "properties": {
          "natureOfSuitArray": {
            "description": "Array of Charges for a case which is provided by the Court.",
            "items": {
              "$ref": "#/components/schemas/NatureOfSuit"
            },
            "type": "array"
          },
          "object": {
            "default": "SourceCaseData",
            "description": "Name of the object",
            "maxLength": 14,
            "minLength": 14,
            "nullable": false,
            "type": "string"
          },
          "sourceCaseStatus": {
            "description": "Case Status as provided by Court.",
            "example": "PENDING",
            "maxLength": 250,
            "nullable": false,
            "type": "string"
          },
          "sourceCaseType": {
            "description": "Case Type for a case which is provided by the Court.",
            "example": "CHAPTER 13",
            "maxLength": 250,
            "nullable": false,
            "type": "string"
          },
          "sourceCauseOfActionArray": {
            "description": "Array of Cause Of Action for a case which is provided by the Court.",
            "items": {
              "$ref": "#/components/schemas/SourceCauseOfAction"
            },
            "type": "array"
          },
          "sourceChargeArray": {
            "description": "Array of Charges for a case which is provided by the Court.",
            "items": {
              "$ref": "#/components/schemas/SourceCharge"
            },
            "type": "array"
          },
          "sourceCourt": {
            "description": "Courtrhouse as provided by Court.",
            "example": "U.S. Bankruptcy Courts",
            "maxLength": 250,
            "nullable": false,
            "type": "string"
          },
          "sourcePageData": {
            "items": {
              "$ref": "#/components/schemas/SourcePageData"
            },
            "type": "array"
          }
        },
        "required": [
          "object",
          "sourceCourt",
          "sourceCaseType",
          "sourceChargeArray",
          "sourceCauseOfActionArray",
          "natureOfSuitArray",
          "sourceCaseStatus",
          "sourcePageData"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "SourceCauseOfAction": {
        "description": "Source Cause of Action data from the source site.",
        "nullable": true,
        "properties": {
          "firstFetchDate": {
            "description": "When this Cause of Action was first fetched from the court site.",
            "example": "2021-10-10T10:10:24+00:00",
            "maxLength": 25,
            "minLength": 25,
            "nullable": false,
            "type": "string"
          },
          "isVisible": {
            "description": "Signifies if the cause of action is currently isVisible or not for the case.",
            "example": true,
            "type": "boolean"
          },
          "lastFetchDate": {
            "description": "When this Cause of Action was last fetched from the court site.",
            "example": "2021-10-10T10:10:24+00:00",
            "maxLength": 25,
            "minLength": 25,
            "nullable": false,
            "type": "string"
          },
          "object": {
            "default": "SourceCauseOfAction",
            "description": "Name of the object",
            "maxLength": 19,
            "minLength": 19,
            "nullable": false,
            "type": "string"
          },
          "sourceCauseOfAction": {
            "description": "Cause of Action data from the source site.",
            "example": "Trademark Infringement",
            "maxLength": 250,
            "nullable": true,
            "type": "string"
          },
          "sourceCauseOfActionRaw": {
            "description": "Raw Cause of Action data from the source site.",
            "example": "15:44 Trademark Infringement",
            "maxLength": 500,
            "nullable": true,
            "type": "string"
          },
          "sourceStatute": {
            "description": "Statute of a Cause of Action.",
            "example": "15:44",
            "maxLength": 250,
            "nullable": true,
            "type": "string"
          }
        },
        "required": [
          "object",
          "sourceCauseOfActionRaw",
          "isVisible",
          "sourceCauseOfAction",
          "sourceStatute",
          "firstFetchDate",
          "lastFetchDate"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "SourceCharge": {
        "description": "Source charge data from the source site.",
        "nullable": true,
        "properties": {
          "firstFetchDate": {
            "description": "When this charge was first fetched from the court site.",
            "example": "2021-10-10T10:10:24+00:00",
            "maxLength": 25,
            "minLength": 25,
            "nullable": false,
            "type": "string"
          },
          "isVisible": {
            "description": "Signifies if the charge is currently isVisible or not for the case.",
            "example": true,
            "type": "boolean"
          },
          "lastFetchDate": {
            "description": "When this charge was last fetched from the court site.",
            "example": "2021-10-10T10:10:24+00:00",
            "maxLength": 25,
            "minLength": 25,
            "nullable": false,
            "type": "string"
          },
          "object": {
            "default": "SourceCharge",
            "description": "Name of the object",
            "maxLength": 12,
            "minLength": 12,
            "nullable": false,
            "type": "string"
          },
          "sourceCharge": {
            "description": "Charge data from the source site.",
            "example": "COMMIT ASSAULT OR BATTERY DURING BURGLARY",
            "maxLength": 255,
            "nullable": true,
            "type": "string"
          },
          "sourceChargeAdditionalDataArray": {
            "description": "Additional data related to the charge which is available in the source site.",
            "items": {
              "$ref": "#/components/schemas/SourceChargeAdditionalData"
            },
            "type": "array"
          },
          "sourceChargeDegree": {
            "description": "Charge degree data from the source site.",
            "example": "First Degree",
            "maxLength": 255,
            "nullable": true,
            "type": "string"
          },
          "sourceChargeRaw": {
            "description": "Raw charge data from the source site.",
            "example": "836.12.2 THREATENING A LAW ENFORCEMENT OFFICER",
            "maxLength": 255,
            "nullable": false,
            "type": "string"
          },
          "sourceChargeSeverity": {
            "description": "Charge severity data from the source site.",
            "example": "Misdemeanor",
            "maxLength": 255,
            "nullable": true,
            "type": "string"
          },
          "sourceStatute": {
            "description": "Statute of a charge.",
            "example": "836.12.2",
            "maxLength": 50,
            "nullable": true,
            "type": "string"
          }
        },
        "required": [
          "object",
          "sourceChargeRaw",
          "sourceCharge",
          "isVisible",
          "sourceChargeDegree",
          "sourceChargeSeverity",
          "sourceStatute",
          "sourceChargeAdditionalDataArray",
          "firstFetchDate",
          "lastFetchDate"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "SourceChargeAdditionalData": {
        "description": "Additional data that enchances the information of a given charge.",
        "nullable": true,
        "properties": {
          "object": {
            "default": "SourceChargeAdditionalData",
            "description": "Name of the object",
            "maxLength": 26,
            "minLength": 26,
            "nullable": false,
            "type": "string"
          },
          "type": {
            "description": "Describes what type of additional data.",
            "maxLength": 255,
            "nullable": false,
            "type": "string"
          },
          "value": {
            "description": "Value of additional data.",
            "maxLength": 255,
            "nullable": true,
            "type": "string"
          }
        },
        "required": [
          "object",
          "type",
          "value"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "SourcePageData": {
        "description": "Source data from different pages in the court website.",
        "nullable": true,
        "properties": {
          "additionalSourceData": {
            "$ref": "#/components/schemas/SourceStructuredData"
          },
          "firstFetchDate": {
            "description": "When was the page first fetched from the court site.",
            "example": "2021-10-10T10:10:24+00:00",
            "maxLength": 25,
            "minLength": 25,
            "nullable": false,
            "type": "string"
          },
          "lastFetchDate": {
            "description": "When was the page last fetched from the court site.",
            "example": "2021-10-10T10:10:24+00:00",
            "maxLength": 25,
            "minLength": 25,
            "nullable": false,
            "type": "string"
          },
          "object": {
            "default": "SourcePageData",
            "description": "Name of the object",
            "maxLength": 14,
            "minLength": 14,
            "nullable": false,
            "type": "string"
          },
          "pageName": {
            "description": "Pages supported for PACER pacerCaseQuery, pacerDocketReport, pacerCaseSummary, pacerAssociatedCases, pacerCaseLocatorResults, hearing, relatedCases.",
            "example": "PACER_CASE_QUERY",
            "maxLength": 100,
            "nullable": false,
            "type": "string"
          }
        },
        "required": [
          "object",
          "pageName",
          "additionalSourceData",
          "firstFetchDate",
          "lastFetchDate"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "SourceStructuredData": {
        "nullable": true,
        "properties": {
          "extractedFields": {
            "$ref": "#/components/schemas/ExtractedFields"
          },
          "rawOrderedDataArray": {
            "items": {
              "$ref": "#/components/schemas/RawOrderedData"
            },
            "type": "array"
          }
        },
        "required": [
          "rawOrderedDataArray",
          "extractedFields"
        ],
        "type": "object",
        "x-unicourt-container": false
      },
      "Success": {
        "description": "Success object contains its message related to the API request.",
        "properties": {
          "message": {
            "description": "A message indicating that the request was successful.",
            "maxLength": 255,
            "minLength": 1,
            "nullable": false,
            "type": "string"
          },
          "object": {
            "default": "Success",
            "example": "Success",
            "maxLength": 7,
            "minLength": 7,
            "nullable": false,
            "type": "string"
          }
        },
        "required": [
          "message",
          "object"
        ],
        "title": "Success",
        "type": "object",
        "x-unicourt-container": false
      }
    },
    "securitySchemes": {
      "bearerAuth": {
        "bearerFormat": "JWT",
        "scheme": "bearer",
        "type": "http"
      }
    }
  }
}