action unicourt_get_norm_attorneys_associated_with_norm_law_firm { label: "Attorneys working for the Law Firm." 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
\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
\nq=caseTypeId:\"CTYPATMYyaJekdgj2c\" AND caseFiledDate:[2017-01-01T00:00:00+00:00TO2021-11-30T00:00:00+00:00]\n

\n" provider: unicourt method: GET path: "/normLawFirm/{normLawFirmId}/associatedNormAttorneys" encoding: json input: { type: "object" properties: { q: { type: "string" } } additionalProperties: false } output: { type: "object" required: ["associatedNormAttorneyArray", "nextPageAPI", "previousPageAPI", "totalCount", "totalPages"] properties: { associatedNormAttorneyArray: { type: "array" items: { type: "object" required: ["object", "normAttorneyAPI", "normAttorneyId", "caseTimeline", "name", "firstName", "middleName", "lastName", "caseSearchAPI", "caseCount", "stateBarDataArray"] properties: { caseCount: { type: "integer" } caseSearchAPI: { type: "string" format: "uri" description: "Link to related cases for this association." } caseTimeline: { type: "object" required: ["object", "firstCaseFiledDate", "lastCaseFiledDate"] properties: { firstCaseFiledDate: { type: "string" format: "date-time" description: "The first date when the two entities have appeared together in the case. (These dates are determined from case filed dates)" } lastCaseFiledDate: { type: "string" format: "date-time" description: "The last date when the two entities have appeared together in the case. (These dates are determined from case filed dates)" } object: { type: "string" } } } firstName: { type: "string" } lastName: { type: "string" } middleName: { type: "string" } name: { type: "string" } normAttorneyAPI: { type: "string" format: "uri" description: "Link to details for the Attorney." } normAttorneyId: { type: "string" } object: { type: "string" } stateBarDataArray: { type: "array" items: { type: "object" required: ["object", "barSourceType", "barNumber", "stateCode"] properties: { barNumber: { type: "string" } barSourceType: { type: "string" } object: { type: "string" } stateCode: { type: "string" } } } } } } } nextPageAPI: { type: "string" format: "uri" description: "Next page of results if applicable." } previousPageAPI: { type: "string" format: "uri" description: "Previous page of results if applicable." } totalCount: { type: "integer" description: "Total no. of results for this criteria." } totalPages: { type: "integer" description: "Total no. of pages." } } } }