freelawproject / courtlistener

A fully-searchable and accessible archive of court data including growing repositories of opinions, oral arguments, judges, judicial financial records, and federal filings.
https://www.courtlistener.com
Other
531 stars 147 forks source link

Elastic Search Optimizations: Round Two #4209

Open mlissner opened 1 month ago

mlissner commented 1 month ago

Back in https://github.com/freelawproject/courtlistener/issues/3536#issuecomment-1992789591, we talked about and did a lot of work on performance enhancements, and then we concluded:

  1. Highlighting is expensive, but we can't turn it off because then we'd lose snippets.

  2. Counts are expensive. It looks like we might be able to use track_total_hits to help with this though.

    We discussed this a bit in https://github.com/freelawproject/courtlistener/pull/3648, but I feel like we didn't consider just setting it to an integer and allowing the front end to do the More than 1,000 hits kind of thing.

  3. We could tinker with shards. More might help, or not.

Something else we haven't discussed (because it's better to think about this after we've optimized the software) is optimizing hardware. I don't actually know where our bottleneck is, whether it's CPU, disk, or networking. I just looked and things seem sort of OK to me, but I guess we can ask Ramiro to do this soon.

I think playing with the query counts is probably our best low hanging fruit, and that we should get Ramiro to look into the performance metrics.

For now I just wanted to spin this off because that older issues is just too long!

mlissner commented 1 month ago

@blancoramiro, is it easy to make the elastic disks 2× faster temporarily to see if that helps?

@albertisfu I'm finding that performance is still kind of a bummer. Did we do the work to make counts estimates in RECAP? Could we try that? Could we do some benchmarks before and after this and Ramiro's change, like we did before?

It'd be nice if we could make it 10× faster or even 5× faster.

albertisfu commented 1 month ago

We do have counts estimates in the Search API, it'd be easy to also apply it to the frontend for both Cases and Documents.

You can see how the estimates works in the API: https://www.courtlistener.com/api/rest/v4/search/?q=apple&type=r

Screenshot 2024-07-29 at 5 07 29 p m

vs the frontend

Screenshot 2024-07-29 at 5 07 45 p m

We could use these queries we already have to perform the benchmarks without having to change anything in the code yet.

Any query would you like to use in the benchmark?

mlissner commented 1 month ago

Hm....can just grab 50 words or so, and go with it? Maybe add a phrase or two, or add a multi-word queries? Doesn't have to be rigorous? Simple is fine?

I opened https://github.com/freelawproject/courtlistener/issues/4255 to spec out the change itself.

albertisfu commented 1 month ago

Here are the scripts to assess the performance of RECAP search queries in the frontend and the API:

Common code:

import requests
import time
from cl.search.models import SEARCH_TYPES

search_terms = [
    '',
    'The Litigation Practice Group',
    '"Alston v. Penn State Health"',
    'Danny Ray Jackson',
    '"MEMBER CASE OPENED:"',
    'Parties to exchange Rule ',
    'BROOKS v. CITY',
    'UNITED STATES',
    'ALABAMA NORTHERN DIVISION',
    'ALSAIDI v.HUBERT',
    'Stroman v.U.S.Treasury',
    'United States v.Ainsworth',
    'Ballester v.State of Florida',
    'Sharma v.Eyebrows',
    'Search Warrant Issued in case as to Priority Mail Package addressed to',
    '"all parties must sign their names on the attached Consent"',
    'proceedings',
    'held',
    'before',
    'Magistrate ',
    'Judge',
    'description:ORDER AND plain_text:Motion',
    'description:ORDER OR plain_text:Motion',
    'Levi Haywood',
    'EASTERN DISTRICT OF CALIFORNIA'
    '"EASTERN DISTRICT OF CALIFORNIA"',
    'Signed by Magistrate Judge',
    'shall',
    'file',
    'further',
    'amended',
    'pleadings',
    'without',
    'first',
    'MINUTE ORDER',
    'Motions deadline',
    'Continuance of Motions',
    'Detention and Identity',
    'Case Management',
    'Scheduling Order',
    'New York State',
    'Supreme Court',
    'MAGISTRATE CASE TERMINATED',
    'Detention and Identity Hearing',
    '"Detention and Identity Hearing"',
    'All pretrial motions',
    'Each',
    'party',
    'will',
    'bear',
    'own',
    'Second Floor',
    'Plaintiff',
]

Frontend:

response_times = {}
for search_term in search_terms:
    start_time = time.time()
    search_params = {
        "q": search_term,
        "type": SEARCH_TYPES.RECAP,
    }
    url = "http://cl-python:80/"
    print("Doing search term:", search_term)
    start_time = time.time()
    try:
        r = requests.get(url, params=search_params, )
    except Exception as e:
        print(f"An error occurred on search: {search_term}: {e}")
        continue

    response_time = time.time() - start_time
    response_times.update({search_term: response_time})

print("Response Times:", response_times, "\n")
times = [value for value in response_times.values()]
average_time = sum(times) / len(times)

max_term = max(response_times, key=response_times.get)
min_term = min(response_times, key=response_times.get)
max_time = response_times[max_term]
min_time = response_times[min_term]

print(f"Average response time: {average_time:.2f} seconds.\n")
print(f"Search term with maximum request time: '{max_term}' :{max_time:.2f} seconds.\n")
print(f"Search term with minimum request time: '{min_term}' :{min_time:.2f} seconds.\n")

API:

INITIAL_URL = "http://cl-django:8000/api/rest/v4/search/"
TOKEN = "API_TOKEN"
HEADERS = {'Authorization': f'Token {TOKEN}'}

response_times = {}
for search_term in search_terms:
    search_params = {
        "q": search_term,
        "type": SEARCH_TYPES.RECAP,
    }
    url = INITIAL_URL
    print("Doing search term:", search_term)
    start_time = time.time()
    try:
        r = requests.get(url, params=search_params, headers=HEADERS)
    except Exception as e:
        print(f"An error occurred on search: {search_term}: {e}")
        continue
    response_time = time.time() - start_time
    response_times.update({search_term: response_time})

print("Response Times:", response_times, "\n")
times = [value for value in response_times.values()]
average_time = sum(times) / len(times)

max_term = max(response_times, key=response_times.get)
min_term = min(response_times, key=response_times.get)
max_time = response_times[max_term]
min_time = response_times[min_term]

print(f"Average response time: {average_time:.2f} seconds.\n")
print(f"Search term with maximum request time: '{max_term}' :{max_time:.2f} seconds.\n")
print(f"Search term with minimum request time: '{min_term}' :{min_time:.2f} seconds.\n")

The search terms were extracted from the actual results in production, so all of them will return results. Some of the terms are single words, multi-word phrases, and fielded queries. It also includes a match-all query.

I couldn't run the frontend script locally using the courtlistener.com domain since the CloudFront bot protection blocked the requests. So, maybe we should run these within a maintenance pod using the local interface http://cl-django:8000 as the base URL.

Another thing to consider in this approach is that the frontend responses are heavier than the API responses, which could influence response times.

We should also considering to perform the benchmarks under low and stable resource usage conditions, ensuring equal conditions for both tests. When the cluster is overloaded, response times are significantly slower.

Right now the cluster looks good: Screenshot 2024-07-31 at 10 22 33 a m

mlissner commented 1 month ago

Running this now. Had to change the host to http://cl-python:80 (the docker image serves port 8000, but k8s maps it to 80).

I didn't run it on the API because I'm focused on the front end right now, and here are the results:

Response Times: {'': 12.72679328918457, 'The Litigation Practice Group': 4.4000794887542725, '"Alston v. Penn State Health"': 2.901895761489868, 'Danny Ray Jackson': 1.4988391399383545, '"MEMBER CASE OPENED:"': 3.345663547515869, 'Parties to exchange Rule ': 6.574068307876587, 'BROOKS v. CITY': 2.9397776126861572, 'UNITED STATES': 186.8716230392456, 'ALABAMA NORTHERN DIVISION': 3.087289810180664, 'ALSAIDI v.HUBERT': 2.9419922828674316, 'Stroman v.U.S.Treasury': 1.8923239707946777, 'United States v.Ainsworth': 2.8511767387390137, 'Ballester v.State of Florida': 2.462733030319214, 'Sharma v.Eyebrows': 1.9518721103668213, 'Search Warrant Issued in case as to Priority Mail Package addressed to': 4.180243253707886, '"all parties must sign their names on the attached Consent"': 5.403063774108887, 'proceedings': 6.067562580108643, 'held': 7.175939559936523, 'before': 8.487770080566406, 'Magistrate ': 6.1810996532440186, 'Judge': 10.150331735610962, 'description:ORDER AND plain_text:Motion': 2.4488093852996826, 'description:ORDER OR plain_text:Motion': 7.413483142852783, 'Levi Haywood': 1.444803237915039, 'EASTERN DISTRICT OF CALIFORNIA"EASTERN DISTRICT OF CALIFORNIA"': 12.86933159828186, 'Signed by Magistrate Judge': 11.687525272369385, 'shall': 3.837925434112549, 'file': 14.814674615859985, 'further': 4.451498985290527, 'amended': 8.610174894332886, 'pleadings': 3.954453945159912, 'without': 4.489995956420898, 'first': 6.471741199493408, 'MINUTE ORDER': 7.57893967628479, 'Motions deadline': 6.399441242218018, 'Continuance of Motions': 10.917569398880005, 'Detention and Identity': 2.7803921699523926, 'Case Management': 7.51436448097229, 'Scheduling Order': 11.391829252243042, 'New York State': 17.800521850585938, 'Supreme Court': 5.7317469120025635, 'MAGISTRATE CASE TERMINATED': 3.478390693664551, 'Detention and Identity Hearing': 3.153221607208252, '"Detention and Identity Hearing"': 3.5869739055633545, 'All pretrial motions': 4.075687646865845, 'Each': 3.4143118858337402, 'party': 5.735083103179932, 'will': 4.676147222518921, 'bear': 3.5608272552490234, 'own': 3.5920569896698, 'Second Floor': 2.9363274574279785, 'Plaintiff': 9.463297605514526} 

Average response time: 9.31 seconds.

Search term with maximum request time: 'UNITED STATES' :186.87 seconds.

Search term with minimum request time: 'Levi Haywood' :1.44 seconds.

Some of these queries are pretty nasty, but 9.3s is horrible. We have to do better.

mlissner commented 1 month ago

Hm, it really doesn't seem like this is helping:

Response Times: {'': 18.791208267211914, 'The Litigation Practice Group': 5.488582372665405, '"Alston v. Penn State Health"': 2.970630168914795, 'Danny Ray Jackson': 3.0387566089630127, '"MEMBER CASE OPENED:"': 5.681991338729858, 'Parties to exchange Rule ': 14.041479587554932, 'BROOKS v. CITY': 6.865917682647705, 'UNITED STATES': 175.2218804359436, 'ALABAMA NORTHERN DIVISION': 6.141289472579956, 'ALSAIDI v.HUBERT': 3.3412973880767822, 'Stroman v.U.S.Treasury': 2.4551193714141846, 'United States v.Ainsworth': 2.699310779571533, 'Ballester v.State of Florida': 5.875624895095825, 'Sharma v.Eyebrows': 1.7594366073608398, 'Search Warrant Issued in case as to Priority Mail Package addressed to': 6.98469614982605, '"all parties must sign their names on the attached Consent"': 5.930657386779785, 'proceedings': 5.324061870574951, 'held': 6.139306306838989, 'before': 6.155940055847168, 'Magistrate ': 6.4949586391448975, 'Judge': 13.00927734375, 'description:ORDER AND plain_text:Motion': 2.5427098274230957, 'description:ORDER OR plain_text:Motion': 6.364737272262573, 'Levi Haywood': 1.0771234035491943, 'EASTERN DISTRICT OF CALIFORNIA"EASTERN DISTRICT OF CALIFORNIA"': 13.544883251190186, 'Signed by Magistrate Judge': 11.198261499404907, 'shall': 4.069661378860474, 'file': 14.731014728546143, 'further': 5.110981702804565, 'amended': 9.103277444839478, 'pleadings': 4.2676122188568115, 'without': 12.3274245262146, 'first': 6.745590925216675, 'MINUTE ORDER': 8.751982927322388, 'Motions deadline': 8.40927267074585, 'Continuance of Motions': 11.018792629241943, 'Detention and Identity': 3.2815611362457275, 'Case Management': 9.135353088378906, 'Scheduling Order': 13.72115707397461, 'New York State': 16.117979764938354, 'Supreme Court': 4.59296178817749, 'MAGISTRATE CASE TERMINATED': 3.990290641784668, 'Detention and Identity Hearing': 2.776899576187134, '"Detention and Identity Hearing"': 3.5531041622161865, 'All pretrial motions': 5.297265291213989, 'Each': 3.5698962211608887, 'party': 6.834993362426758, 'will': 5.898565769195557, 'bear': 2.5243985652923584, 'own': 4.1746978759765625, 'Second Floor': 3.8925423622131348, 'Plaintiff': 14.044274091720581} 

Average response time: 10.14 seconds.

Search term with maximum request time: 'UNITED STATES' :175.22 seconds.

Search term with minimum request time: 'Levi Haywood' :1.08 seconds.

I've run it three different times and this is the best I got. Surprising.

albertisfu commented 1 month ago

Interesting and sad. But I think it makes sense. The three queries are executed (main and two count queries) using the multi-search API, so as soon as they are received in the cluster, they are executed in parallel most of the time, depending on available resources. The response is sent to the client once all three queries have finished. Therefore, the total query time will always be tied to the slowest query, in this case, the main query which is slow due to its parent-child nature. So it doesn't matter how fast the count queries are if the main query is slow.

However, there could still be a benefit in terms of resource usage since it's assumed that cardinality queries use less RAM.

Unfortunately, there is no data before July 30 in Grafana, but it appears there is a slight decrease in memory usage after August 1, which was the date cardinality queries were released.

Screenshot 2024-08-06 at 10 27 21 a m

We can also analyze the count times vs. the main query time by performing the following queries in Kibana:

There are three queries a "fast" one, a "medium" one, and a match-all query, which took the most time except for the "United States" query.

GET recap_vectors/_msearch

{"index":["recap_vectors"]}
{"query":{"bool":{"should":[{"has_child":{"type":"recap_document","score_mode":"max","query":{"bool":{"should":[{"query_string":{"fields":["case_name_full","suitNature","juryDemand","cause","assignedTo","referredTo","court","court_id","court_citation_string","chapter","trustee_str","short_description","plain_text","document_type","caseName^50","docketNumber^3.0","description^2.0"],"query":"Sharma AND v. AND Eyebrows","quote_field_suffix":".exact","default_operator":"AND","tie_breaker":0.3,"fuzziness":2}},{"query_string":{"fields":["case_name_full","suitNature","juryDemand","cause","assignedTo","referredTo","court","court_id","court_citation_string","chapter","trustee_str","short_description","plain_text","document_type","caseName^50","docketNumber^3.0","description^2.0"],"query":"Sharma v. Eyebrows","quote_field_suffix":".exact","default_operator":"AND","type":"phrase","fuzziness":2}}],"minimum_should_match":1}},"inner_hits":{"name":"filter_query_inner_recap_document","size":6,"_source":{"excludes":["plain_text"]},"highlight":{"fields":{"short_description":{"type":"fvh","matched_fields":["short_description","short_description.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"description":{"type":"fvh","matched_fields":["description","description.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"plain_text":{"type":"fvh","matched_fields":["plain_text","plain_text.exact"],"fragment_size":100,"no_match_size":500,"number_of_fragments":1,"pre_tags":["<mark>"],"post_tags":["</mark>"]}}}}}},{"bool":{"filter":[{"match":{"docket_child":"docket"}}],"should":[{"query_string":{"fields":["case_name_full","suitNature","cause","juryDemand","assignedTo","referredTo","court","court_id","court_citation_string","chapter","trustee_str","caseName^50","docketNumber^3.0"],"query":"Sharma AND v. AND Eyebrows","quote_field_suffix":".exact","default_operator":"AND","tie_breaker":0.3,"fuzziness":2}},{"query_string":{"fields":["case_name_full","suitNature","cause","juryDemand","assignedTo","referredTo","court","court_id","court_citation_string","chapter","trustee_str","caseName^50","docketNumber^3.0"],"query":"Sharma v. Eyebrows","quote_field_suffix":".exact","default_operator":"AND","type":"phrase","fuzziness":2}}],"minimum_should_match":1}}]}},"sort":[{"_score":{"order":"desc"}}],"highlight":{"fields":{"assignedTo":{"type":"fvh","matched_fields":["assignedTo","assignedTo.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"caseName":{"type":"fvh","matched_fields":["caseName","caseName.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"cause":{"type":"fvh","matched_fields":["cause","cause.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"court_citation_string":{"type":"fvh","matched_fields":["court_citation_string","court_citation_string.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"docketNumber":{"type":"fvh","matched_fields":["docketNumber","docketNumber.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"juryDemand":{"type":"fvh","matched_fields":["juryDemand","juryDemand.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"referredTo":{"type":"fvh","matched_fields":["referredTo","referredTo.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"suitNature":{"type":"fvh","matched_fields":["suitNature","suitNature.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]}}},"size":10,"from":0,"_source":{"excludes":[]}}
{"index":["recap_vectors"]}
{"query":{"bool":{"should":[{"has_child":{"type":"recap_document","score_mode":"max","query":{"bool":{"should":[{"query_string":{"fields":["case_name_full","suitNature","juryDemand","cause","assignedTo","referredTo","court","court_id","court_citation_string","chapter","trustee_str","short_description","plain_text","document_type","caseName^50","docketNumber^3.0","description^2.0"],"query":"Sharma AND v. AND Eyebrows","quote_field_suffix":".exact","default_operator":"AND","tie_breaker":0.3,"fuzziness":2}},{"query_string":{"fields":["case_name_full","suitNature","juryDemand","cause","assignedTo","referredTo","court","court_id","court_citation_string","chapter","trustee_str","short_description","plain_text","document_type","caseName^50","docketNumber^3.0","description^2.0"],"query":"Sharma v. Eyebrows","quote_field_suffix":".exact","default_operator":"AND","type":"phrase","fuzziness":2}}],"minimum_should_match":1}}}},{"bool":{"filter":[{"match":{"docket_child":"docket"}}],"should":[{"query_string":{"fields":["case_name_full","suitNature","cause","juryDemand","assignedTo","referredTo","court","court_id","court_citation_string","chapter","trustee_str","caseName^50","docketNumber^3.0"],"query":"Sharma AND v. AND Eyebrows","quote_field_suffix":".exact","default_operator":"AND","tie_breaker":0.3,"fuzziness":2}},{"query_string":{"fields":["case_name_full","suitNature","cause","juryDemand","assignedTo","referredTo","court","court_id","court_citation_string","chapter","trustee_str","caseName^50","docketNumber^3.0"],"query":"Sharma v. Eyebrows","quote_field_suffix":".exact","default_operator":"AND","type":"phrase","fuzziness":2}}],"minimum_should_match":1}}]}},"aggs":{"unique_documents":{"cardinality":{"field":"docket_id","precision_threshold":2000}}},"size":0,"track_total_hits":true}
{"index":["recap_vectors"]}
{"query":{"bool":{"should":[{"query_string":{"fields":["case_name_full","suitNature","juryDemand","cause","assignedTo","referredTo","court","court_id","court_citation_string","chapter","trustee_str","short_description","plain_text","document_type","caseName^50","docketNumber^3.0","description^2.0"],"query":"Sharma AND v. AND Eyebrows","quote_field_suffix":".exact","default_operator":"AND","tie_breaker":0.3,"fuzziness":2}},{"query_string":{"fields":["case_name_full","suitNature","juryDemand","cause","assignedTo","referredTo","court","court_id","court_citation_string","chapter","trustee_str","short_description","plain_text","document_type","caseName^50","docketNumber^3.0","description^2.0"],"query":"Sharma v. Eyebrows","quote_field_suffix":".exact","default_operator":"AND","type":"phrase","fuzziness":2}}],"minimum_should_match":1,"filter":[{"match":{"docket_child":"recap_document"}}]}},"aggs":{"unique_documents":{"cardinality":{"field":"id","precision_threshold":2000}}},"size":0,"track_total_hits":true}

GET recap_vectors/_msearch

{"index":["recap_vectors"]}
{"query":{"bool":{"should":[{"has_child":{"type":"recap_document","score_mode":"max","query":{"bool":{"should":[{"query_string":{"fields":["case_name_full","suitNature","juryDemand","cause","assignedTo","referredTo","court","court_id","court_citation_string","chapter","trustee_str","short_description","plain_text","document_type","caseName^4.0","docketNumber^3.0","description^2.0"],"query":"MINUTE AND ORDER","quote_field_suffix":".exact","default_operator":"AND","tie_breaker":0.3,"fuzziness":2}},{"query_string":{"fields":["case_name_full","suitNature","juryDemand","cause","assignedTo","referredTo","court","court_id","court_citation_string","chapter","trustee_str","short_description","plain_text","document_type","caseName^4.0","docketNumber^3.0","description^2.0"],"query":"MINUTE ORDER","quote_field_suffix":".exact","default_operator":"AND","type":"phrase","fuzziness":2}}],"minimum_should_match":1}},"inner_hits":{"name":"filter_query_inner_recap_document","size":6,"_source":{"excludes":["plain_text"]},"highlight":{"fields":{"short_description":{"type":"fvh","matched_fields":["short_description","short_description.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"description":{"type":"fvh","matched_fields":["description","description.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"plain_text":{"type":"fvh","matched_fields":["plain_text","plain_text.exact"],"fragment_size":100,"no_match_size":500,"number_of_fragments":1,"pre_tags":["<mark>"],"post_tags":["</mark>"]}}}}}},{"bool":{"filter":[{"match":{"docket_child":"docket"}}],"should":[{"query_string":{"fields":["case_name_full","suitNature","cause","juryDemand","assignedTo","referredTo","court","court_id","court_citation_string","chapter","trustee_str","caseName^4.0","docketNumber^3.0"],"query":"MINUTE AND ORDER","quote_field_suffix":".exact","default_operator":"AND","tie_breaker":0.3,"fuzziness":2}},{"query_string":{"fields":["case_name_full","suitNature","cause","juryDemand","assignedTo","referredTo","court","court_id","court_citation_string","chapter","trustee_str","caseName^4.0","docketNumber^3.0"],"query":"MINUTE ORDER","quote_field_suffix":".exact","default_operator":"AND","type":"phrase","fuzziness":2}}],"minimum_should_match":1}}]}},"sort":[{"_score":{"order":"desc"}}],"highlight":{"fields":{"assignedTo":{"type":"fvh","matched_fields":["assignedTo","assignedTo.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"caseName":{"type":"fvh","matched_fields":["caseName","caseName.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"cause":{"type":"fvh","matched_fields":["cause","cause.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"court_citation_string":{"type":"fvh","matched_fields":["court_citation_string","court_citation_string.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"docketNumber":{"type":"fvh","matched_fields":["docketNumber","docketNumber.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"juryDemand":{"type":"fvh","matched_fields":["juryDemand","juryDemand.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"referredTo":{"type":"fvh","matched_fields":["referredTo","referredTo.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"suitNature":{"type":"fvh","matched_fields":["suitNature","suitNature.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]}}},"size":10,"from":0,"_source":{"excludes":[]}}
{"index":["recap_vectors"]}
{"query":{"bool":{"should":[{"has_child":{"type":"recap_document","score_mode":"max","query":{"bool":{"should":[{"query_string":{"fields":["case_name_full","suitNature","juryDemand","cause","assignedTo","referredTo","court","court_id","court_citation_string","chapter","trustee_str","short_description","plain_text","document_type","caseName^4.0","docketNumber^3.0","description^2.0"],"query":"MINUTE AND ORDER","quote_field_suffix":".exact","default_operator":"AND","tie_breaker":0.3,"fuzziness":2}},{"query_string":{"fields":["case_name_full","suitNature","juryDemand","cause","assignedTo","referredTo","court","court_id","court_citation_string","chapter","trustee_str","short_description","plain_text","document_type","caseName^4.0","docketNumber^3.0","description^2.0"],"query":"MINUTE ORDER","quote_field_suffix":".exact","default_operator":"AND","type":"phrase","fuzziness":2}}],"minimum_should_match":1}}}},{"bool":{"filter":[{"match":{"docket_child":"docket"}}],"should":[{"query_string":{"fields":["case_name_full","suitNature","cause","juryDemand","assignedTo","referredTo","court","court_id","court_citation_string","chapter","trustee_str","caseName^4.0","docketNumber^3.0"],"query":"MINUTE AND ORDER","quote_field_suffix":".exact","default_operator":"AND","tie_breaker":0.3,"fuzziness":2}},{"query_string":{"fields":["case_name_full","suitNature","cause","juryDemand","assignedTo","referredTo","court","court_id","court_citation_string","chapter","trustee_str","caseName^4.0","docketNumber^3.0"],"query":"MINUTE ORDER","quote_field_suffix":".exact","default_operator":"AND","type":"phrase","fuzziness":2}}],"minimum_should_match":1}}]}},"aggs":{"unique_documents":{"cardinality":{"field":"docket_id","precision_threshold":2000}}},"size":0,"track_total_hits":true}
{"index":["recap_vectors"]}
{"query":{"bool":{"should":[{"query_string":{"fields":["case_name_full","suitNature","juryDemand","cause","assignedTo","referredTo","court","court_id","court_citation_string","chapter","trustee_str","short_description","plain_text","document_type","caseName^4.0","docketNumber^3.0","description^2.0"],"query":"MINUTE AND ORDER","quote_field_suffix":".exact","default_operator":"AND","tie_breaker":0.3,"fuzziness":2}},{"query_string":{"fields":["case_name_full","suitNature","juryDemand","cause","assignedTo","referredTo","court","court_id","court_citation_string","chapter","trustee_str","short_description","plain_text","document_type","caseName^4.0","docketNumber^3.0","description^2.0"],"query":"MINUTE ORDER","quote_field_suffix":".exact","default_operator":"AND","type":"phrase","fuzziness":2}}],"minimum_should_match":1,"filter":[{"match":{"docket_child":"recap_document"}}]}},"aggs":{"unique_documents":{"cardinality":{"field":"id","precision_threshold":2000}}},"size":0,"track_total_hits":true}

GET recap_vectors/_msearch

{"index":["recap_vectors"]}
{"query":{"bool":{"should":[{"has_child":{"type":"recap_document","score_mode":"max","query":{"match_all":{}},"inner_hits":{"name":"filter_query_inner_recap_document","size":6,"_source":{"excludes":["plain_text"]},"highlight":{"fields":{"short_description":{"type":"fvh","matched_fields":["short_description","short_description.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"description":{"type":"fvh","matched_fields":["description","description.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"plain_text":{"type":"fvh","matched_fields":["plain_text","plain_text.exact"],"fragment_size":100,"no_match_size":500,"number_of_fragments":1,"pre_tags":["<mark>"],"post_tags":["</mark>"]}}}}}},{"function_score":{"query":{"match":{"docket_child":"docket"}},"boost_mode":"replace","functions":[{"script_score":{"script":{"source":" return 0; "}}}]}}],"minimum_should_match":1}},"sort":[{"_score":{"order":"desc"}}],"highlight":{"fields":{"assignedTo":{"type":"fvh","matched_fields":["assignedTo","assignedTo.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"caseName":{"type":"fvh","matched_fields":["caseName","caseName.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"cause":{"type":"fvh","matched_fields":["cause","cause.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"court_citation_string":{"type":"fvh","matched_fields":["court_citation_string","court_citation_string.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"docketNumber":{"type":"fvh","matched_fields":["docketNumber","docketNumber.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"juryDemand":{"type":"fvh","matched_fields":["juryDemand","juryDemand.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"referredTo":{"type":"fvh","matched_fields":["referredTo","referredTo.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"suitNature":{"type":"fvh","matched_fields":["suitNature","suitNature.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]}}},"size":10,"from":0,"_source":{"excludes":[]}}
{"index":["recap_vectors"]}
{"query":{"bool":{"should":[{"has_child":{"type":"recap_document","score_mode":"max","query":{"match_all":{}}}},{"function_score":{"query":{"match":{"docket_child":"docket"}},"boost_mode":"replace","functions":[{"script_score":{"script":{"source":" return 0; "}}}]}}],"minimum_should_match":1}},"aggs":{"unique_documents":{"cardinality":{"field":"docket_id","precision_threshold":2000}}},"size":0,"track_total_hits":true}
{"index":["recap_vectors"]}
{"query":{"match":{"docket_child":"recap_document"}},"aggs":{"unique_documents":{"cardinality":{"field":"id","precision_threshold":2000}}},"size":0,"track_total_hits":true}

This is the UNITED STATES query that took around 175 seconds. I added a profiling to this query. It'll be interesting to see which query stage is taking more time in this one.

GET recap_vectors/_msearch

{"index":["recap_vectors"]}
{"profile": true, "query":{"bool":{"should":[{"has_child":{"type":"recap_document","score_mode":"max","query":{"bool":{"should":[{"query_string":{"fields":["case_name_full","suitNature","juryDemand","cause","assignedTo","referredTo","court","court_id","court_citation_string","chapter","trustee_str","short_description","plain_text","document_type","caseName^4.0","docketNumber^3.0","description^2.0"],"query":"UNITED AND STATES","quote_field_suffix":".exact","default_operator":"AND","tie_breaker":0.3,"fuzziness":2}},{"query_string":{"fields":["case_name_full","suitNature","juryDemand","cause","assignedTo","referredTo","court","court_id","court_citation_string","chapter","trustee_str","short_description","plain_text","document_type","caseName^4.0","docketNumber^3.0","description^2.0"],"query":"UNITED STATES","quote_field_suffix":".exact","default_operator":"AND","type":"phrase","fuzziness":2}}],"minimum_should_match":1}},"inner_hits":{"name":"filter_query_inner_recap_document","size":6,"_source":{"excludes":["plain_text"]},"highlight":{"fields":{"short_description":{"type":"fvh","matched_fields":["short_description","short_description.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"description":{"type":"fvh","matched_fields":["description","description.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"plain_text":{"type":"fvh","matched_fields":["plain_text","plain_text.exact"],"fragment_size":100,"no_match_size":500,"number_of_fragments":1,"pre_tags":["<mark>"],"post_tags":["</mark>"]}}}}}},{"bool":{"filter":[{"match":{"docket_child":"docket"}}],"should":[{"query_string":{"fields":["case_name_full","suitNature","cause","juryDemand","assignedTo","referredTo","court","court_id","court_citation_string","chapter","trustee_str","caseName^4.0","docketNumber^3.0"],"query":"UNITED AND STATES","quote_field_suffix":".exact","default_operator":"AND","tie_breaker":0.3,"fuzziness":2}},{"query_string":{"fields":["case_name_full","suitNature","cause","juryDemand","assignedTo","referredTo","court","court_id","court_citation_string","chapter","trustee_str","caseName^4.0","docketNumber^3.0"],"query":"UNITED STATES","quote_field_suffix":".exact","default_operator":"AND","type":"phrase","fuzziness":2}}],"minimum_should_match":1}}]}},"sort":[{"_score":{"order":"desc"}}],"highlight":{"fields":{"assignedTo":{"type":"fvh","matched_fields":["assignedTo","assignedTo.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"caseName":{"type":"fvh","matched_fields":["caseName","caseName.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"cause":{"type":"fvh","matched_fields":["cause","cause.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"court_citation_string":{"type":"fvh","matched_fields":["court_citation_string","court_citation_string.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"docketNumber":{"type":"fvh","matched_fields":["docketNumber","docketNumber.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"juryDemand":{"type":"fvh","matched_fields":["juryDemand","juryDemand.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"referredTo":{"type":"fvh","matched_fields":["referredTo","referredTo.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"suitNature":{"type":"fvh","matched_fields":["suitNature","suitNature.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]}}},"size":10,"from":0,"_source":{"excludes":[]}}
{"index":["recap_vectors"]}
{"profile": true, "query":{"bool":{"should":[{"has_child":{"type":"recap_document","score_mode":"max","query":{"bool":{"should":[{"query_string":{"fields":["case_name_full","suitNature","juryDemand","cause","assignedTo","referredTo","court","court_id","court_citation_string","chapter","trustee_str","short_description","plain_text","document_type","caseName^4.0","docketNumber^3.0","description^2.0"],"query":"UNITED AND STATES","quote_field_suffix":".exact","default_operator":"AND","tie_breaker":0.3,"fuzziness":2}},{"query_string":{"fields":["case_name_full","suitNature","juryDemand","cause","assignedTo","referredTo","court","court_id","court_citation_string","chapter","trustee_str","short_description","plain_text","document_type","caseName^4.0","docketNumber^3.0","description^2.0"],"query":"UNITED STATES","quote_field_suffix":".exact","default_operator":"AND","type":"phrase","fuzziness":2}}],"minimum_should_match":1}}}},{"bool":{"filter":[{"match":{"docket_child":"docket"}}],"should":[{"query_string":{"fields":["case_name_full","suitNature","cause","juryDemand","assignedTo","referredTo","court","court_id","court_citation_string","chapter","trustee_str","caseName^4.0","docketNumber^3.0"],"query":"UNITED AND STATES","quote_field_suffix":".exact","default_operator":"AND","tie_breaker":0.3,"fuzziness":2}},{"query_string":{"fields":["case_name_full","suitNature","cause","juryDemand","assignedTo","referredTo","court","court_id","court_citation_string","chapter","trustee_str","caseName^4.0","docketNumber^3.0"],"query":"UNITED STATES","quote_field_suffix":".exact","default_operator":"AND","type":"phrase","fuzziness":2}}],"minimum_should_match":1}}]}},"aggs":{"unique_documents":{"cardinality":{"field":"docket_id","precision_threshold":2000}}},"size":0,"track_total_hits":true}
{"index":["recap_vectors"]}
{"profile": true, "query":{"bool":{"should":[{"query_string":{"fields":["case_name_full","suitNature","juryDemand","cause","assignedTo","referredTo","court","court_id","court_citation_string","chapter","trustee_str","short_description","plain_text","document_type","caseName^4.0","docketNumber^3.0","description^2.0"],"query":"UNITED AND STATES","quote_field_suffix":".exact","default_operator":"AND","tie_breaker":0.3,"fuzziness":2}},{"query_string":{"fields":["case_name_full","suitNature","juryDemand","cause","assignedTo","referredTo","court","court_id","court_citation_string","chapter","trustee_str","short_description","plain_text","document_type","caseName^4.0","docketNumber^3.0","description^2.0"],"query":"UNITED STATES","quote_field_suffix":".exact","default_operator":"AND","type":"phrase","fuzziness":2}}],"minimum_should_match":1,"filter":[{"match":{"docket_child":"recap_document"}}]}},"aggs":{"unique_documents":{"cardinality":{"field":"id","precision_threshold":2000}}},"size":0,"track_total_hits":true}

In terms of performance, I think it remains to test optimizations at the hardware level.

We could also test modifying the number of shards, which could reduce index fragmentation. What's the current size of the recap_index vectors?

Additionally, it seems that increasing the number of replicas can help improve response time; however, it could also impact indexing time.

mlissner commented 1 month ago

Here's the first response (I have to post them separately or Github says the comment is too large):

{
  "took": 1276,
  "responses": [
    {
      "took": 1276,
      "timed_out": false,
      "_shards": {
        "total": 30,
        "successful": 30,
        "skipped": 0,
        "failed": 0
      },
      "hits": {
        "total": {
          "value": 53,
          "relation": "eq"
        },
        "max_score": 4465.1274,
        "hits": [
          {
            "_index": "recap_vectors",
            "_id": "68033039",
            "_score": 4465.1274,
            "_source": {
              "docket_slug": "sharma-v-eyebrows-on-125th-inc",
              "docket_absolute_url": "/docket/68033039/sharma-v-eyebrows-on-125th-inc/",
              "court_exact": "nysd",
              "party_id": [],
              "party": [],
              "attorney_id": [],
              "attorney": [],
              "firm_id": [],
              "firm": [],
              "docket_child": "docket",
              "timestamp": "2024-03-27T09:12:21.368625",
              "docket_id": 68033039,
              "caseName": "Sharma v. Eyebrows on 125th Inc.",
              "case_name_full": "",
              "docketNumber": "1:23-cv-10309",
              "suitNature": "Labor: Fair Standards",
              "cause": "29:207(a) FLSA:  Action for Overtime Wage Violation",
              "juryDemand": "",
              "jurisdictionType": "",
              "dateArgued": null,
              "dateFiled": "2023-11-24",
              "dateTerminated": null,
              "assignedTo": "Vernon Speede Broderick",
              "assigned_to_id": 401,
              "referredTo": null,
              "referred_to_id": null,
              "court": "District Court, S.D. New York",
              "court_id": "nysd",
              "court_citation_string": "S.D.N.Y.",
              "chapter": null,
              "trustee_str": null,
              "date_created": "2023-11-24T17:09:12.945986+00:00",
              "pacer_case_id": "610923"
            },
            "highlight": {
              "caseName": [
                "<mark>Sharma v. Eyebrows</mark> on 125th Inc."
              ]
            },
            "inner_hits": {
              "filter_query_inner_recap_document": {
                "hits": {
                  "total": {
                    "value": 27,
                    "relation": "eq"
                  },
                  "max_score": 2238.1729,
                  "hits": [
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_395226098",
                      "_score": 2238.1729,
                      "_routing": "68033039",
                      "_source": {
                        "id": 395226098,
                        "docket_entry_id": 386601600,
                        "description": """  ORDER: Plaintiff filed this action on November 24, 2023, (Doc. 1), and filed affidavits of service on  January 16, 2024, (Doc. 7), and January 26, 2024, (Doc. 8).  The deadlines for Defendants Eyebrows  on 125th, Inc. and Samira Nak (together, &quot ;Defendants") to respond to Plaintiff's complaint were  January 10, 2024 and February 15, 2024, respectively.  On March 28, 2024, the parties filed a joint  stipulation to extend Defendants' deadline to answer the complaint to April 20 , 2024, (Doc. 9),  which I endorsed, (Doc. 10).  To date, Defendants have not appeared or responded to the complaint.   Plaintiff, however, has taken no action to prosecute this case. Accordingly, if Plaintiff intends to seek a default judgment, she  is directed to do so in  accordance with Rule 4(H) of my Individual Rules and Practices in Civil Cases by no later than May  9,  2024.  If Plaintiff fails to do so or otherwise demonstrate that she intends to prosecute this  litigation, I may dismiss this case for failure to prosecute pursuant to Federal Rule of Civil Procedure 41(b). SO ORDERED.    (Signed by Judge Vernon S. Broderick on 4/25/2024)   (tg)""",
                        "entry_number": 14,
                        "entry_date_filed": "2024-04-25",
                        "short_description": "Order",
                        "document_type": "PACER Document",
                        "document_number": "14",
                        "pacer_doc_id": "127035359770",
                        "attachment_number": null,
                        "is_available": true,
                        "page_count": 2,
                        "filepath_local": "recap/gov.uscourts.nysd.610923/gov.uscourts.nysd.610923.14.0.pdf",
                        "absolute_url": "/docket/68033039/14/sharma-v-eyebrows-on-125th-inc/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 68033039
                        },
                        "timestamp": "2024-06-18T06:24:49.248822",
                        "docket_id": 68033039,
                        "caseName": "Sharma v. Eyebrows on 125th Inc.",
                        "case_name_full": "",
                        "docketNumber": "1:23-cv-10309",
                        "suitNature": "Labor: Fair Standards",
                        "cause": "29:207(a) FLSA:  Action for Overtime Wage Violation",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2023-11-24",
                        "dateTerminated": null,
                        "assignedTo": "Vernon Speede Broderick",
                        "assigned_to_id": 401,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. New York",
                        "court_id": "nysd",
                        "court_citation_string": "S.D.N.Y.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2024-04-26T13:10:36.393617+00:00",
                        "pacer_case_id": "610923"
                      },
                      "highlight": {
                        "plain_text": [
                          """                                      :
BINITA <mark>SHARMA</mark>, on behalf of herself and all :
others similarly-situated"""
                        ],
                        "description": [
                          """  ORDER: Plaintiff filed this action on November 24, 2023, (Doc. 1), and filed affidavits of service on  January 16, 2024, (Doc. 7), and January 26, 2024, (Doc. 8).  The deadlines for Defendants <mark>Eyebrows</mark>  on 125th, Inc. and Samira Nak (together, &quot ;Defendants") to respond to Plaintiff's complaint were  January 10, 2024 and February 15, 2024, respectively.  On March 28, 2024, the parties filed a joint  stipulation to extend Defendants' deadline to answer the complaint to April 20 , 2024, (Doc. 9),  which I endorsed, (Doc. 10).  To date, Defendants have not appeared or responded to the complaint.   Plaintiff, however, has taken no action to prosecute this case. Accordingly, if Plaintiff intends to seek a default judgment, she  is directed to do so in  accordance with Rule 4(H) of my Individual Rules and Practices in Civil Cases by no later than May  9,  2024.  If Plaintiff fails to do so or otherwise demonstrate that she intends to prosecute this  litigation, I may dismiss this case for failure to prosecute pursuant to Federal Rule of Civil Procedure 41(b). SO ORDERED.    (Signed by Judge Vernon S. Broderick on 4/25/2024)   (tg)"""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_384379366",
                      "_score": 2226.9546,
                      "_routing": "68033039",
                      "_source": {
                        "id": 384379366,
                        "docket_entry_id": 376744678,
                        "description": "",
                        "entry_number": 8,
                        "entry_date_filed": "2024-01-26",
                        "short_description": "Summons Returned Executed",
                        "document_type": "PACER Document",
                        "document_number": "8",
                        "pacer_doc_id": "127034814268",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/68033039/8/sharma-v-eyebrows-on-125th-inc/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 68033039
                        },
                        "timestamp": "2024-06-15T23:20:11.103390",
                        "docket_id": 68033039,
                        "caseName": "Sharma v. Eyebrows on 125th Inc.",
                        "case_name_full": "",
                        "docketNumber": "1:23-cv-10309",
                        "suitNature": "Labor: Fair Standards",
                        "cause": "29:207(a) FLSA:  Action for Overtime Wage Violation",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2023-11-24",
                        "dateTerminated": null,
                        "assignedTo": "Vernon Speede Broderick",
                        "assigned_to_id": 401,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. New York",
                        "court_id": "nysd",
                        "court_citation_string": "S.D.N.Y.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2024-01-26T18:09:09.731828+00:00",
                        "pacer_case_id": "610923"
                      },
                      "highlight": {
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_383333944",
                      "_score": 2226.9546,
                      "_routing": "68033039",
                      "_source": {
                        "id": 383333944,
                        "docket_entry_id": 375722936,
                        "description": "",
                        "entry_number": 7,
                        "entry_date_filed": "2024-01-16",
                        "short_description": "Summons Returned Executed",
                        "document_type": "PACER Document",
                        "document_number": "7",
                        "pacer_doc_id": "127034747952",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/68033039/7/sharma-v-eyebrows-on-125th-inc/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 68033039
                        },
                        "timestamp": "2024-06-15T19:38:50.890129",
                        "docket_id": 68033039,
                        "caseName": "Sharma v. Eyebrows on 125th Inc.",
                        "case_name_full": "",
                        "docketNumber": "1:23-cv-10309",
                        "suitNature": "Labor: Fair Standards",
                        "cause": "29:207(a) FLSA:  Action for Overtime Wage Violation",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2023-11-24",
                        "dateTerminated": null,
                        "assignedTo": "Vernon Speede Broderick",
                        "assigned_to_id": 401,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. New York",
                        "court_id": "nysd",
                        "court_citation_string": "S.D.N.Y.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2024-01-16T18:08:51.936676+00:00",
                        "pacer_case_id": "610923"
                      },
                      "highlight": {
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_379494020",
                      "_score": 2226.9546,
                      "_routing": "68033039",
                      "_source": {
                        "id": 379494020,
                        "docket_entry_id": 371998449,
                        "description": "",
                        "entry_number": 4,
                        "entry_date_filed": "2023-11-30",
                        "short_description": "Civil Cover Sheet",
                        "document_type": "PACER Document",
                        "document_number": "4",
                        "pacer_doc_id": "127034509430",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/68033039/4/sharma-v-eyebrows-on-125th-inc/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 68033039
                        },
                        "timestamp": "2024-06-15T05:39:24.917488",
                        "docket_id": 68033039,
                        "caseName": "Sharma v. Eyebrows on 125th Inc.",
                        "case_name_full": "",
                        "docketNumber": "1:23-cv-10309",
                        "suitNature": "Labor: Fair Standards",
                        "cause": "29:207(a) FLSA:  Action for Overtime Wage Violation",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2023-11-24",
                        "dateTerminated": null,
                        "assignedTo": "Vernon Speede Broderick",
                        "assigned_to_id": 401,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. New York",
                        "court_id": "nysd",
                        "court_citation_string": "S.D.N.Y.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2023-11-30T21:12:55.258382+00:00",
                        "pacer_case_id": "610923"
                      },
                      "highlight": {
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_378995693",
                      "_score": 2226.9546,
                      "_routing": "68033039",
                      "_source": {
                        "id": 378995693,
                        "docket_entry_id": 371510198,
                        "description": "",
                        "entry_number": 1,
                        "entry_date_filed": "2023-11-24",
                        "short_description": "Complaint",
                        "document_type": "PACER Document",
                        "document_number": "1",
                        "pacer_doc_id": "127034481111",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/68033039/1/sharma-v-eyebrows-on-125th-inc/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 68033039
                        },
                        "timestamp": "2024-06-15T03:50:09.419150",
                        "docket_id": 68033039,
                        "caseName": "Sharma v. Eyebrows on 125th Inc.",
                        "case_name_full": "",
                        "docketNumber": "1:23-cv-10309",
                        "suitNature": "Labor: Fair Standards",
                        "cause": "29:207(a) FLSA:  Action for Overtime Wage Violation",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2023-11-24",
                        "dateTerminated": null,
                        "assignedTo": "Vernon Speede Broderick",
                        "assigned_to_id": 401,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. New York",
                        "court_id": "nysd",
                        "court_citation_string": "S.D.N.Y.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2023-11-24T17:09:13.078258+00:00",
                        "pacer_case_id": "610923"
                      },
                      "highlight": {
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_378995692",
                      "_score": 2226.9546,
                      "_routing": "68033039",
                      "_source": {
                        "id": 378995692,
                        "docket_entry_id": 371510197,
                        "description": "",
                        "entry_number": 2,
                        "entry_date_filed": "2023-11-24",
                        "short_description": "Civil Cover Sheet",
                        "document_type": "PACER Document",
                        "document_number": "2",
                        "pacer_doc_id": "127034481114",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/68033039/2/sharma-v-eyebrows-on-125th-inc/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 68033039
                        },
                        "timestamp": "2024-06-15T03:50:09.498354",
                        "docket_id": 68033039,
                        "caseName": "Sharma v. Eyebrows on 125th Inc.",
                        "case_name_full": "",
                        "docketNumber": "1:23-cv-10309",
                        "suitNature": "Labor: Fair Standards",
                        "cause": "29:207(a) FLSA:  Action for Overtime Wage Violation",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2023-11-24",
                        "dateTerminated": null,
                        "assignedTo": "Vernon Speede Broderick",
                        "assigned_to_id": 401,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. New York",
                        "court_id": "nysd",
                        "court_citation_string": "S.D.N.Y.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2023-11-24T17:09:13.029911+00:00",
                        "pacer_case_id": "610923"
                      },
                      "highlight": {
                        "plain_text": [
                          ""
                        ]
                      }
                    }
                  ]
                }
              }
            }
          },
          {
            "_index": "recap_vectors",
            "_id": "6693062",
            "_score": 604.07904,
            "_source": {
              "docket_slug": "united-states-v-sharma",
              "docket_absolute_url": "/docket/6693062/united-states-v-sharma/",
              "court_exact": "nysd",
              "party_id": [
                10380448,
                10380449,
                10380450,
                10380451,
                10380443,
                10380444,
                10380445,
                10380446,
                10380447
              ],
              "party": [
                "Jae J. Lee",
                "Sohrab Sharma",
                "Mateusz Ganczarek",
                "Wang Yun He",
                "Rodney Warren",
                "USA",
                "Jacob Zowie Thomas Rensel",
                "King Fung Poon",
                "Chi Hao Poon"
              ],
              "attorney_id": [
                6796578,
                6796579,
                6796580,
                6796581,
                6796582,
                6796583,
                6796584,
                6796585,
                6796586,
                6796587,
                8217084
              ],
              "attorney": [
                "Negar Tekeei",
                "Daniel Loss",
                "Samson Aaron Enzer",
                "Melissa Lee Brumer",
                "Donald J. Enright",
                "Denis Patrick Kelleher , Jr.",
                "Gennaro Cariglio",
                "Adam M. Apton",
                "Lauren A Bowman",
                "Sharon Louise McCarthy",
                "Grant P. Fondo"
              ],
              "firm_id": [
                29060,
                361574,
                16200,
                314441,
                611722,
                158380,
                135372,
                726580,
                354487
              ],
              "firm": [
                "Talkin, Muccigrosso & Roberts LLP",
                "Goodwin Procter LLP",
                "Goodwin Procter, LLP (NYC), the New York Times Building",
                "Gennaro Cariglio",
                "Doj-Usao",
                "Levi & Korsinsky LLP (DC)",
                "U.S. Attorney's Office, Southern District of New York",
                "Levi & Korsinsky LLP"
              ],
              "docket_child": "docket",
              "timestamp": "2024-03-18T20:11:27.410042",
              "docket_id": 6693062,
              "caseName": "United States v. Sharma",
              "case_name_full": "",
              "docketNumber": "1:18-cr-00340",
              "suitNature": "",
              "cause": "",
              "juryDemand": "",
              "jurisdictionType": "",
              "dateArgued": null,
              "dateFiled": "2018-05-14",
              "dateTerminated": "2022-04-04",
              "assignedTo": "Lorna Gail Schofield",
              "assigned_to_id": 2867,
              "referredTo": null,
              "referred_to_id": null,
              "court": "District Court, S.D. New York",
              "court_id": "nysd",
              "court_citation_string": "S.D.N.Y.",
              "chapter": null,
              "trustee_str": null,
              "date_created": "2018-05-15T18:21:45.684294+00:00",
              "pacer_case_id": "493847"
            },
            "highlight": {
              "caseName": [
                "United States <mark>v</mark>. <mark>Sharma</mark>"
              ]
            },
            "inner_hits": {
              "filter_query_inner_recap_document": {
                "hits": {
                  "total": {
                    "value": 1,
                    "relation": "eq"
                  },
                  "max_score": 604.07904,
                  "hits": [
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_159977957",
                      "_score": 604.07904,
                      "_routing": "6693062",
                      "_source": {
                        "id": 159977957,
                        "docket_entry_id": 154917403,
                        "description": "TRANSCRIPT of Proceedings as to Sohrab Sharma re: Bail Hearing held on 5/2/2018 before Magistrate Judge Debra C. Freeman. Court Reporter/Transcriber: Shari Riemer, (518) 581-8973, Transcript may be viewed at the court public terminal or purchased through the Court Reporter/Transcriber before the deadline for Release of Transcript Restriction. After that date it may be obtained through PACER. Redaction Request due 5/31/2018. Redacted Transcript Deadline set for 6/11/2018. Release of Transcript Restriction set for 8/8/2018. (ft) [1:18-mj-02695-UA] (Entered: 05/10/2018)",
                        "entry_number": 9,
                        "entry_date_filed": "2018-05-10",
                        "short_description": "",
                        "document_type": "PACER Document",
                        "document_number": "9",
                        "pacer_doc_id": "127022443739",
                        "attachment_number": null,
                        "is_available": true,
                        "page_count": 47,
                        "filepath_local": "recap/gov.uscourts.nysd.493847/gov.uscourts.nysd.493847.9.0.pdf",
                        "absolute_url": "/docket/6693062/9/united-states-v-sharma/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 6693062
                        },
                        "timestamp": "2024-05-14T09:10:14.765060",
                        "docket_id": 6693062,
                        "caseName": "United States v. Sharma",
                        "case_name_full": "",
                        "docketNumber": "1:18-cr-00340",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2018-05-14",
                        "dateTerminated": "2022-04-04",
                        "assignedTo": "Lorna Gail Schofield",
                        "assigned_to_id": 2867,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. New York",
                        "court_id": "nysd",
                        "court_citation_string": "S.D.N.Y.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2021-02-05T14:38:46.445795+00:00",
                        "pacer_case_id": "493847"
                      },
                      "highlight": {
                        "plain_text": [
                          """                              :
 5               <mark>v</mark>.                    :   May 2, 2018
             """
                        ],
                        "description": [
                          "TRANSCRIPT of Proceedings as to Sohrab <mark>Sharma</mark> re: Bail Hearing held on 5/2/2018 before Magistrate Judge Debra C. Freeman. Court Reporter/Transcriber: Shari Riemer, (518) 581-8973, Transcript may be viewed at the court public terminal or purchased through the Court Reporter/Transcriber before the deadline for Release of Transcript Restriction. After that date it may be obtained through PACER. Redaction Request due 5/31/2018. Redacted Transcript Deadline set for 6/11/2018. Release of Transcript Restriction set for 8/8/2018. (ft) [1:18-mj-02695-UA] (Entered: 05/10/2018)"
                        ]
                      }
                    }
                  ]
                }
              }
            }
          },
          {
            "_index": "recap_vectors",
            "_id": "6106814",
            "_score": 85.51604,
            "_source": {
              "docket_slug": "ortiz-v-wagstaff",
              "docket_absolute_url": "/docket/6106814/ortiz-v-wagstaff/",
              "court_exact": "nywd",
              "party_id": [
                9920364,
                9920365,
                9920366,
                9920367,
                9920368,
                9920369,
                9920370,
                9920371
              ],
              "party": [
                "The City of Buffalo",
                "Mary Gugliuzza",
                "Richard Wagstaff",
                "Buffalo Police Department",
                "Josue Ortiz",
                "Mark Vaughn",
                "Mark Stambach",
                "BPD DOES 1-12"
              ],
              "attorney_id": [
                6526433,
                6526434,
                6526435,
                7654884,
                6526436,
                7654885,
                9008866,
                9008867
              ],
              "attorney": [
                "Peter A. Sahasrabudhe",
                "Hugh M. Russ , III",
                "Maeve Eileen Huggins",
                "Timothy W. Hoover",
                "Spencer Leeds Durland",
                "Alan J. Pierce",
                "Robert Emmet Quinn",
                "Wayne C. Felle"
              ],
              "firm_id": [
                30048,
                168646,
                635976,
                747148,
                678514,
                486044
              ],
              "firm": [
                "Buffalo Public Schools",
                "Hodgson Russ LLP, the Guaranty Building",
                "Hoover & Durland LLP",
                "Law Office of Wayne C. Felle, P.C.",
                "City of Buffalo Department of Law",
                "Alan J. Pierce"
              ],
              "docket_child": "docket",
              "timestamp": "2024-03-18T18:58:16.570198",
              "docket_id": 6106814,
              "caseName": "Ortiz v. Wagstaff",
              "case_name_full": "",
              "docketNumber": "1:16-cv-00321",
              "suitNature": "440 Civil Rights: Other",
              "cause": "42:1983 Civil Rights Act",
              "juryDemand": "Both",
              "jurisdictionType": "Federal Question",
              "dateArgued": null,
              "dateFiled": "2016-04-25",
              "dateTerminated": "2022-05-10",
              "assignedTo": "Elizabeth Ann Wolford",
              "assigned_to_id": 3526,
              "referredTo": "Michael J. Roemer",
              "referred_to_id": 9458,
              "court": "District Court, W.D. New York",
              "court_id": "nywd",
              "court_citation_string": "W.D.N.Y.",
              "chapter": null,
              "trustee_str": null,
              "date_created": "2017-07-14T01:38:21.596051+00:00",
              "pacer_case_id": "107079"
            },
            "highlight": {
              "caseName": [
                "Ortiz <mark>v</mark>. Wagstaff"
              ]
            },
            "inner_hits": {
              "filter_query_inner_recap_document": {
                "hits": {
                  "total": {
                    "value": 1,
                    "relation": "eq"
                  },
                  "max_score": 85.51604,
                  "hits": [
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_225999972",
                      "_score": 85.51604,
                      "_routing": "6106814",
                      "_source": {
                        "id": 225999972,
                        "docket_entry_id": 219897971,
                        "description": "DECISION AND ORDER granting in part and denying in part 167 Motion for Attorneys' Fees; granting in part and denying in part 169 Motion for Attorneys' Fees; denying 177 Motion for Summary Judgment; denying 177 Motion for New Trial; denying 177 Motion for Remittitur. Signed by Hon. Elizabeth A. Wolford on 02/17/2023. (CDH) (Entered: 02/17/2023)",
                        "entry_number": 195,
                        "entry_date_filed": "2023-02-17",
                        "short_description": "",
                        "document_type": "PACER Document",
                        "document_number": "195",
                        "pacer_doc_id": "12905957432",
                        "attachment_number": null,
                        "is_available": true,
                        "page_count": 47,
                        "filepath_local": "recap/gov.uscourts.nywd.107079/gov.uscourts.nywd.107079.195.0.pdf",
                        "absolute_url": "/docket/6106814/195/ortiz-v-wagstaff/",
                        "cites": [
                          218177,
                          508425,
                          558038,
                          623735,
                          730824,
                          740486,
                          771583,
                          787946,
                          1240940,
                          1274551,
                          1359752,
                          1446835,
                          1477212,
                          2522805,
                          2540654,
                          2686328,
                          3163340,
                          4154196,
                          5538756,
                          6953606,
                          6966226,
                          7237054,
                          7250530,
                          7251129,
                          8413679,
                          8414281,
                          8415497,
                          8707239,
                          9042462
                        ],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 6106814
                        },
                        "timestamp": "2024-05-23T23:04:05.747441",
                        "docket_id": 6106814,
                        "caseName": "Ortiz v. Wagstaff",
                        "case_name_full": "",
                        "docketNumber": "1:16-cv-00321",
                        "suitNature": "440 Civil Rights: Other",
                        "cause": "42:1983 Civil Rights Act",
                        "juryDemand": "Both",
                        "jurisdictionType": "Federal Question",
                        "dateArgued": null,
                        "dateFiled": "2016-04-25",
                        "dateTerminated": "2022-05-10",
                        "assignedTo": "Elizabeth Ann Wolford",
                        "assigned_to_id": 3526,
                        "referredTo": "Michael J. Roemer",
                        "referred_to_id": 9458,
                        "court": "District Court, W.D. New York",
                        "court_id": "nywd",
                        "court_citation_string": "W.D.N.Y.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2023-02-20T08:26:39.328004+00:00",
                        "pacer_case_id": "107079"
                      },
                      "highlight": {
                        "plain_text": [
                          """               DECISION AND ORDER

              <mark>v</mark>.                                           1:16-CV-00321"""
                        ]
                      }
                    }
                  ]
                }
              }
            }
          },
          {
            "_index": "recap_vectors",
            "_id": "5567401",
            "_score": 83.70453,
            "_source": {
              "docket_slug": "teneyck-v-colvin",
              "docket_absolute_url": "/docket/5567401/teneyck-v-colvin/",
              "court_exact": "nynd",
              "party_id": [],
              "party": [],
              "attorney_id": [],
              "attorney": [],
              "firm_id": [],
              "firm": [],
              "docket_child": "docket",
              "timestamp": "2024-06-25T17:39:45.622889",
              "docket_id": 5567401,
              "caseName": "Teneyck v. Colvin",
              "case_name_full": "",
              "docketNumber": "1:12-cv-00308",
              "suitNature": "Social Security: DIWC/DIWW",
              "cause": "42:405 Review of HHS Decision (DIWC)",
              "juryDemand": "",
              "jurisdictionType": "Government defendant",
              "dateArgued": null,
              "dateFiled": "2012-02-22",
              "dateTerminated": "2014-03-12",
              "assignedTo": "Mae Avila D'Agostino",
              "assigned_to_id": 783,
              "referredTo": null,
              "referred_to_id": null,
              "court": "District Court, N.D. New York",
              "court_id": "nynd",
              "court_citation_string": "N.D.N.Y.",
              "chapter": null,
              "trustee_str": null,
              "date_created": "2017-04-25T01:14:23.247342+00:00",
              "pacer_case_id": "88667"
            },
            "highlight": {
              "caseName": [
                "Teneyck <mark>v</mark>. Colvin"
              ]
            },
            "inner_hits": {
              "filter_query_inner_recap_document": {
                "hits": {
                  "total": {
                    "value": 1,
                    "relation": "eq"
                  },
                  "max_score": 83.70453,
                  "hits": [
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_18924814",
                      "_score": 83.70453,
                      "_routing": "5567401",
                      "_source": {
                        "id": 18924814,
                        "docket_entry_id": 18076403,
                        "description": " MEMORANDUM-DECISION AND ORDER granting  19  Motion to Remand to Commissioner of Social Security: The Court hereby ORDERS that Plaintiff's motion for a sentence six remand (Dkt. No. 19) is GRANTED; and the Court further ORDERS that this action be  remanded to the Commissioner for further consideration pursuant to sentence six of 42 U.S.C. § 405(g); and the Court further ORDERS that the parties' motions for judgment on the pleadings are DENIED as moot; and the Court further ORDERS th at the Clerk of the Court shall close this case; and the Court further ORDERS that the Clerk of the Court shall serve a copy of this Memorandum-Decision and Order on the parties in accordance with the Local Rules. Signed by U.S. District Judge Mae A. D'Agostino on 3/12/14. (ban)",
                        "entry_number": 25,
                        "entry_date_filed": "2014-03-12",
                        "short_description": "",
                        "document_type": "PACER Document",
                        "document_number": "25",
                        "pacer_doc_id": "12503358911",
                        "attachment_number": null,
                        "is_available": true,
                        "page_count": 17,
                        "filepath_local": "recap/gov.uscourts.nynd.88667/gov.uscourts.nynd.88667.25.0.pdf",
                        "absolute_url": "/docket/5567401/25/teneyck-v-colvin/",
                        "cites": [
                          402334,
                          435238,
                          503440,
                          543729,
                          565204,
                          751098,
                          761785,
                          769742,
                          787095,
                          788268,
                          2592999
                        ],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 5567401
                        },
                        "timestamp": "2024-04-01T11:30:10.094774",
                        "docket_id": 5567401,
                        "caseName": "Teneyck v. Colvin",
                        "case_name_full": "",
                        "docketNumber": "1:12-cv-00308",
                        "suitNature": "Social Security: DIWC/DIWW",
                        "cause": "42:405 Review of HHS Decision (DIWC)",
                        "juryDemand": "",
                        "jurisdictionType": "Government defendant",
                        "dateArgued": null,
                        "dateFiled": "2012-02-22",
                        "dateTerminated": "2014-03-12",
                        "assignedTo": "Mae Avila D'Agostino",
                        "assigned_to_id": 783,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, N.D. New York",
                        "court_id": "nynd",
                        "court_citation_string": "N.D.N.Y.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2017-04-25T01:14:23.267276+00:00",
                        "pacer_case_id": "88667"
                      },
                      "highlight": {
                        "plain_text": [
                          """ones hair, usually from the scalp, eyelashes, and <mark>eyebrows</mark>.
                                            """
                        ]
                      }
                    }
                  ]
                }
              }
            }
          },
          {
            "_index": "recap_vectors",
            "_id": "6173451",
            "_score": 82.9376,
            "_source": {
              "docket_slug": "wollman-v-massachusetts-general-hospital-inc",
              "docket_absolute_url": "/docket/6173451/wollman-v-massachusetts-general-hospital-inc/",
              "court_exact": "mad",
              "party_id": [
                8305453,
                8305454,
                8305455,
                8305456,
                8305457,
                8305458
              ],
              "party": [
                "M.D.  Lisa Wollman",
                "The Massachusetts General Hospital's Physician's Organization",
                "The General Hospital Corporation",
                "Commonwealth of Massachusetts",
                "Partners Health Care System, Inc.",
                "United States of America"
              ],
              "attorney_id": [
                5621504,
                5621505,
                5621506,
                5621507,
                5621508,
                5621509,
                5621510,
                5621511,
                5621512,
                5621513,
                5621514,
                5717455,
                6454078,
                6231926,
                5621501,
                5621502,
                5621503
              ],
              "attorney": [
                "Julia G. Amrhein",
                "Sonya A. Rao",
                "Elizabeth H Shofner",
                "Ellen J. Zucker",
                "Justin S. Brooks",
                "Amy Crafts",
                "Neerja Sharma",
                "Madeleine K. Rodriguez",
                "Reuben A. Guttman",
                "Traci L. Buschner",
                "Paul R. Mastrocola",
                "David M. Scheffler",
                "Laura R. Studen",
                "Martin F Murphy",
                "Kristopher N. Austin",
                "Abraham R. George",
                "Aaron F. Lang"
              ],
              "firm_id": [
                320962,
                320963,
                736510,
                568969,
                114090,
                557246,
                113999,
                114385,
                114526,
                8254,
                142972,
                113917,
                28926
              ],
              "firm": [
                "Securities and Exchange Commission MA",
                "United States Attorney's Office MA",
                "US Attorney's Office MA, J. Joseph Moakley U.S. Courthouse",
                "Guttman, Buschner & Brooks PLLC",
                "Guttman Buschner & Brooks PLLC",
                "Office of the Attorney General, Consumer Protection Division",
                "Burns and Levinson LLP",
                "Kristopher Austin",
                "Burns & Levinson LLP",
                "Guttman, Buschner & Brooks, PLLC",
                "Foley Hoag LLP"
              ],
              "docket_child": "docket",
              "timestamp": "2024-03-18T19:04:11.385667",
              "docket_id": 6173451,
              "caseName": "Wollman v. Massachusetts General Hospital Inc.",
              "case_name_full": "",
              "docketNumber": "1:15-cv-11890",
              "suitNature": "375 Other Statutes: False Claims Act",
              "cause": "31:3729 False Claims Act",
              "juryDemand": "Plaintiff",
              "jurisdictionType": "Federal Question",
              "dateArgued": null,
              "dateFiled": "2015-05-19",
              "dateTerminated": "2022-03-03",
              "assignedTo": "Allison Dale Burroughs",
              "assigned_to_id": 477,
              "referredTo": "Judith G. Dein",
              "referred_to_id": 9286,
              "court": "District Court, D. Massachusetts",
              "court_id": "mad",
              "court_citation_string": "D. Mass.",
              "chapter": null,
              "trustee_str": null,
              "date_created": "2017-10-20T21:00:18.053227+00:00",
              "pacer_case_id": "170554"
            },
            "highlight": {
              "caseName": [
                "Wollman <mark>v</mark>. Massachusetts General Hospital Inc."
              ]
            },
            "inner_hits": {
              "filter_query_inner_recap_document": {
                "hits": {
                  "total": {
                    "value": 1,
                    "relation": "eq"
                  },
                  "max_score": 82.9376,
                  "hits": [
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_168917959",
                      "_score": 82.9376,
                      "_routing": "6173451",
                      "_source": {
                        "id": 168917959,
                        "docket_entry_id": 125392851,
                        "description": "REPLY to Response to 120 MOTION to Compel PRODUCTION OF DOCUMENTS RELATING TO DONALD STERNS INVESTIGATION OF CONCURRENT SURGERY AT MGH filed by Lisa Wollman. (Attachments: # 1 Exhibit A, # 2 Exhibit B, # 3 Exhibit C, # 4 Exhibit D, # 5 Exhibit E, # 6 Exhibit F, # 7 Exhibit G, # 8 Exhibit H, # 9 Exhibit I, # 10 Exhibit J, # 11 Exhibit K)(Sharma, Neerja) (Entered: 03/02/2020)",
                        "entry_number": 139,
                        "entry_date_filed": "2020-03-02",
                        "short_description": "Exhibit J",
                        "document_type": "Attachment",
                        "document_number": "139",
                        "pacer_doc_id": "09509844760",
                        "attachment_number": 10,
                        "is_available": true,
                        "page_count": 46,
                        "filepath_local": "recap/gov.uscourts.mad.170554/gov.uscourts.mad.170554.139.10.pdf",
                        "absolute_url": "/docket/6173451/139/10/wollman-v-massachusetts-general-hospital-inc/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 6173451
                        },
                        "timestamp": "2024-05-15T17:40:18.637392",
                        "docket_id": 6173451,
                        "caseName": "Wollman v. Massachusetts General Hospital Inc.",
                        "case_name_full": "",
                        "docketNumber": "1:15-cv-11890",
                        "suitNature": "375 Other Statutes: False Claims Act",
                        "cause": "31:3729 False Claims Act",
                        "juryDemand": "Plaintiff",
                        "jurisdictionType": "Federal Question",
                        "dateArgued": null,
                        "dateFiled": "2015-05-19",
                        "dateTerminated": "2022-03-03",
                        "assignedTo": "Allison Dale Burroughs",
                        "assigned_to_id": 477,
                        "referredTo": "Judith G. Dein",
                        "referred_to_id": 9286,
                        "court": "District Court, D. Massachusetts",
                        "court_id": "mad",
                        "court_citation_string": "D. Mass.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2021-05-06T12:19:50.125977+00:00",
                        "pacer_case_id": "170554"
                      },
                      "highlight": {
                        "plain_text": [
                          """burly presence with flashing eyes under bushy <mark>eyebrows</mark>, a man of

             D         obvious personal"""
                        ],
                        "description": [
                          "REPLY to Response to 120 MOTION to Compel PRODUCTION OF DOCUMENTS RELATING TO DONALD STERNS INVESTIGATION OF CONCURRENT SURGERY AT MGH filed by Lisa Wollman. (Attachments: # 1 Exhibit A, # 2 Exhibit B, # 3 Exhibit C, # 4 Exhibit D, # 5 Exhibit E, # 6 Exhibit F, # 7 Exhibit G, # 8 Exhibit H, # 9 Exhibit I, # 10 Exhibit J, # 11 Exhibit K)(<mark>Sharma</mark>, Neerja) (Entered: 03/02/2020)"
                        ]
                      }
                    }
                  ]
                }
              }
            }
          },
          {
            "_index": "recap_vectors",
            "_id": "4176376",
            "_score": 82.77947,
            "_source": {
              "docket_slug": "perry-v-schwarzenegger",
              "docket_absolute_url": "/docket/4176376/perry-v-schwarzenegger/",
              "court_exact": "cand",
              "party_id": [
                145920,
                145921,
                145922,
                145923,
                145924,
                145925,
                145926,
                145927,
                145928,
                145929,
                145930,
                145931,
                145932,
                145933,
                145934,
                145935,
                145936,
                145937,
                145938,
                145939,
                145940,
                145941,
                145942,
                145943,
                145944,
                145945,
                145946,
                145947,
                145948,
                145949,
                145950,
                145955,
                145956,
                145957,
                145958,
                145959,
                105512,
                145960,
                145961,
                145962,
                145963,
                145964,
                145965,
                145966,
                145967,
                145968,
                145969,
                145970,
                145971,
                26180,
                118351,
                84048,
                26195,
                63063,
                26210,
                3471482,
                3471483,
                9736397,
                9736398,
                9736399,
                9736400,
                127901,
                9533863,
                145912,
                130506,
                145905,
                145906,
                145907,
                145908,
                145909,
                145910,
                145911,
                137208,
                145913,
                145914,
                145915,
                145916,
                145917,
                145918,
                145919
              ],
              "party": [
                "Sandra B. Stier",
                "City and County of San Francisco",
                "Unitarian Universalist Legislative Ministry California, et al.",
                "Proposition 8 Official Proponents",
                "National Black Justice Coalition",
                "Our Family Coalition",
                "Equality California",
                "Arnold Schwarzenegger",
                "Mark A. Jansson",
                "Asian Law Caucus",
                "Hak-Shing William Tam",
                "ProtectMarriage.com - Yes on 8, A Project of California Renewal",
                "Bienestar Human Services",
                "Board of Supervisors of Imperial County",
                "Campaign for California Families",
                "Bay Area Lawyers for Individual Freedom",
                "Asian Pacific Islander Legal Outreach",
                "Gail J. Knight",
                "American Civil Liberties Union of Northern California",
                "Asian Pacific American Bar Association of Los Angeles County",
                "California State Conference of the NAACP",
                "Institute for Marriage and Public Policy",
                "Mark B. Horton",
                "Michael Wolf",
                "Lavender Seniors of the East Bay",
                "The Family Research Council",
                "KQED, Inc",
                "The Becket Fund for Religious Liberty",
                "Isabel Vargas",
                "Mexican American Legal Defense And Education Fund",
                "California Professors of Family Law",
                "The National Association of Social Workers",
                "County of Imperial of the State of California",
                "National Legal Foundation",
                "American College of Pediatricians",
                "Patrick O'Connell",
                "Jeffrey J. Zarrillo",
                "South Asian Bar Association of Northern California",
                "Japanese American Bar Association",
                "M.D.  Paul R. McHugh",
                "Most Rev. Dr.  Mark S. Shirlau",
                "Ethics and Religious Liberty Commission of the Southern Baptist Convention",
                "Doug Swardstrom",
                "Media Coalition",
                "Reporters Committee for Freedom of the Press",
                "Edmund G. Brown, Jr.",
                "Californians Against Eliminating Basic Rights",
                "Kamala D. Harris",
                "Attorney  Charles S LiMandri",
                "Donald B. King",
                "Miles McPherson",
                "Dean C. Logan",
                "Parents, Families, and Friends of Lesbians and Gays",
                "Linette Scott",
                "Zuna Institute",
                "Asian American Justice Center",
                "The Bar Association of San Francisco",
                "American Psychoanalytic Association",
                "James L Garlow",
                "Dennis Hollingsworth",
                "William T. Criswell",
                "The Progressive Project",
                "Honorable  Vaughn R. Walker",
                "La Raza Centro Legal",
                "Kristin M. Perry",
                "American Anthropological Association",
                "National Association of Social Workers, California",
                "Howard Backer",
                "National Center for Lesbian Rights",
                "American Association for Marriage & Family Therapy, California Division",
                "Mr.  Michael James McDermott",
                "Asian Pacific Bar Association of Silicon Valley",
                "Paul T. Katami",
                "American Academy of Pediatrics, California",
                "Martin F. Gutierrez",
                "Asian Pacific American Legal Center",
                "ACLU Foundation of Northern California",
                "Coalition for Humane Immigrant Rights",
                "Lambda Legal Defense and Education Fund, Inc.",
                "National Gay and Lesbian Task Force Foundation"
              ],
              "attorney_id": [
                79872,
                79873,
                79874,
                79875,
                79876,
                79877,
                79878,
                79879,
                79880,
                79881,
                79882,
                79883,
                79884,
                79885,
                79886,
                79887,
                79888,
                79889,
                79890,
                78867,
                79891,
                79892,
                79893,
                79894,
                79895,
                79896,
                79897,
                79899,
                79900,
                79901,
                79902,
                79903,
                79904,
                79905,
                79906,
                79907,
                79908,
                79909,
                79910,
                79911,
                79912,
                79913,
                79914,
                79915,
                79916,
                712232,
                1001517,
                196144,
                6299698,
                6412851,
                815174,
                1010259,
                78447,
                686210,
                786066,
                1228538,
                1228539,
                1228540,
                1228541,
                1228542,
                1228543,
                6224125,
                955142,
                749328,
                671508,
                809996,
                1026338,
                6299969,
                6308688,
                2759707,
                2759708,
                2759709,
                505203,
                2759710,
                474488,
                48518,
                760225,
                67490,
                1140148,
                79842,
                79843,
                79844,
                79845,
                79846,
                865766,
                79848,
                79849,
                79850,
                79851,
                79852,
                79853,
                79854,
                79855,
                79856,
                79857,
                79858,
                79859,
                79860,
                79861,
                79862,
                79863,
                79864,
                79865,
                79866,
                79867,
                79868,
                79869,
                79870,
                79871
              ],
              "attorney": [
                "Joren Surya Ayala-Bass",
                "Jordan W. Lorence",
                "Jon Warren Davidson",
                "Christopher Francis Stoll",
                "Jesse Michael Panuccio",
                "Mollie M Lee",
                "David E. Bunim",
                "Vincent P. McCarthy",
                "Suzanne B. Goldberg",
                "Manuel Francisco Martinez",
                "Jeremy Michael Goldman",
                "Timothy D Chandler",
                "Daniel J. Powell",
                "Danny Yeh Chou",
                "Judy Whitehurst",
                "Mark R. Conrad",
                "Stephen V. Bomse",
                "Jennifer Lynn Bursch",
                "Howard C. Nielson , Jr.",
                "Susan Marie Popik",
                "Holly L Carmichael",
                "Peter Obstler",
                "Tobias Barrington Wolff",
                "Claude Franklin Kolm",
                "Shannon Minter",
                "Leslie A Kramer",
                "Eric Grant",
                "Linda Lye",
                "James C. Harrison",
                "Michael Wolf",
                "Jerome Cary Roth",
                "Theodore Hideyuki Uno",
                "Jennifer Carol Pizer",
                "Ethan D. Dettmer",
                "Ilona Margaret Turner",
                "Matthew Dempsey McGill",
                "Christine Van Aken",
                "Josh Schiller",
                "John D. Ohlendorf",
                "Seth Eden Goldstein",
                "Enrique Antonio Monagas",
                "James A Campbell",
                "Herma Hill Kay",
                "Diana E Richmond",
                "Michael Stuart Wald",
                "Terry Lee Thompson",
                "Alan Lawrence Schlosser",
                "Ephraim Margolin",
                "Charles Salvatore LiMandri",
                "Theodore B Olson",
                "Rena M Lindevaldsen",
                "Thomas R. Burke",
                "Christopher Dean Dusseault",
                "Mary Elizabeth McAlister",
                "Theodore J. Boutrous , Jr.",
                "David M. Balabanian",
                "Christopher M. Gacek",
                "Patrice Jeanine Salseda",
                "Eric Alan Isaacson",
                "John Thomas Seyman",
                "David L. Llewellyn , Jr.",
                "James Dixon Esseks",
                "Christopher James Schweickert",
                "Brian Ricardo Chavez-Ochoa",
                "David Boies",
                "Jose Hector Moreno , Jr.",
                "Austin R. Nimocks",
                "Matthew Albert Coles",
                "Robert Henry Tyler",
                "James Bopp , Jr.",
                "Theane Evangelis",
                "Ronald P. Flynn",
                "Paul Benjamin Linton",
                "Kelly Wayne Kay",
                "Kari Lynn Krogseng",
                "Michael W. Kirk",
                "Lauren Estelle Whittemore",
                "Charles J. Cooper",
                "Erin Brianna Bernstein",
                "Kevin James Hasson",
                "Alexandra Robert Gordon",
                "Richard E. Coleson",
                "Tara Lynn Borelli",
                "Brian W Raum",
                "James J. Brosnahan",
                "John Douglas Freed",
                "Peter C Renn",
                "Shilpi Agarwal",
                "Richard J. Bettan",
                "Andrew Perry Pugno",
                "Andrew Walter Stroud",
                "Amir Cameron Tayrani",
                "Kenneth C. Mennemeier",
                "Rosanne C. Baxter",
                "Louis P. Feuchtbaum",
                "Townsend KatieLynn",
                "David H. Thompson",
                "Michael James McDermott",
                "Gordon Bruce Burns",
                "Sarah Elizabeth Piepmeier",
                "Elizabeth O. Gill",
                "Peter A. Patterson",
                "Angela Christine Thompson",
                "Tamar Pachter",
                "Kaylan Phillips",
                "Kevin Trent Snider",
                "Patrick John Gorman",
                "Thomas Leonard Brejcha , Jr",
                "Steven Edward Mitchel"
              ],
              "firm_id": [
                13323,
                10255,
                4113,
                2578,
                50722,
                35880,
                24105,
                45608,
                8248,
                237112,
                35404,
                33870,
                31858,
                13951,
                38554,
                291485,
                463009,
                33955,
                32933,
                27304,
                290996,
                39319,
                227521,
                320194,
                35539,
                35542,
                35544,
                14056,
                323320,
                23300,
                483742,
                461605,
                25399,
                28473,
                5445,
                5447,
                33098,
                13151,
                15232,
                39297,
                39298,
                39299,
                39300,
                39301,
                39302,
                39303,
                39304,
                39305,
                7050,
                39306,
                39307,
                39308,
                39309,
                39310,
                39311,
                39312,
                32146,
                35731,
                39314,
                39315,
                39316,
                39318,
                39320,
                32153,
                39313,
                39323,
                39317,
                39325,
                31646,
                39326,
                24480,
                39321,
                39322,
                39324,
                39327,
                39328,
                39329,
                39330,
                39331,
                39332,
                39333,
                39334,
                35244,
                39335,
                39336,
                39337,
                39338,
                39339,
                8114,
                39340,
                39341,
                39342,
                39343,
                39344,
                33720,
                608177,
                608178,
                35773,
                360383,
                18368,
                2499,
                20934,
                47063,
                9688,
                17375,
                3554,
                17381
              ],
              "firm": [
                "Haas & Najarian",
                "Alliance Defense Fund",
                "Remcho, Johansen & Purcell, LLP",
                "Bopp Coleson & Bostrom",
                "Gibson Dunn & Crutcher LLP",
                "Boies, Schiller & Flexner LLP",
                "Wild, Carter & Tipton",
                "Perkins Coie LLP",
                "Office of the City Attorney",
                "Llewellyn Spann, Attorneys at Law",
                "California Office of the Attorney General",
                "Law Offices of Andrew P Pugno",
                "Chapman Popik & White LLP",
                "Department of Justice, Attorney General's Office",
                "Terry L. Thompson, Attorney at Law",
                "Morgan Lewis and Bockius LLP",
                "Holly L Carmichael",
                "Office of the County Counsel, County of Alameda",
                "American Civil Liberties Union of Northern California",
                "Klinedinst PC",
                "Sexuality & Gender Law Clinic",
                "Liberty Counsel",
                "Advocates for Faith & Freedom",
                "James a Campbell",
                "ACLU Foundation",
                "Robbins Geller Rudman & Dowd LLP",
                "Michael Wolf",
                "Mennemeier Glassman & Stroud LLP",
                "Office of the City Attorney of San Francisco",
                "Lambda Legal Defense and Education Fund",
                "Ilona Margaret Turner",
                "Munger Tolles & Olson LLP",
                "Hanson Bridgett LLP",
                "Tyler & Bursch, LLP",
                "San Francisco City Attorney's Office, Chief Deputy City Attorney, City Hall, Room",
                "Cooper & Kirk, PLLC",
                "Law Offices of W. Ruel Walker",
                "Family Research Council",
                "Kirkland and Ellis LLP",
                "Lambda Legal Defense & Education Fund",
                "Fenwick and West LLP",
                "Boies Schiller and Flexner",
                "Davis Wright Tremaine LLP",
                "County of Alameda",
                "Office of County Counsel County of Los Angeles",
                "Gibson Dunn Crutcher LLP",
                "The Law Firm of J. Hector Moreno, Jr. & Associates",
                "National Ctr for Lesbian Rights",
                "Attorney at Law",
                "Christopher James Schweickert",
                "Brian Ricardo Chavez-Ochoa",
                "Office of the SF City Atty",
                "Attorney Generals Office, Dept. of Justice",
                "Stanford Law School",
                "Reporters Committee for Freedom of the Press",
                "Seto Wood & Schweickert LLP",
                "Hicks Thomas LLP",
                "Cooper & Kirk",
                "Paul Benjamin Linton",
                "City Attorney's Office, City & County of San Francisco, Fox Plaza",
                "ACLU LGBT & AIDS Project",
                "Fenwick and West",
                "Marton Ribera Schumann & Chang LLP",
                "Thomas More Society",
                "ACLU Foundation of Northern California, Inc.",
                "Browne George Ross LLP",
                "Richard E. Coleson",
                "Law Offices of Ephraim Margolin",
                "James Madison Center for Free Speech",
                "Boies Schiller & Flexner LLP",
                "Remcho Johansen & Purcell",
                "Morrison & Foerster LLP",
                "Law Offices of Charles S. LiMandri",
                "Los Angeles County Counsel, 648 Kenneth Hahn Hall of Admin",
                "University of Pennsylvania Law School",
                "Tyler and Bursch LLP",
                "Cooper & Kirk PLLC",
                "Office of the California Attorney General",
                "U.S. Department of Justice, Environment and Natural Resources Division",
                "Attorney General's Office",
                "City Attorney's Office for the City of Oakland",
                "Pacific Justice Institute",
                "National Center for Lesbian Rights",
                "Gibson, Dunn & Crutcher LLP",
                "Michael James McDermott",
                "Gibson Dunn & Crutcher",
                "Elizabeth O. Gill",
                "Angela Christine Thompson",
                "Orrick Herrington & Sutcliffe LLP",
                "Alliance Defending Freedom",
                "Kaylan Phillips",
                "ACLU Foundation of Northern California",
                "Lambda Legal Defense and Education Fund, Inc.",
                "Sideman & Bancroft LLP"
              ],
              "docket_child": "docket",
              "timestamp": "2024-06-25T13:08:48.727970",
              "docket_id": 4176376,
              "caseName": "Perry v. Schwarzenegger",
              "case_name_full": "",
              "docketNumber": "3:09-cv-02292",
              "suitNature": "440 Civil Rights: Other",
              "cause": "42:1983 Civil Rights Act",
              "juryDemand": "None",
              "jurisdictionType": "Federal Question",
              "dateArgued": null,
              "dateFiled": "2009-05-22",
              "dateTerminated": "2012-08-27",
              "assignedTo": "William Horsley Orrick III",
              "assigned_to_id": 2474,
              "referredTo": "Joseph Spero",
              "referred_to_id": 9094,
              "court": "District Court, N.D. California",
              "court_id": "cand",
              "court_citation_string": "N.D. Cal.",
              "chapter": null,
              "trustee_str": null,
              "date_created": "2016-08-20T07:26:43.712915+00:00",
              "pacer_case_id": "215270"
            },
            "highlight": {
              "caseName": [
                "Perry <mark>v</mark>. Schwarzenegger"
              ]
            },
            "inner_hits": {
              "filter_query_inner_recap_document": {
                "hits": {
                  "total": {
                    "value": 3,
                    "relation": "eq"
                  },
                  "max_score": 82.77947,
                  "hits": [
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_1860431",
                      "_score": 82.77947,
                      "_routing": "4176376",
                      "_source": {
                        "id": 1860431,
                        "docket_entry_id": 2481816,
                        "description": "Memorandum in Opposition re 285 MOTION in Limine TO EXCLUDE THE EXPERT REPORTS, OPINIONS, AND TESTIMONY OF KATHERINE YOUNG, LOREN MARKS AND DAVID BLANKENHORN filed byMartin F. Gutierrez, Dennis Hollingsworth, Mark A. Jansson, ProtectMarriage.com - Yes on 8, A Project of California Renewal, Hak-Shing William Tam. (Attachments: # 1 Exhibit A, # 2 Exhibit B, # 3 Exhibit C, # 4 Exhibit D)(Cooper, Charles) (Filed on 12/11/2009) (Entered: 12/11/2009)",
                        "entry_number": 302,
                        "entry_date_filed": "2009-12-11",
                        "short_description": "Exhibit A",
                        "document_type": "Attachment",
                        "document_number": "302",
                        "pacer_doc_id": "03506307648",
                        "attachment_number": 1,
                        "is_available": true,
                        "page_count": 14,
                        "filepath_local": "recap/gov.uscourts.cand.215270.302.1.pdf",
                        "absolute_url": "/docket/4176376/302/1/perry-v-schwarzenegger/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 4176376
                        },
                        "timestamp": "2024-03-28T08:17:14.903686",
                        "docket_id": 4176376,
                        "caseName": "Perry v. Schwarzenegger",
                        "case_name_full": "",
                        "docketNumber": "3:09-cv-02292",
                        "suitNature": "440 Civil Rights: Other",
                        "cause": "42:1983 Civil Rights Act",
                        "juryDemand": "None",
                        "jurisdictionType": "Federal Question",
                        "dateArgued": null,
                        "dateFiled": "2009-05-22",
                        "dateTerminated": "2012-08-27",
                        "assignedTo": "William Horsley Orrick III",
                        "assigned_to_id": 2474,
                        "referredTo": "Joseph Spero",
                        "referred_to_id": 9094,
                        "court": "District Court, N.D. California",
                        "court_id": "cand",
                        "court_citation_string": "N.D. Cal.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2016-08-20T07:26:49.747191+00:00",
                        "pacer_case_id": "215270"
                      },
                      "highlight": {
                        "plain_text": [
                          """                 Katherine K. Young and Arvind <mark>Sharma</mark>

       Behold the comely forms of Surya! Her"""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_1860490",
                      "_score": 75.44682,
                      "_routing": "4176376",
                      "_source": {
                        "id": 1860490,
                        "docket_entry_id": 2481851,
                        "description": "ERRATA re 330 Exhibit List, by Martin F. Gutierrez, Dennis Hollingsworth, Mark A. Jansson, Gail J. Knight, ProtectMarriage.com - Yes on 8, A Project of California Renewal, Hak-Shing William Tam. (Cooper, Charles) (Filed on 1/4/2010) (Entered: 01/04/2010)",
                        "entry_number": 337,
                        "entry_date_filed": "2010-01-04",
                        "short_description": "Errata",
                        "document_type": "PACER Document",
                        "document_number": "337",
                        "pacer_doc_id": "03506365456",
                        "attachment_number": null,
                        "is_available": true,
                        "page_count": 146,
                        "filepath_local": "recap/gov.uscourts.cand.215270.337.0.pdf",
                        "absolute_url": "/docket/4176376/337/perry-v-schwarzenegger/",
                        "cites": [
                          1801781,
                          2581269
                        ],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 4176376
                        },
                        "timestamp": "2024-03-28T08:17:17.266836",
                        "docket_id": 4176376,
                        "caseName": "Perry v. Schwarzenegger",
                        "case_name_full": "",
                        "docketNumber": "3:09-cv-02292",
                        "suitNature": "440 Civil Rights: Other",
                        "cause": "42:1983 Civil Rights Act",
                        "juryDemand": "None",
                        "jurisdictionType": "Federal Question",
                        "dateArgued": null,
                        "dateFiled": "2009-05-22",
                        "dateTerminated": "2012-08-27",
                        "assignedTo": "William Horsley Orrick III",
                        "assigned_to_id": 2474,
                        "referredTo": "Joseph Spero",
                        "referred_to_id": 9094,
                        "court": "District Court, N.D. California",
                        "court_id": "cand",
                        "court_citation_string": "N.D. Cal.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2016-08-20T07:26:50.728278+00:00",
                        "pacer_case_id": "215270"
                      },
                      "highlight": {
                        "plain_text": [
                          """Page1 of 146

                     Perry, et al. <mark>v</mark>. Schwarzennegar, et al. , Case No. 09-2292
      """
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_1860646",
                      "_score": 75.44682,
                      "_routing": "4176376",
                      "_source": {
                        "id": 1860646,
                        "docket_entry_id": 2481954,
                        "description": "Exhibit List Second Supplemental by Martin F. Gutierrez, Dennis Hollingsworth, Mark A. Jansson, Gail J. Knight, ProtectMarriage.com - Yes on 8, A Project of California Renewal.. (Attachments: # 1 Exhibit A)(Cooper, Charles) (Filed on 1/12/2010) (Entered: 01/12/2010)",
                        "entry_number": 440,
                        "entry_date_filed": "2010-01-12",
                        "short_description": "Exhibit A",
                        "document_type": "Attachment",
                        "document_number": "440",
                        "pacer_doc_id": "03506398028",
                        "attachment_number": 1,
                        "is_available": true,
                        "page_count": 150,
                        "filepath_local": "recap/gov.uscourts.cand.215270.440.1.pdf",
                        "absolute_url": "/docket/4176376/440/1/perry-v-schwarzenegger/",
                        "cites": [
                          1801781,
                          2581269
                        ],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 4176376
                        },
                        "timestamp": "2024-03-28T08:17:22.222704",
                        "docket_id": 4176376,
                        "caseName": "Perry v. Schwarzenegger",
                        "case_name_full": "",
                        "docketNumber": "3:09-cv-02292",
                        "suitNature": "440 Civil Rights: Other",
                        "cause": "42:1983 Civil Rights Act",
                        "juryDemand": "None",
                        "jurisdictionType": "Federal Question",
                        "dateArgued": null,
                        "dateFiled": "2009-05-22",
                        "dateTerminated": "2012-08-27",
                        "assignedTo": "William Horsley Orrick III",
                        "assigned_to_id": 2474,
                        "referredTo": "Joseph Spero",
                        "referred_to_id": 9094,
                        "court": "District Court, N.D. California",
                        "court_id": "cand",
                        "court_citation_string": "N.D. Cal.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2016-08-20T07:26:52.852230+00:00",
                        "pacer_case_id": "215270"
                      },
                      "highlight": {
                        "plain_text": [
                          """Page1 of 150

                     Perry, et al. <mark>v</mark>. Schwarzennegar, et al. , Case No. 09-2292
      """
                        ]
                      }
                    }
                  ]
                }
              }
            }
          },
          {
            "_index": "recap_vectors",
            "_id": "60016689",
            "_score": 82.63383,
            "_source": {
              "docket_slug": "united-states-v-pooley",
              "docket_absolute_url": "/docket/60016689/united-states-v-pooley/",
              "court_exact": "caed",
              "party_id": [
                13290819,
                13290820
              ],
              "party": [
                "Robert Allen Pooley",
                "USA"
              ],
              "attorney_id": [
                8932089,
                8932090,
                8932091,
                8932092,
                8932093,
                8932094,
                8932095
              ],
              "attorney": [
                "Katherine Theresa Lydon , GOVT",
                "Dhruv M. Sharma",
                "Mia Crager",
                "Hannah Rose Labaree",
                "Christopher Stanton Hales , GOVT",
                "Rachelle Barbour",
                "Meghan McLoughlin"
              ],
              "firm_id": [
                31428,
                839643,
                939367,
                961673,
                822220,
                889168,
                31576,
                292251
              ],
              "firm": [
                "Office of the Federal Defender",
                "U.S. Attorney's Office, Department of Justice",
                "Federal Public Defender for the Eastern District of Californ",
                "Office of the Federal Public Defender",
                "Hannah Rose Labaree",
                "United States Attorney's Office",
                "Solo Practitioner"
              ],
              "docket_child": "docket",
              "timestamp": "2024-03-26T22:42:03.959483",
              "docket_id": 60016689,
              "caseName": "United States v. Pooley",
              "case_name_full": "",
              "docketNumber": "2:21-cr-00111",
              "suitNature": "",
              "cause": "",
              "juryDemand": "",
              "jurisdictionType": "",
              "dateArgued": null,
              "dateFiled": "2021-06-10",
              "dateTerminated": null,
              "assignedTo": "William B. Shubb",
              "assigned_to_id": 2960,
              "referredTo": null,
              "referred_to_id": null,
              "court": "District Court, E.D. California",
              "court_id": "caed",
              "court_citation_string": "E.D. Cal.",
              "chapter": null,
              "trustee_str": null,
              "date_created": "2021-06-26T08:51:43.804088+00:00",
              "pacer_case_id": "395420"
            },
            "highlight": {
              "caseName": [
                "United States <mark>v</mark>. Pooley"
              ]
            },
            "inner_hits": {
              "filter_query_inner_recap_document": {
                "hits": {
                  "total": {
                    "value": 1,
                    "relation": "eq"
                  },
                  "max_score": 82.63383,
                  "hits": [
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_405258373",
                      "_score": 82.63383,
                      "_routing": "60016689",
                      "_source": {
                        "id": 405258373,
                        "docket_entry_id": 396127031,
                        "description": "REPLY by Robert Allen Pooley in support of 143 Motion for Judgment. (Attachments: # 1 Exhibit Excerpts of 5/17/24 transcript, # 2 Exhibit Excerpts of 5/20/24, # 3 Exhibit Excerpts of 5/23/24) (Crager, Mia) Modified on 7/8/2024 (Woodson, A). (Entered: 07/02/2024)",
                        "entry_number": 162,
                        "entry_date_filed": "2024-07-02",
                        "short_description": "",
                        "document_type": "PACER Document",
                        "document_number": 162,
                        "pacer_doc_id": "033014522818",
                        "attachment_number": null,
                        "is_available": true,
                        "page_count": 8,
                        "filepath_local": "recap/gov.uscourts.caed.395420/gov.uscourts.caed.395420.162.0.pdf",
                        "absolute_url": "/docket/60016689/162/united-states-v-pooley/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 60016689
                        },
                        "timestamp": "2024-07-11T18:20:53.669452",
                        "docket_id": 60016689,
                        "caseName": "United States v. Pooley",
                        "case_name_full": "",
                        "docketNumber": "2:21-cr-00111",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2021-06-10",
                        "dateTerminated": null,
                        "assignedTo": "William B. Shubb",
                        "assigned_to_id": 2960,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, E.D. California",
                        "court_id": "caed",
                        "court_citation_string": "E.D. Cal.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2024-07-11T18:20:53.647371+00:00",
                        "pacer_case_id": "395420",
                        "_related_instance_to_ignore": null
                      },
                      "highlight": {
                        "plain_text": [
                          """      1                            United States <mark>v</mark>. Pooley,
                                        """
                        ]
                      }
                    }
                  ]
                }
              }
            }
          },
          {
            "_index": "recap_vectors",
            "_id": "5768294",
            "_score": 82.54804,
            "_source": {
              "docket_slug": "hcgopal-v-sisto",
              "docket_absolute_url": "/docket/5768294/hcgopal-v-sisto/",
              "court_exact": "caed",
              "party_id": [],
              "party": [],
              "attorney_id": [],
              "attorney": [],
              "firm_id": [],
              "firm": [],
              "docket_child": "docket",
              "timestamp": "2024-06-25T18:24:07.816915",
              "docket_id": 5768294,
              "caseName": "(HC)Gopal v. Sisto",
              "case_name_full": "",
              "docketNumber": "1:07-cv-01442",
              "suitNature": "Habeas Corpus (General)",
              "cause": "28:2254 Petition for Writ of Habeas Corpus (State)",
              "juryDemand": "",
              "jurisdictionType": "Federal question",
              "dateArgued": null,
              "dateFiled": "2007-09-24",
              "dateTerminated": "2009-06-04",
              "assignedTo": "Irma E. Gonzalez",
              "assigned_to_id": null,
              "referredTo": "Anthony J. Battaglia",
              "referred_to_id": null,
              "court": "District Court, E.D. California",
              "court_id": "caed",
              "court_citation_string": "E.D. Cal.",
              "chapter": null,
              "trustee_str": null,
              "date_created": "2017-04-26T12:06:12.379990+00:00",
              "pacer_case_id": "168149"
            },
            "highlight": {
              "caseName": [
                "(HC)Gopal <mark>v</mark>. Sisto"
              ]
            },
            "inner_hits": {
              "filter_query_inner_recap_document": {
                "hits": {
                  "total": {
                    "value": 1,
                    "relation": "eq"
                  },
                  "max_score": 82.54804,
                  "hits": [
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_19600314",
                      "_score": 82.54804,
                      "_routing": "5768294",
                      "_source": {
                        "id": 19600314,
                        "docket_entry_id": 18749617,
                        "description": "ORDER DENYING Petition for Writ of Habeas Corpus signed by Chief Judge Irma E. Gonzalez on 6/4/2009. CASE CLOSED.  (Sant Agata, S)",
                        "entry_number": 24,
                        "entry_date_filed": "2009-06-04",
                        "short_description": "",
                        "document_type": "PACER Document",
                        "document_number": "24",
                        "pacer_doc_id": "03303326395",
                        "attachment_number": null,
                        "is_available": true,
                        "page_count": 11,
                        "filepath_local": "recap/gov.uscourts.caed.168149/gov.uscourts.caed.168149.24.0.pdf",
                        "absolute_url": "/docket/5768294/24/hcgopal-v-sisto/",
                        "cites": [
                          1191713,
                          1227936,
                          1431316,
                          2621133,
                          2625332,
                          2633373,
                          3033747
                        ],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 5768294
                        },
                        "timestamp": "2024-04-01T14:31:03.214145",
                        "docket_id": 5768294,
                        "caseName": "(HC)Gopal v. Sisto",
                        "case_name_full": "",
                        "docketNumber": "1:07-cv-01442",
                        "suitNature": "Habeas Corpus (General)",
                        "cause": "28:2254 Petition for Writ of Habeas Corpus (State)",
                        "juryDemand": "",
                        "jurisdictionType": "Federal question",
                        "dateArgued": null,
                        "dateFiled": "2007-09-24",
                        "dateTerminated": "2009-06-04",
                        "assignedTo": "Irma E. Gonzalez",
                        "assigned_to_id": null,
                        "referredTo": "Anthony J. Battaglia",
                        "referred_to_id": null,
                        "court": "District Court, E.D. California",
                        "court_id": "caed",
                        "court_citation_string": "E.D. Cal.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2017-04-27T18:16:56.920890+00:00",
                        "pacer_case_id": "168149"
                      },
                      "highlight": {
                        "plain_text": [
                          """     damaged his facial muscle above his left <mark>eyebrow</mark> and resulted in a five-inch scar.
 2
         """
                        ]
                      }
                    }
                  ]
                }
              }
            }
          },
          {
            "_index": "recap_vectors",
            "_id": "6046419",
            "_score": 81.03855,
            "_source": {
              "docket_slug": "rodney-v-baker",
              "docket_absolute_url": "/docket/6046419/rodney-v-baker/",
              "court_exact": "nvd",
              "party_id": [],
              "party": [],
              "attorney_id": [],
              "attorney": [],
              "firm_id": [],
              "firm": [],
              "docket_child": "docket",
              "timestamp": "2024-03-18T18:52:36.094208",
              "docket_id": 6046419,
              "caseName": "Rodney v. Baker",
              "case_name_full": "",
              "docketNumber": "3:13-cv-00323",
              "suitNature": "Habeas Corpus (General)",
              "cause": "28:2254 Petition for Writ of Habeas Corpus (State)",
              "juryDemand": "",
              "jurisdictionType": "Federal question",
              "dateArgued": null,
              "dateFiled": "2013-06-17",
              "dateTerminated": "2017-02-16",
              "assignedTo": "Robert Clive Jones",
              "assigned_to_id": 1668,
              "referredTo": "Valerie P Cooke",
              "referred_to_id": 10254,
              "court": "District Court, D. Nevada",
              "court_id": "nvd",
              "court_citation_string": "D. Nev.",
              "chapter": null,
              "trustee_str": null,
              "date_created": "2017-04-29T19:30:44.755209+00:00",
              "pacer_case_id": "95088"
            },
            "highlight": {
              "caseName": [
                "Rodney <mark>v</mark>. Baker"
              ]
            },
            "inner_hits": {
              "filter_query_inner_recap_document": {
                "hits": {
                  "total": {
                    "value": 1,
                    "relation": "eq"
                  },
                  "max_score": 81.03855,
                  "hits": [
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_265593088",
                      "_score": 81.03855,
                      "_routing": "6046419",
                      "_source": {
                        "id": 265593088,
                        "docket_entry_id": 259410705,
                        "description": " ORDER - IT IS THEREFORE ORDERED:1. Grounds 3 and 9 of the Petition (ECF No.  102 ) are dismissed with prejudice as procedurally defaulted and the Petition (ECF No.  102 ) is DENIED with prejudice.2. Certificates of appealability  are GRANTED as discussed in this Order for Grounds 3and 9 of the Petition as they relate to Rodney's convictions for attempted murder with a deadly weapon and conspiracy to commit murder;3. A certificate of appealability is DENIED< /b> as discussed in this Order as to Rodney's conviction for battery with use of a deadly weapon resulting in substantial bodily harm;4. All requests for an evidentiary hearing are DENIED;5. The Clerk of Court is directed to su bstitute Tim Garrett for Respondent Warden Baker; and6. The Clerk of the Court is directed to enter judgment accordingly and close this case.Signed by Judge Robert C. Jones on 3/29/2023.   (Copies have been distributed pursuant to the NEF - CJS)",
                        "entry_number": 104,
                        "entry_date_filed": "2023-03-29",
                        "short_description": "Order",
                        "document_type": "PACER Document",
                        "document_number": "104",
                        "pacer_doc_id": "11509898041",
                        "attachment_number": null,
                        "is_available": true,
                        "page_count": 40,
                        "filepath_local": "recap/gov.uscourts.nvd.95088/gov.uscourts.nvd.95088.104.0.pdf",
                        "absolute_url": "/docket/6046419/104/rodney-v-baker/",
                        "cites": [
                          112640,
                          137004,
                          766685,
                          776707,
                          872994,
                          1210547,
                          2508848,
                          2514440,
                          2550126,
                          2600333,
                          2607729,
                          2618321,
                          2640829,
                          2641235
                        ],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 6046419
                        },
                        "timestamp": "2024-05-29T01:34:55.236282",
                        "docket_id": 6046419,
                        "caseName": "Rodney v. Baker",
                        "case_name_full": "",
                        "docketNumber": "3:13-cv-00323",
                        "suitNature": "Habeas Corpus (General)",
                        "cause": "28:2254 Petition for Writ of Habeas Corpus (State)",
                        "juryDemand": "",
                        "jurisdictionType": "Federal question",
                        "dateArgued": null,
                        "dateFiled": "2013-06-17",
                        "dateTerminated": "2017-02-16",
                        "assignedTo": "Robert Clive Jones",
                        "assigned_to_id": 1668,
                        "referredTo": "Valerie P Cooke",
                        "referred_to_id": 10254,
                        "court": "District Court, D. Nevada",
                        "court_id": "nvd",
                        "court_citation_string": "D. Nev.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2023-03-29T19:19:45.350190+00:00",
                        "pacer_case_id": "95088"
                      },
                      "highlight": {
                        "plain_text": [
                          """                   Petitioner,
                  <mark>v</mark>.                                                 """
                        ]
                      }
                    }
                  ]
                }
              }
            }
          },
          {
            "_index": "recap_vectors",
            "_id": "6651203",
            "_score": 80.136185,
            "_source": {
              "docket_slug": "united-states-v-delaura",
              "docket_absolute_url": "/docket/6651203/united-states-v-delaura/",
              "court_exact": "nysd",
              "party_id": [],
              "party": [],
              "attorney_id": [],
              "attorney": [],
              "firm_id": [],
              "firm": [],
              "docket_child": "docket",
              "timestamp": "2024-03-18T20:05:14.958002",
              "docket_id": 6651203,
              "caseName": "United States v. Delaura",
              "case_name_full": "",
              "docketNumber": "7:12-cr-00812",
              "suitNature": "",
              "cause": "",
              "juryDemand": "",
              "jurisdictionType": "",
              "dateArgued": null,
              "dateFiled": "2012-11-07",
              "dateTerminated": "2014-04-09",
              "assignedTo": null,
              "assigned_to_id": null,
              "referredTo": null,
              "referred_to_id": null,
              "court": "District Court, S.D. New York",
              "court_id": "nysd",
              "court_citation_string": "S.D.N.Y.",
              "chapter": null,
              "trustee_str": null,
              "date_created": "2018-05-14T15:26:03.409213+00:00",
              "pacer_case_id": "403581"
            },
            "highlight": {
              "caseName": [
                "United States <mark>v</mark>. Delaura"
              ]
            },
            "inner_hits": {
              "filter_query_inner_recap_document": {
                "hits": {
                  "total": {
                    "value": 1,
                    "relation": "eq"
                  },
                  "max_score": 80.136185,
                  "hits": [
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_212152427",
                      "_score": 80.136185,
                      "_routing": "6651203",
                      "_source": {
                        "id": 212152427,
                        "docket_entry_id": 206298747,
                        "description": "   OPINION & ORDER   as to Johnathan Delaura. The Court grants the Petition as unopposed. Defendant's guilty plea, conviction,  and sentence are therefore vacated. The Court denies Defendant's Motion to  Recuse in its entirety. The Clerk of  Court is respectfully directed to terminate  the pending Petition and Motion, (Dkt Nos. 62, 107). The Court will hold a  status conference on October 18, 2022, at 2:30 pm.  (Status Conference set for 10/18/2022 at 02:30 PM before Judge Kenneth M. Karas)   (Signed by Judge Kenneth M. Karas on 9/13/2022) (See ORDER set forth) (ap)",
                        "entry_number": 136,
                        "entry_date_filed": "2022-09-13",
                        "short_description": "~Util - Terminate Motions AND ~Util - Set/Reset Hearings AND Memorandum & Opinion",
                        "document_type": "PACER Document",
                        "document_number": "136",
                        "pacer_doc_id": "127031946379",
                        "attachment_number": null,
                        "is_available": true,
                        "page_count": 20,
                        "filepath_local": "recap/gov.uscourts.nysd.403581/gov.uscourts.nysd.403581.136.0.pdf",
                        "absolute_url": "/docket/6651203/136/united-states-v-delaura/",
                        "cites": [
                          127915,
                          244489,
                          376824,
                          405163,
                          931960,
                          1034529,
                          1198733,
                          1242346,
                          1517401,
                          2337274,
                          4174283,
                          7243775,
                          8307185,
                          8411994
                        ],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 6651203
                        },
                        "timestamp": "2024-05-21T20:44:55.423149",
                        "docket_id": 6651203,
                        "caseName": "United States v. Delaura",
                        "case_name_full": "",
                        "docketNumber": "7:12-cr-00812",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2012-11-07",
                        "dateTerminated": "2014-04-09",
                        "assignedTo": null,
                        "assigned_to_id": null,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. New York",
                        "court_id": "nysd",
                        "court_citation_string": "S.D.N.Y.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2022-09-14T15:07:15.201630+00:00",
                        "pacer_case_id": "403581"
                      },
                      "highlight": {
                        "plain_text": [
                          """                    No. 12-CR-812 (KMK)
         <mark>v</mark>.
                                                """
                        ]
                      }
                    }
                  ]
                }
              }
            }
          }
        ]
      },
      "status": 200
    },
    {
      "took": 562,
      "timed_out": false,
      "_shards": {
        "total": 30,
        "successful": 30,
        "skipped": 0,
        "failed": 0
      },
      "hits": {
        "total": {
          "value": 53,
          "relation": "eq"
        },
        "max_score": null,
        "hits": []
      },
      "aggregations": {
        "unique_documents": {
          "value": 53
        }
      },
      "status": 200
    },
    {
      "took": 513,
      "timed_out": false,
      "_shards": {
        "total": 30,
        "successful": 30,
        "skipped": 0,
        "failed": 0
      },
      "hits": {
        "total": {
          "value": 130,
          "relation": "eq"
        },
        "max_score": null,
        "hits": []
      },
      "aggregations": {
        "unique_documents": {
          "value": 129
        }
      },
      "status": 200
    }
  ]
}
mlissner commented 1 month ago

The second:

{
  "took": 13922,
  "responses": [
    {
      "took": 13922,
      "timed_out": false,
      "_shards": {
        "total": 30,
        "successful": 30,
        "skipped": 0,
        "failed": 0
      },
      "hits": {
        "total": {
          "value": 10000,
          "relation": "gte"
        },
        "max_score": 166.33171,
        "hits": [
          {
            "_index": "recap_vectors",
            "_id": "26215427",
            "_score": 166.33171,
            "_source": {
              "docket_slug": "miscellaneous-minute-entry-orders-for-2015",
              "docket_absolute_url": "/docket/26215427/miscellaneous-minute-entry-orders-for-2015/",
              "court_exact": "alsd",
              "party_id": [],
              "party": [],
              "attorney_id": [],
              "attorney": [],
              "firm_id": [],
              "firm": [],
              "docket_child": "docket",
              "timestamp": "2024-03-21T04:35:35.275664",
              "docket_id": 26215427,
              "caseName": "Miscellaneous Minute Entry Orders for 2015",
              "case_name_full": "",
              "docketNumber": "1:15-mc-01000",
              "suitNature": "",
              "cause": "",
              "juryDemand": "",
              "jurisdictionType": "",
              "dateArgued": null,
              "dateFiled": "2014-12-23",
              "dateTerminated": null,
              "assignedTo": "William H. Steele",
              "assigned_to_id": 3093,
              "referredTo": null,
              "referred_to_id": null,
              "court": "District Court, S.D. Alabama",
              "court_id": "alsd",
              "court_citation_string": "S.D. Ala.",
              "chapter": null,
              "trustee_str": null,
              "date_created": "2020-12-29T03:40:48.725561+00:00",
              "pacer_case_id": "56951"
            },
            "highlight": {
              "caseName": [
                "Miscellaneous <mark>Minute</mark> Entry <mark>Orders</mark> for 2015"
              ]
            },
            "inner_hits": {
              "filter_query_inner_recap_document": {
                "hits": {
                  "total": {
                    "value": 13,
                    "relation": "eq"
                  },
                  "max_score": 83.581436,
                  "hits": [
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_272878780",
                      "_score": 83.581436,
                      "_routing": "26215427",
                      "_source": {
                        "id": 272878780,
                        "docket_entry_id": 266683280,
                        "description": "",
                        "entry_number": 12,
                        "entry_date_filed": "2015-09-11",
                        "short_description": "Order",
                        "document_type": "PACER Document",
                        "document_number": "12",
                        "pacer_doc_id": "02102228766",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/26215427/12/miscellaneous-minute-entry-orders-for-2015/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 26215427
                        },
                        "timestamp": "2024-05-30T01:03:46.374128",
                        "docket_id": 26215427,
                        "caseName": "Miscellaneous Minute Entry Orders for 2015",
                        "case_name_full": "",
                        "docketNumber": "1:15-mc-01000",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2014-12-23",
                        "dateTerminated": null,
                        "assignedTo": "William H. Steele",
                        "assigned_to_id": 3093,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2023-04-07T14:46:53.497572+00:00",
                        "pacer_case_id": "56951"
                      },
                      "highlight": {
                        "short_description": [
                          "<mark>Order</mark>"
                        ],
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_275612291",
                      "_score": 83.581436,
                      "_routing": "26215427",
                      "_source": {
                        "id": 275612291,
                        "docket_entry_id": 269411022,
                        "description": "",
                        "entry_number": 14,
                        "entry_date_filed": "2015-10-06",
                        "short_description": "Order",
                        "document_type": "PACER Document",
                        "document_number": "14",
                        "pacer_doc_id": "02102240425",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/26215427/14/miscellaneous-minute-entry-orders-for-2015/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 26215427
                        },
                        "timestamp": "2024-05-30T08:31:23.603365",
                        "docket_id": 26215427,
                        "caseName": "Miscellaneous Minute Entry Orders for 2015",
                        "case_name_full": "",
                        "docketNumber": "1:15-mc-01000",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2014-12-23",
                        "dateTerminated": null,
                        "assignedTo": "William H. Steele",
                        "assigned_to_id": 3093,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2023-04-12T01:18:42.347159+00:00",
                        "pacer_case_id": "56951"
                      },
                      "highlight": {
                        "short_description": [
                          "<mark>Order</mark>"
                        ],
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_268332655",
                      "_score": 83.581436,
                      "_routing": "26215427",
                      "_source": {
                        "id": 268332655,
                        "docket_entry_id": 262141968,
                        "description": "",
                        "entry_number": 10,
                        "entry_date_filed": "2015-07-29",
                        "short_description": "Order",
                        "document_type": "PACER Document",
                        "document_number": "10",
                        "pacer_doc_id": "02102208406",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/26215427/10/miscellaneous-minute-entry-orders-for-2015/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 26215427
                        },
                        "timestamp": "2024-05-29T10:06:40.138937",
                        "docket_id": 26215427,
                        "caseName": "Miscellaneous Minute Entry Orders for 2015",
                        "case_name_full": "",
                        "docketNumber": "1:15-mc-01000",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2014-12-23",
                        "dateTerminated": null,
                        "assignedTo": "William H. Steele",
                        "assigned_to_id": 3093,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2023-04-04T08:13:58.306942+00:00",
                        "pacer_case_id": "56951"
                      },
                      "highlight": {
                        "short_description": [
                          "<mark>Order</mark>"
                        ],
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_271124668",
                      "_score": 83.581436,
                      "_routing": "26215427",
                      "_source": {
                        "id": 271124668,
                        "docket_entry_id": 264931484,
                        "description": "",
                        "entry_number": 11,
                        "entry_date_filed": "2015-08-25",
                        "short_description": "Order",
                        "document_type": "PACER Document",
                        "document_number": "11",
                        "pacer_doc_id": "02102221173",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/26215427/11/miscellaneous-minute-entry-orders-for-2015/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 26215427
                        },
                        "timestamp": "2024-05-29T19:13:10.605333",
                        "docket_id": 26215427,
                        "caseName": "Miscellaneous Minute Entry Orders for 2015",
                        "case_name_full": "",
                        "docketNumber": "1:15-mc-01000",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2014-12-23",
                        "dateTerminated": null,
                        "assignedTo": "William H. Steele",
                        "assigned_to_id": 3093,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2023-04-05T20:44:27.173368+00:00",
                        "pacer_case_id": "56951"
                      },
                      "highlight": {
                        "short_description": [
                          "<mark>Order</mark>"
                        ],
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_264954417",
                      "_score": 83.581436,
                      "_routing": "26215427",
                      "_source": {
                        "id": 264954417,
                        "docket_entry_id": 258774709,
                        "description": "",
                        "entry_number": 8,
                        "entry_date_filed": "2015-07-01",
                        "short_description": "Order",
                        "document_type": "PACER Document",
                        "document_number": "8",
                        "pacer_doc_id": "02102196243",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/26215427/8/miscellaneous-minute-entry-orders-for-2015/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 26215427
                        },
                        "timestamp": "2024-05-28T23:32:13.074280",
                        "docket_id": 26215427,
                        "caseName": "Miscellaneous Minute Entry Orders for 2015",
                        "case_name_full": "",
                        "docketNumber": "1:15-mc-01000",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2014-12-23",
                        "dateTerminated": null,
                        "assignedTo": "William H. Steele",
                        "assigned_to_id": 3093,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2023-03-28T11:50:39.412997+00:00",
                        "pacer_case_id": "56951"
                      },
                      "highlight": {
                        "short_description": [
                          "<mark>Order</mark>"
                        ],
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_265126825",
                      "_score": 83.581436,
                      "_routing": "26215427",
                      "_source": {
                        "id": 265126825,
                        "docket_entry_id": 258947045,
                        "description": "",
                        "entry_number": 9,
                        "entry_date_filed": "2015-07-02",
                        "short_description": "Order",
                        "document_type": "PACER Document",
                        "document_number": "9",
                        "pacer_doc_id": "02102197104",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/26215427/9/miscellaneous-minute-entry-orders-for-2015/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 26215427
                        },
                        "timestamp": "2024-05-29T00:04:45.100130",
                        "docket_id": 26215427,
                        "caseName": "Miscellaneous Minute Entry Orders for 2015",
                        "case_name_full": "",
                        "docketNumber": "1:15-mc-01000",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2014-12-23",
                        "dateTerminated": null,
                        "assignedTo": "William H. Steele",
                        "assigned_to_id": 3093,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2023-03-28T13:57:52.741104+00:00",
                        "pacer_case_id": "56951"
                      },
                      "highlight": {
                        "short_description": [
                          "<mark>Order</mark>"
                        ],
                        "plain_text": [
                          ""
                        ]
                      }
                    }
                  ]
                }
              }
            }
          },
          {
            "_index": "recap_vectors",
            "_id": "16690447",
            "_score": 165.66553,
            "_source": {
              "docket_slug": "miscellaneous-minute-entry-orders-for-2020",
              "docket_absolute_url": "/docket/16690447/miscellaneous-minute-entry-orders-for-2020/",
              "court_exact": "alsd",
              "party_id": [],
              "party": [],
              "attorney_id": [],
              "attorney": [],
              "firm_id": [],
              "firm": [],
              "docket_child": "docket",
              "timestamp": "2024-03-20T03:32:16.745854",
              "docket_id": 16690447,
              "caseName": "Miscellaneous Minute Entry Orders for 2020",
              "case_name_full": "",
              "docketNumber": "1:20-mc-01000",
              "suitNature": "",
              "cause": "No cause code entered",
              "juryDemand": "",
              "jurisdictionType": "",
              "dateArgued": null,
              "dateFiled": "2020-01-02",
              "dateTerminated": null,
              "assignedTo": "Jeffrey Uhlman Beaverstock",
              "assigned_to_id": 8545,
              "referredTo": null,
              "referred_to_id": null,
              "court": "District Court, S.D. Alabama",
              "court_id": "alsd",
              "court_citation_string": "S.D. Ala.",
              "chapter": null,
              "trustee_str": null,
              "date_created": "2020-01-14T17:22:51.992373+00:00",
              "pacer_case_id": "66238"
            },
            "highlight": {
              "caseName": [
                "Miscellaneous <mark>Minute</mark> Entry <mark>Orders</mark> for 2020"
              ]
            },
            "inner_hits": {
              "filter_query_inner_recap_document": {
                "hits": {
                  "total": {
                    "value": 22,
                    "relation": "eq"
                  },
                  "max_score": 83.696045,
                  "hits": [
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_129123046",
                      "_score": 83.696045,
                      "_routing": "16690447",
                      "_source": {
                        "id": 129123046,
                        "docket_entry_id": 124680516,
                        "description": "Order In Re: The Judiciary Video Teleconferencing for Criminal Proceedings during the National Emergency caused by the Coronavirus Disease (COVID-19). Signed by Chief Judge Kristi K. DuBose on 3/30/2020.  (jlr)",
                        "entry_number": 6,
                        "entry_date_filed": "2020-03-30",
                        "short_description": "Order",
                        "document_type": "PACER Document",
                        "document_number": "6",
                        "pacer_doc_id": "02102993400",
                        "attachment_number": null,
                        "is_available": true,
                        "page_count": 2,
                        "filepath_local": "recap/gov.uscourts.alsd.66238/gov.uscourts.alsd.66238.6.0.pdf",
                        "absolute_url": "/docket/16690447/6/miscellaneous-minute-entry-orders-for-2020/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 16690447
                        },
                        "timestamp": "2024-05-09T14:39:53.010084",
                        "docket_id": 16690447,
                        "caseName": "Miscellaneous Minute Entry Orders for 2020",
                        "case_name_full": "",
                        "docketNumber": "1:20-mc-01000",
                        "suitNature": "",
                        "cause": "No cause code entered",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2020-01-02",
                        "dateTerminated": null,
                        "assignedTo": "Jeffrey Uhlman Beaverstock",
                        "assigned_to_id": 8545,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2020-03-31T15:20:15.252987+00:00",
                        "pacer_case_id": "66238"
                      },
                      "highlight": {
                        "short_description": [
                          "<mark>Order</mark>"
                        ],
                        "plain_text": [
                          """
                                              <mark>ORDER</mark>

       The Judicial Conference of the United States"""
                        ],
                        "description": [
                          "<mark>Order</mark> In Re: The Judiciary Video Teleconferencing for Criminal Proceedings during the National Emergency caused by the Coronavirus Disease (COVID-19). Signed by Chief Judge Kristi K. DuBose on 3/30/2020.  (jlr)"
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_129022220",
                      "_score": 83.696045,
                      "_routing": "16690447",
                      "_source": {
                        "id": 129022220,
                        "docket_entry_id": 124580523,
                        "description": "Order In Re: The Judiciary Video Teleconferencing for Criminal Proceedings during the National Emergency caused by the Coronavirus Disease (COVID-19). Signed by Chief Judge Kristi K. DuBose on 3/30/2020.  (jlr)",
                        "entry_number": 5,
                        "entry_date_filed": "2020-03-30",
                        "short_description": "Order",
                        "document_type": "PACER Document",
                        "document_number": "5",
                        "pacer_doc_id": "02102993400",
                        "attachment_number": null,
                        "is_available": true,
                        "page_count": 2,
                        "filepath_local": "recap/gov.uscourts.alsd.66238/gov.uscourts.alsd.66238.5.0.pdf",
                        "absolute_url": "/docket/16690447/5/miscellaneous-minute-entry-orders-for-2020/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 16690447
                        },
                        "timestamp": "2024-05-09T13:59:39.753641",
                        "docket_id": 16690447,
                        "caseName": "Miscellaneous Minute Entry Orders for 2020",
                        "case_name_full": "",
                        "docketNumber": "1:20-mc-01000",
                        "suitNature": "",
                        "cause": "No cause code entered",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2020-01-02",
                        "dateTerminated": null,
                        "assignedTo": "Jeffrey Uhlman Beaverstock",
                        "assigned_to_id": 8545,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2020-03-30T17:18:34.897159+00:00",
                        "pacer_case_id": "66238"
                      },
                      "highlight": {
                        "short_description": [
                          "<mark>Order</mark>"
                        ],
                        "plain_text": [
                          """
                                              <mark>ORDER</mark>

       The Judicial Conference of the United States"""
                        ],
                        "description": [
                          "<mark>Order</mark> In Re: The Judiciary Video Teleconferencing for Criminal Proceedings during the National Emergency caused by the Coronavirus Disease (COVID-19). Signed by Chief Judge Kristi K. DuBose on 3/30/2020.  (jlr)"
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_153147629",
                      "_score": 83.686714,
                      "_routing": "16690447",
                      "_source": {
                        "id": 153147629,
                        "docket_entry_id": 148370393,
                        "description": "Order entered extending Grand Jury Panels 19-1, 19-2, and 19-3 for an additional six months, as further set out.  Signed by Chief Judge Kristi K. DuBose on 12/1/20.  (jlr)",
                        "entry_number": 21,
                        "entry_date_filed": "2020-12-01",
                        "short_description": "Order",
                        "document_type": "PACER Document",
                        "document_number": "21",
                        "pacer_doc_id": "02103096741",
                        "attachment_number": null,
                        "is_available": true,
                        "page_count": 1,
                        "filepath_local": "recap/gov.uscourts.alsd.66238/gov.uscourts.alsd.66238.21.0.pdf",
                        "absolute_url": "/docket/16690447/21/miscellaneous-minute-entry-orders-for-2020/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 16690447
                        },
                        "timestamp": "2024-05-13T07:02:50.849202",
                        "docket_id": 16690447,
                        "caseName": "Miscellaneous Minute Entry Orders for 2020",
                        "case_name_full": "",
                        "docketNumber": "1:20-mc-01000",
                        "suitNature": "",
                        "cause": "No cause code entered",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2020-01-02",
                        "dateTerminated": null,
                        "assignedTo": "Jeffrey Uhlman Beaverstock",
                        "assigned_to_id": 8545,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2020-12-01T18:19:45.767197+00:00",
                        "pacer_case_id": "66238"
                      },
                      "highlight": {
                        "short_description": [
                          "<mark>Order</mark>"
                        ],
                        "plain_text": [
                          """)

                                             <mark>ORDER</mark>

       President Donald J. Trump and Governor Kay"""
                        ],
                        "description": [
                          "<mark>Order</mark> entered extending Grand Jury Panels 19-1, 19-2, and 19-3 for an additional six months, as further set out.  Signed by Chief Judge Kristi K. DuBose on 12/1/20.  (jlr)"
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_121117778",
                      "_score": 82.8208,
                      "_routing": "16690447",
                      "_source": {
                        "id": 121117778,
                        "docket_entry_id": 116740863,
                        "description": "",
                        "entry_number": 2,
                        "entry_date_filed": "2020-01-22",
                        "short_description": "Order",
                        "document_type": "PACER Document",
                        "document_number": "2",
                        "pacer_doc_id": "02102955040",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/16690447/2/miscellaneous-minute-entry-orders-for-2020/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 16690447
                        },
                        "timestamp": "2024-05-08T06:24:03.219790",
                        "docket_id": 16690447,
                        "caseName": "Miscellaneous Minute Entry Orders for 2020",
                        "case_name_full": "",
                        "docketNumber": "1:20-mc-01000",
                        "suitNature": "",
                        "cause": "No cause code entered",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2020-01-02",
                        "dateTerminated": null,
                        "assignedTo": "Jeffrey Uhlman Beaverstock",
                        "assigned_to_id": 8545,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2020-01-22T18:22:38.407079+00:00",
                        "pacer_case_id": "66238"
                      },
                      "highlight": {
                        "short_description": [
                          "<mark>Order</mark>"
                        ],
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_130661052",
                      "_score": 82.8208,
                      "_routing": "16690447",
                      "_source": {
                        "id": 130661052,
                        "docket_entry_id": 126205648,
                        "description": "",
                        "entry_number": 8,
                        "entry_date_filed": "2020-04-15",
                        "short_description": "Order",
                        "document_type": "PACER Document",
                        "document_number": "8",
                        "pacer_doc_id": "02103000693",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/16690447/8/miscellaneous-minute-entry-orders-for-2020/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 16690447
                        },
                        "timestamp": "2024-05-09T21:43:04.606590",
                        "docket_id": 16690447,
                        "caseName": "Miscellaneous Minute Entry Orders for 2020",
                        "case_name_full": "",
                        "docketNumber": "1:20-mc-01000",
                        "suitNature": "",
                        "cause": "No cause code entered",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2020-01-02",
                        "dateTerminated": null,
                        "assignedTo": "Jeffrey Uhlman Beaverstock",
                        "assigned_to_id": 8545,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2020-04-15T21:22:57.521104+00:00",
                        "pacer_case_id": "66238"
                      },
                      "highlight": {
                        "short_description": [
                          "<mark>Order</mark>"
                        ],
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_139326482",
                      "_score": 82.8208,
                      "_routing": "16690447",
                      "_source": {
                        "id": 139326482,
                        "docket_entry_id": 134763190,
                        "description": "",
                        "entry_number": 14,
                        "entry_date_filed": "2020-07-14",
                        "short_description": "Order",
                        "document_type": "PACER Document",
                        "document_number": "14",
                        "pacer_doc_id": "02103035786",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/16690447/14/miscellaneous-minute-entry-orders-for-2020/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 16690447
                        },
                        "timestamp": "2024-05-11T05:39:30.092152",
                        "docket_id": 16690447,
                        "caseName": "Miscellaneous Minute Entry Orders for 2020",
                        "case_name_full": "",
                        "docketNumber": "1:20-mc-01000",
                        "suitNature": "",
                        "cause": "No cause code entered",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2020-01-02",
                        "dateTerminated": null,
                        "assignedTo": "Jeffrey Uhlman Beaverstock",
                        "assigned_to_id": 8545,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2020-07-14T21:24:16.673846+00:00",
                        "pacer_case_id": "66238"
                      },
                      "highlight": {
                        "short_description": [
                          "<mark>Order</mark>"
                        ],
                        "plain_text": [
                          ""
                        ]
                      }
                    }
                  ]
                }
              }
            }
          },
          {
            "_index": "recap_vectors",
            "_id": "61800875",
            "_score": 161.68895,
            "_source": {
              "docket_slug": "miscellaneous-minute-entry-orders-for-2022",
              "docket_absolute_url": "/docket/61800875/miscellaneous-minute-entry-orders-for-2022/",
              "court_exact": "alsd",
              "party_id": [
                11580041
              ],
              "party": [
                "Charles R. Diard, Jr."
              ],
              "attorney_id": [],
              "attorney": [],
              "firm_id": [],
              "firm": [],
              "docket_child": "docket",
              "timestamp": "2024-03-27T02:30:46.110667",
              "docket_id": 61800875,
              "caseName": "Miscellaneous Minute Entry Orders for 2022",
              "case_name_full": "",
              "docketNumber": "1:22-mc-01000",
              "suitNature": "",
              "cause": "No cause code entered",
              "juryDemand": "",
              "jurisdictionType": "",
              "dateArgued": null,
              "dateFiled": "2021-12-29",
              "dateTerminated": null,
              "assignedTo": "Jeffrey Uhlman Beaverstock",
              "assigned_to_id": 8545,
              "referredTo": null,
              "referred_to_id": null,
              "court": "District Court, S.D. Alabama",
              "court_id": "alsd",
              "court_citation_string": "S.D. Ala.",
              "chapter": null,
              "trustee_str": null,
              "date_created": "2022-01-07T19:17:14.873758+00:00",
              "pacer_case_id": "69389"
            },
            "highlight": {
              "caseName": [
                "Miscellaneous <mark>Minute</mark> Entry <mark>Orders</mark> for 2022"
              ]
            },
            "inner_hits": {
              "filter_query_inner_recap_document": {
                "hits": {
                  "total": {
                    "value": 16,
                    "relation": "eq"
                  },
                  "max_score": 81.67236,
                  "hits": [
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_194734711",
                      "_score": 81.67236,
                      "_routing": "61800875",
                      "_source": {
                        "court_citation_string": "S.D. Ala.",
                        "short_description": "Order",
                        "chapter": null,
                        "trustee_str": null,
                        "assigned_to_id": 8545,
                        "court_id": "alsd",
                        "docket_child": {
                          "parent": 61800875,
                          "name": "recap_document"
                        },
                        "description": "Order entered re: Updated COVID-19 procedures. Signed by Chief District Judge Jeffrey U. Beaverstock on 03/04/2022. (crd) (Entered: 03/04/2022)",
                        "cause": "No cause code entered",
                        "absolute_url": "/docket/61800875/3/miscellaneous-minute-entry-orders-for-2022/",
                        "case_name_full": "",
                        "suitNature": "",
                        "assignedTo": "Jeffrey Uhlman Beaverstock",
                        "dateArgued": null,
                        "referredTo": null,
                        "cites": [],
                        "caseName": "Miscellaneous Minute Entry Orders for 2022",
                        "docket_id": 61800875,
                        "id": 194734711,
                        "page_count": null,
                        "document_type": "PACER Document",
                        "timestamp": "2024-05-19T08:46:46.089609",
                        "dateFiled": "2021-12-29",
                        "dateTerminated": null,
                        "docket_entry_id": 189173017,
                        "document_number": "3",
                        "pacer_case_id": "69389",
                        "entry_number": 3,
                        "jurisdictionType": "",
                        "date_created": "2022-03-04T22:22:30.757816+00:00",
                        "filepath_local": null,
                        "pacer_doc_id": "02103307520",
                        "court": "District Court, S.D. Alabama",
                        "entry_date_filed": "2022-03-04",
                        "juryDemand": "",
                        "is_available": false,
                        "referred_to_id": null,
                        "attachment_number": null,
                        "docketNumber": "1:22-mc-01000"
                      },
                      "highlight": {
                        "short_description": [
                          "<mark>Order</mark>"
                        ],
                        "plain_text": [
                          ""
                        ],
                        "description": [
                          "<mark>Order</mark> entered re: Updated COVID-19 procedures. Signed by Chief District Judge Jeffrey U. Beaverstock on 03/04/2022. (crd) (Entered: 03/04/2022)"
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_194882529",
                      "_score": 81.59686,
                      "_routing": "61800875",
                      "_source": {
                        "court_citation_string": "S.D. Ala.",
                        "short_description": "Order",
                        "chapter": null,
                        "trustee_str": null,
                        "assigned_to_id": 8545,
                        "court_id": "alsd",
                        "docket_child": {
                          "parent": 61800875,
                          "name": "recap_document"
                        },
                        "description": "PACER Exemption Order entered as to Jonah Berger. Signed by Chief District Judge Jeffrey U. Beaverstock on 3/7/2022. (Attachments: # 1 Exhibit Application, # 2 Exhibit AO Recommendation). (cle) (Entered: 03/07/2022)",
                        "cause": "No cause code entered",
                        "absolute_url": "/docket/61800875/4/miscellaneous-minute-entry-orders-for-2022/",
                        "case_name_full": "",
                        "suitNature": "",
                        "assignedTo": "Jeffrey Uhlman Beaverstock",
                        "dateArgued": null,
                        "referredTo": null,
                        "cites": [],
                        "caseName": "Miscellaneous Minute Entry Orders for 2022",
                        "docket_id": 61800875,
                        "id": 194882529,
                        "page_count": null,
                        "document_type": "PACER Document",
                        "timestamp": "2024-05-19T09:14:09.286639",
                        "dateFiled": "2021-12-29",
                        "dateTerminated": null,
                        "docket_entry_id": 189318327,
                        "document_number": "4",
                        "pacer_case_id": "69389",
                        "entry_number": 4,
                        "jurisdictionType": "",
                        "date_created": "2022-03-07T22:18:28.550446+00:00",
                        "filepath_local": null,
                        "pacer_doc_id": "02103308472",
                        "court": "District Court, S.D. Alabama",
                        "entry_date_filed": "2022-03-07",
                        "juryDemand": "",
                        "is_available": false,
                        "referred_to_id": null,
                        "attachment_number": null,
                        "docketNumber": "1:22-mc-01000"
                      },
                      "highlight": {
                        "short_description": [
                          "<mark>Order</mark>"
                        ],
                        "plain_text": [
                          ""
                        ],
                        "description": [
                          "PACER Exemption <mark>Order</mark> entered as to Jonah Berger. Signed by Chief District Judge Jeffrey U. Beaverstock on 3/7/2022. (Attachments: # 1 Exhibit Application, # 2 Exhibit AO Recommendation). (cle) (Entered: 03/07/2022)"
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_191428049",
                      "_score": 81.58197,
                      "_routing": "61800875",
                      "_source": {
                        "court_citation_string": "S.D. Ala.",
                        "short_description": "Order",
                        "chapter": null,
                        "trustee_str": null,
                        "assigned_to_id": 8545,
                        "court_id": "alsd",
                        "docket_child": {
                          "parent": 61800875,
                          "name": "recap_document"
                        },
                        "description": "PACER Exemption Order entered as to Madison Shanks. Signed by Chief District Judge Jeffrey U. Beaverstock on 01/26/2022. (Attachments: # 1 Exhibit Application, # 2 Exhibit Application pt 2, # 3 Exhibit AO Recommendation). (cle) (Entered: 01/26/2022)",
                        "cause": "No cause code entered",
                        "absolute_url": "/docket/61800875/2/miscellaneous-minute-entry-orders-for-2022/",
                        "case_name_full": "",
                        "suitNature": "",
                        "assignedTo": "Jeffrey Uhlman Beaverstock",
                        "dateArgued": null,
                        "referredTo": null,
                        "cites": [],
                        "caseName": "Miscellaneous Minute Entry Orders for 2022",
                        "docket_id": 61800875,
                        "id": 191428049,
                        "page_count": null,
                        "document_type": "PACER Document",
                        "timestamp": "2024-05-18T22:13:55.554779",
                        "dateFiled": "2021-12-29",
                        "dateTerminated": null,
                        "docket_entry_id": 185917535,
                        "document_number": "2",
                        "pacer_case_id": "69389",
                        "entry_number": 2,
                        "jurisdictionType": "",
                        "date_created": "2022-01-26T21:21:33.776316+00:00",
                        "filepath_local": null,
                        "pacer_doc_id": "02103289557",
                        "court": "District Court, S.D. Alabama",
                        "entry_date_filed": "2022-01-26",
                        "juryDemand": "",
                        "is_available": false,
                        "referred_to_id": null,
                        "attachment_number": null,
                        "docketNumber": "1:22-mc-01000"
                      },
                      "highlight": {
                        "short_description": [
                          "<mark>Order</mark>"
                        ],
                        "plain_text": [
                          ""
                        ],
                        "description": [
                          "PACER Exemption <mark>Order</mark> entered as to Madison Shanks. Signed by Chief District Judge Jeffrey U. Beaverstock on 01/26/2022. (Attachments: # 1 Exhibit Application, # 2 Exhibit Application pt 2, # 3 Exhibit AO Recommendation). (cle) (Entered: 01/26/2022)"
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_189811292",
                      "_score": 81.49818,
                      "_routing": "61800875",
                      "_source": {
                        "court_citation_string": "S.D. Ala.",
                        "short_description": "Order",
                        "chapter": null,
                        "trustee_str": null,
                        "assigned_to_id": 8545,
                        "court_id": "alsd",
                        "docket_child": {
                          "parent": 61800875,
                          "name": "recap_document"
                        },
                        "description": "Order In Re: The Judiciary Video Teleconferencing for Criminal Proceedings during the National Emergency caused by the Coronavirus Disease (COVID-19). This order is effective for no more than 90 days, unless extended by further order of the court. Signed by Chief District Judge Jeffrey U. Beaverstock on 1/7/2022. (cle) (Entered: 01/07/2022)",
                        "cause": "No cause code entered",
                        "absolute_url": "/docket/61800875/1/miscellaneous-minute-entry-orders-for-2022/",
                        "case_name_full": "",
                        "suitNature": "",
                        "assignedTo": "Jeffrey Uhlman Beaverstock",
                        "dateArgued": null,
                        "referredTo": null,
                        "cites": [],
                        "caseName": "Miscellaneous Minute Entry Orders for 2022",
                        "docket_id": 61800875,
                        "id": 189811292,
                        "page_count": null,
                        "document_type": "PACER Document",
                        "timestamp": "2024-05-18T16:53:06.993945",
                        "dateFiled": "2021-12-29",
                        "dateTerminated": null,
                        "docket_entry_id": 184326440,
                        "document_number": "1",
                        "pacer_case_id": "69389",
                        "entry_number": 1,
                        "jurisdictionType": "",
                        "date_created": "2022-01-07T19:17:14.887599+00:00",
                        "filepath_local": null,
                        "pacer_doc_id": "02103280855",
                        "court": "District Court, S.D. Alabama",
                        "entry_date_filed": "2022-01-07",
                        "juryDemand": "",
                        "is_available": false,
                        "referred_to_id": null,
                        "attachment_number": null,
                        "docketNumber": "1:22-mc-01000"
                      },
                      "highlight": {
                        "short_description": [
                          "<mark>Order</mark>"
                        ],
                        "plain_text": [
                          ""
                        ],
                        "description": [
                          "<mark>Order</mark> In Re: The Judiciary Video Teleconferencing for Criminal Proceedings during the National Emergency caused by the Coronavirus Disease (COVID-19). This order is effective for no more than 90 days, unless extended by further order of the court. Signed by Chief District Judge Jeffrey U. Beaverstock on 1/7/2022. (cle) (Entered: 01/07/2022)"
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_198503103",
                      "_score": 81.49818,
                      "_routing": "61800875",
                      "_source": {
                        "court_citation_string": "S.D. Ala.",
                        "short_description": "Order",
                        "chapter": null,
                        "trustee_str": null,
                        "assigned_to_id": 8545,
                        "court_id": "alsd",
                        "docket_child": {
                          "parent": 61800875,
                          "name": "recap_document"
                        },
                        "description": "Order entered designating Jerry C. Oldshue to serve as the Chief Judge of the Bankruptcy Court for the Southern District of Alabama for a period of seven years beginning June 1, 2022, with his term ending May 31, 2029. Signed by Chief District Judge Jeffrey U. Beaverstock on 4/18/22. (cle) (Entered: 04/18/2022)",
                        "cause": "No cause code entered",
                        "absolute_url": "/docket/61800875/5/miscellaneous-minute-entry-orders-for-2022/",
                        "case_name_full": "",
                        "suitNature": "",
                        "assignedTo": "Jeffrey Uhlman Beaverstock",
                        "dateArgued": null,
                        "referredTo": null,
                        "cites": [],
                        "caseName": "Miscellaneous Minute Entry Orders for 2022",
                        "docket_id": 61800875,
                        "id": 198503103,
                        "page_count": null,
                        "document_type": "PACER Document",
                        "timestamp": "2024-05-19T20:29:49.349448",
                        "dateFiled": "2021-12-29",
                        "dateTerminated": null,
                        "docket_entry_id": 192885367,
                        "document_number": "5",
                        "pacer_case_id": "69389",
                        "entry_number": 5,
                        "jurisdictionType": "",
                        "date_created": "2022-04-19T00:10:03.135175+00:00",
                        "filepath_local": null,
                        "pacer_doc_id": "02103327818",
                        "court": "District Court, S.D. Alabama",
                        "entry_date_filed": "2022-04-18",
                        "juryDemand": "",
                        "is_available": false,
                        "referred_to_id": null,
                        "attachment_number": null,
                        "docketNumber": "1:22-mc-01000"
                      },
                      "highlight": {
                        "short_description": [
                          "<mark>Order</mark>"
                        ],
                        "plain_text": [
                          ""
                        ],
                        "description": [
                          "<mark>Order</mark> entered designating Jerry C. Oldshue to serve as the Chief Judge of the Bankruptcy Court for the Southern District of Alabama for a period of seven years beginning June 1, 2022, with his term ending May 31, 2029. Signed by Chief District Judge Jeffrey U. Beaverstock on 4/18/22. (cle) (Entered: 04/18/2022)"
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_219435666",
                      "_score": 80.86473,
                      "_routing": "61800875",
                      "_source": {
                        "court_citation_string": "S.D. Ala.",
                        "short_description": "Order",
                        "chapter": null,
                        "trustee_str": null,
                        "assigned_to_id": 8545,
                        "court_id": "alsd",
                        "docket_child": {
                          "parent": 61800875,
                          "name": "recap_document"
                        },
                        "description": "",
                        "cause": "No cause code entered",
                        "absolute_url": "/docket/61800875/11/miscellaneous-minute-entry-orders-for-2022/",
                        "case_name_full": "",
                        "suitNature": "",
                        "assignedTo": "Jeffrey Uhlman Beaverstock",
                        "dateArgued": null,
                        "referredTo": null,
                        "cites": [],
                        "caseName": "Miscellaneous Minute Entry Orders for 2022",
                        "docket_id": 61800875,
                        "id": 219435666,
                        "page_count": null,
                        "document_type": "PACER Document",
                        "timestamp": "2024-05-22T22:18:35.129963",
                        "dateFiled": "2021-12-29",
                        "dateTerminated": null,
                        "docket_entry_id": 213465597,
                        "document_number": "11",
                        "pacer_case_id": "69389",
                        "entry_number": 11,
                        "jurisdictionType": "",
                        "date_created": "2022-12-06T20:10:08.032005+00:00",
                        "filepath_local": null,
                        "pacer_doc_id": "02103430502",
                        "court": "District Court, S.D. Alabama",
                        "entry_date_filed": "2022-12-06",
                        "juryDemand": "",
                        "is_available": false,
                        "referred_to_id": null,
                        "attachment_number": null,
                        "docketNumber": "1:22-mc-01000"
                      },
                      "highlight": {
                        "short_description": [
                          "<mark>Order</mark>"
                        ],
                        "plain_text": [
                          ""
                        ]
                      }
                    }
                  ]
                }
              }
            }
          },
          {
            "_index": "recap_vectors",
            "_id": "6379908",
            "_score": 161.08247,
            "_source": {
              "docket_slug": "miscellaneous-minute-entry-orders-for-2018",
              "docket_absolute_url": "/docket/6379908/miscellaneous-minute-entry-orders-for-2018/",
              "court_exact": "alsd",
              "party_id": [
                2018776
              ],
              "party": [
                "Charles R. Diard, Jr."
              ],
              "attorney_id": [],
              "attorney": [],
              "firm_id": [],
              "firm": [],
              "docket_child": "docket",
              "timestamp": "2024-03-18T19:25:36.257660",
              "docket_id": 6379908,
              "caseName": "Miscellaneous Minute Entry Orders for 2018",
              "case_name_full": "",
              "docketNumber": "1:18-mc-01000",
              "suitNature": "",
              "cause": "No cause code entered",
              "juryDemand": "",
              "jurisdictionType": "",
              "dateArgued": null,
              "dateFiled": "2017-12-21",
              "dateTerminated": null,
              "assignedTo": "Kristi DuBose",
              "assigned_to_id": 926,
              "referredTo": null,
              "referred_to_id": null,
              "court": "District Court, S.D. Alabama",
              "court_id": "alsd",
              "court_citation_string": "S.D. Ala.",
              "chapter": null,
              "trustee_str": null,
              "date_created": "2018-05-01T00:02:42.217758+00:00",
              "pacer_case_id": "61974"
            },
            "highlight": {
              "caseName": [
                "Miscellaneous <mark>Minute</mark> Entry <mark>Orders</mark> for 2018"
              ]
            },
            "inner_hits": {
              "filter_query_inner_recap_document": {
                "hits": {
                  "total": {
                    "value": 6,
                    "relation": "eq"
                  },
                  "max_score": 81.374954,
                  "hits": [
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_27350818",
                      "_score": 81.374954,
                      "_routing": "6379908",
                      "_source": {
                        "id": 27350818,
                        "docket_entry_id": 25285248,
                        "description": "PACER Exemption Order entered as to Yanbai Andrea Wang. Signed by Chief Judge Kristi K. DuBose on 5/9/2018. (jlr) (Entered: 05/09/2018)",
                        "entry_number": 15,
                        "entry_date_filed": "2018-05-09",
                        "short_description": "Order",
                        "document_type": "PACER Document",
                        "document_number": "15",
                        "pacer_doc_id": "02102640286",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/6379908/15/miscellaneous-minute-entry-orders-for-2018/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 6379908
                        },
                        "timestamp": "2024-04-20T08:00:31.045681",
                        "docket_id": 6379908,
                        "caseName": "Miscellaneous Minute Entry Orders for 2018",
                        "case_name_full": "",
                        "docketNumber": "1:18-mc-01000",
                        "suitNature": "",
                        "cause": "No cause code entered",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2017-12-21",
                        "dateTerminated": null,
                        "assignedTo": "Kristi DuBose",
                        "assigned_to_id": 926,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2018-05-09T19:19:53.632842+00:00",
                        "pacer_case_id": "61974"
                      },
                      "highlight": {
                        "short_description": [
                          "<mark>Order</mark>"
                        ],
                        "plain_text": [
                          ""
                        ],
                        "description": [
                          "PACER Exemption <mark>Order</mark> entered as to Yanbai Andrea Wang. Signed by Chief Judge Kristi K. DuBose on 5/9/2018. (jlr) (Entered: 05/09/2018)"
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_31210034",
                      "_score": 81.374954,
                      "_routing": "6379908",
                      "_source": {
                        "id": 31210034,
                        "docket_entry_id": 29118486,
                        "description": "PACER Exemption Order entered as to Kate Stith. Signed by Chief Judge Kristi K. DuBose on 6/15/2018. (jlr) (Entered: 06/18/2018)",
                        "entry_number": 16,
                        "entry_date_filed": "2018-06-15",
                        "short_description": "Order",
                        "document_type": "PACER Document",
                        "document_number": "16",
                        "pacer_doc_id": "02102656700",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/6379908/16/miscellaneous-minute-entry-orders-for-2018/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 6379908
                        },
                        "timestamp": "2024-04-21T02:53:06.727630",
                        "docket_id": 6379908,
                        "caseName": "Miscellaneous Minute Entry Orders for 2018",
                        "case_name_full": "",
                        "docketNumber": "1:18-mc-01000",
                        "suitNature": "",
                        "cause": "No cause code entered",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2017-12-21",
                        "dateTerminated": null,
                        "assignedTo": "Kristi DuBose",
                        "assigned_to_id": 926,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2018-06-18T14:24:46.304264+00:00",
                        "pacer_case_id": "61974"
                      },
                      "highlight": {
                        "short_description": [
                          "<mark>Order</mark>"
                        ],
                        "plain_text": [
                          ""
                        ],
                        "description": [
                          "PACER Exemption <mark>Order</mark> entered as to Kate Stith. Signed by Chief Judge Kristi K. DuBose on 6/15/2018. (jlr) (Entered: 06/18/2018)"
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_32071489",
                      "_score": 80.568375,
                      "_routing": "6379908",
                      "_source": {
                        "id": 32071489,
                        "docket_entry_id": 29973158,
                        "description": "",
                        "entry_number": 17,
                        "entry_date_filed": "2018-06-26",
                        "short_description": "Order",
                        "document_type": "PACER Document",
                        "document_number": "17",
                        "pacer_doc_id": "02102660927",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/6379908/17/miscellaneous-minute-entry-orders-for-2018/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 6379908
                        },
                        "timestamp": "2024-04-21T07:12:57.091347",
                        "docket_id": 6379908,
                        "caseName": "Miscellaneous Minute Entry Orders for 2018",
                        "case_name_full": "",
                        "docketNumber": "1:18-mc-01000",
                        "suitNature": "",
                        "cause": "No cause code entered",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2017-12-21",
                        "dateTerminated": null,
                        "assignedTo": "Kristi DuBose",
                        "assigned_to_id": 926,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2018-06-26T19:23:34.340347+00:00",
                        "pacer_case_id": "61974"
                      },
                      "highlight": {
                        "short_description": [
                          "<mark>Order</mark>"
                        ],
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_26894748",
                      "_score": 79.70752,
                      "_routing": "6379908",
                      "_source": {
                        "id": 26894748,
                        "docket_entry_id": 24835234,
                        "description": "Designation of United States District Judge Callie V. S. Granade for Service in the Middle District of Alabama in case number 2:18-cv-00434, Henderson Lodge, LLC v. Lockheed Martin Corp. Signed by Chief Circuit Judge Ed Carnes. (jlr) (Entered: 04/30/2018)",
                        "entry_number": 14,
                        "entry_date_filed": "2018-04-30",
                        "short_description": "Designation of United States District Judge",
                        "document_type": "PACER Document",
                        "document_number": "14",
                        "pacer_doc_id": "02102636179",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/6379908/14/miscellaneous-minute-entry-orders-for-2018/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 6379908
                        },
                        "timestamp": "2024-04-20T05:22:15.314644",
                        "docket_id": 6379908,
                        "caseName": "Miscellaneous Minute Entry Orders for 2018",
                        "case_name_full": "",
                        "docketNumber": "1:18-mc-01000",
                        "suitNature": "",
                        "cause": "No cause code entered",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2017-12-21",
                        "dateTerminated": null,
                        "assignedTo": "Kristi DuBose",
                        "assigned_to_id": 926,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2018-05-01T00:02:42.240701+00:00",
                        "pacer_case_id": "61974"
                      },
                      "highlight": {
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_31236872",
                      "_score": 79.70752,
                      "_routing": "6379908",
                      "_source": {
                        "id": 31236872,
                        "docket_entry_id": 29145109,
                        "description": "Designation of United States District Judge M. Casey Rodgers to sit with the United States District Court for the Southern District of Alabama in the matter of Hewitt v. Sessions, 18-cv-14. Signed by Chief Circuit Judge Ed Carnes. (jlr) (Entered: 01/22/2018)",
                        "entry_number": 12,
                        "entry_date_filed": "2018-01-19",
                        "short_description": "",
                        "document_type": "PACER Document",
                        "document_number": "12",
                        "pacer_doc_id": "02102593594",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/6379908/12/miscellaneous-minute-entry-orders-for-2018/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 6379908
                        },
                        "timestamp": "2024-04-21T03:01:08.174909",
                        "docket_id": 6379908,
                        "caseName": "Miscellaneous Minute Entry Orders for 2018",
                        "case_name_full": "",
                        "docketNumber": "1:18-mc-01000",
                        "suitNature": "",
                        "cause": "No cause code entered",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2017-12-21",
                        "dateTerminated": null,
                        "assignedTo": "Kristi DuBose",
                        "assigned_to_id": 926,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2018-06-18T17:21:35.937392+00:00",
                        "pacer_case_id": "61974"
                      },
                      "highlight": {
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_31236873",
                      "_score": 79.70752,
                      "_routing": "6379908",
                      "_source": {
                        "id": 31236873,
                        "docket_entry_id": 29145110,
                        "description": "Appointment of Brandon Bates as Special Assistant United States Attorney for the Southern District of Alabama, filed by DOJ/USA as further set out. (nah) (Entered: 03/29/2018)",
                        "entry_number": 13,
                        "entry_date_filed": "2018-03-29",
                        "short_description": "",
                        "document_type": "PACER Document",
                        "document_number": "13",
                        "pacer_doc_id": "02102622001",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/6379908/13/miscellaneous-minute-entry-orders-for-2018/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 6379908
                        },
                        "timestamp": "2024-04-21T03:01:08.199181",
                        "docket_id": 6379908,
                        "caseName": "Miscellaneous Minute Entry Orders for 2018",
                        "case_name_full": "",
                        "docketNumber": "1:18-mc-01000",
                        "suitNature": "",
                        "cause": "No cause code entered",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2017-12-21",
                        "dateTerminated": null,
                        "assignedTo": "Kristi DuBose",
                        "assigned_to_id": 926,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2018-06-18T17:21:35.968772+00:00",
                        "pacer_case_id": "61974"
                      },
                      "highlight": {
                        "plain_text": [
                          ""
                        ]
                      }
                    }
                  ]
                }
              }
            }
          },
          {
            "_index": "recap_vectors",
            "_id": "26439639",
            "_score": 159.40717,
            "_source": {
              "docket_slug": "miscellaneous-minute-entry-orders-for-2016",
              "docket_absolute_url": "/docket/26439639/miscellaneous-minute-entry-orders-for-2016/",
              "court_exact": "alsd",
              "party_id": [],
              "party": [],
              "attorney_id": [],
              "attorney": [],
              "firm_id": [],
              "firm": [],
              "docket_child": "docket",
              "timestamp": "2024-03-21T05:12:06.668038",
              "docket_id": 26439639,
              "caseName": "Miscellaneous Minute Entry Orders for 2016",
              "case_name_full": "",
              "docketNumber": "1:16-mc-01000",
              "suitNature": "",
              "cause": "",
              "juryDemand": "",
              "jurisdictionType": "",
              "dateArgued": null,
              "dateFiled": "2015-12-23",
              "dateTerminated": null,
              "assignedTo": "William H. Steele",
              "assigned_to_id": 3093,
              "referredTo": null,
              "referred_to_id": null,
              "court": "District Court, S.D. Alabama",
              "court_id": "alsd",
              "court_citation_string": "S.D. Ala.",
              "chapter": null,
              "trustee_str": null,
              "date_created": "2020-12-29T17:10:28.952070+00:00",
              "pacer_case_id": "58843"
            },
            "highlight": {
              "caseName": [
                "Miscellaneous <mark>Minute</mark> Entry <mark>Orders</mark> for 2016"
              ]
            },
            "inner_hits": {
              "filter_query_inner_recap_document": {
                "hits": {
                  "total": {
                    "value": 8,
                    "relation": "eq"
                  },
                  "max_score": 80.13353,
                  "hits": [
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_296365762",
                      "_score": 80.13353,
                      "_routing": "26439639",
                      "_source": {
                        "id": 296365762,
                        "docket_entry_id": 290146670,
                        "description": "",
                        "entry_number": 3,
                        "entry_date_filed": "2016-05-16",
                        "short_description": "Order",
                        "document_type": "PACER Document",
                        "document_number": "3",
                        "pacer_doc_id": "02102334812",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/26439639/3/miscellaneous-minute-entry-orders-for-2016/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 26439639
                        },
                        "timestamp": "2024-06-02T14:17:30.662016",
                        "docket_id": 26439639,
                        "caseName": "Miscellaneous Minute Entry Orders for 2016",
                        "case_name_full": "",
                        "docketNumber": "1:16-mc-01000",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2015-12-23",
                        "dateTerminated": null,
                        "assignedTo": "William H. Steele",
                        "assigned_to_id": 3093,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2023-04-23T20:15:11.727039+00:00",
                        "pacer_case_id": "58843"
                      },
                      "highlight": {
                        "short_description": [
                          "<mark>Order</mark>"
                        ],
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_313777714",
                      "_score": 80.13353,
                      "_routing": "26439639",
                      "_source": {
                        "id": 313777714,
                        "docket_entry_id": 307535606,
                        "description": "",
                        "entry_number": 8,
                        "entry_date_filed": "2016-11-16",
                        "short_description": "Order",
                        "document_type": "PACER Document",
                        "document_number": "8",
                        "pacer_doc_id": "02102413530",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/26439639/8/miscellaneous-minute-entry-orders-for-2016/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 26439639
                        },
                        "timestamp": "2024-06-05T04:42:17.683244",
                        "docket_id": 26439639,
                        "caseName": "Miscellaneous Minute Entry Orders for 2016",
                        "case_name_full": "",
                        "docketNumber": "1:16-mc-01000",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2015-12-23",
                        "dateTerminated": null,
                        "assignedTo": "William H. Steele",
                        "assigned_to_id": 3093,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2023-05-04T04:18:38.229373+00:00",
                        "pacer_case_id": "58843"
                      },
                      "highlight": {
                        "short_description": [
                          "<mark>Order</mark>"
                        ],
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_307679342",
                      "_score": 80.13353,
                      "_routing": "26439639",
                      "_source": {
                        "id": 307679342,
                        "docket_entry_id": 301445351,
                        "description": "",
                        "entry_number": 6,
                        "entry_date_filed": "2016-09-13",
                        "short_description": "Order",
                        "document_type": "PACER Document",
                        "document_number": "6",
                        "pacer_doc_id": "02102387752",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/26439639/6/miscellaneous-minute-entry-orders-for-2016/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 26439639
                        },
                        "timestamp": "2024-06-04T09:52:38.652881",
                        "docket_id": 26439639,
                        "caseName": "Miscellaneous Minute Entry Orders for 2016",
                        "case_name_full": "",
                        "docketNumber": "1:16-mc-01000",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2015-12-23",
                        "dateTerminated": null,
                        "assignedTo": "William H. Steele",
                        "assigned_to_id": 3093,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2023-04-30T14:29:37.780552+00:00",
                        "pacer_case_id": "58843"
                      },
                      "highlight": {
                        "short_description": [
                          "<mark>Order</mark>"
                        ],
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_294299791",
                      "_score": 80.13353,
                      "_routing": "26439639",
                      "_source": {
                        "id": 294299791,
                        "docket_entry_id": 288081967,
                        "description": "",
                        "entry_number": 2,
                        "entry_date_filed": "2016-04-22",
                        "short_description": "Order",
                        "document_type": "PACER Document",
                        "document_number": "2",
                        "pacer_doc_id": "02102324765",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/26439639/2/miscellaneous-minute-entry-orders-for-2016/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 26439639
                        },
                        "timestamp": "2024-06-02T05:37:05.123785",
                        "docket_id": 26439639,
                        "caseName": "Miscellaneous Minute Entry Orders for 2016",
                        "case_name_full": "",
                        "docketNumber": "1:16-mc-01000",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2015-12-23",
                        "dateTerminated": null,
                        "assignedTo": "William H. Steele",
                        "assigned_to_id": 3093,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2023-04-22T17:06:45.376058+00:00",
                        "pacer_case_id": "58843"
                      },
                      "highlight": {
                        "short_description": [
                          "<mark>Order</mark>"
                        ],
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_286556582",
                      "_score": 79.273636,
                      "_routing": "26439639",
                      "_source": {
                        "id": 286556582,
                        "docket_entry_id": 280347397,
                        "description": "",
                        "entry_number": 1,
                        "entry_date_filed": "2016-02-03",
                        "short_description": "Remark",
                        "document_type": "PACER Document",
                        "document_number": "1",
                        "pacer_doc_id": "02102290815",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/26439639/1/miscellaneous-minute-entry-orders-for-2016/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 26439639
                        },
                        "timestamp": "2024-05-31T18:47:23.647582",
                        "docket_id": 26439639,
                        "caseName": "Miscellaneous Minute Entry Orders for 2016",
                        "case_name_full": "",
                        "docketNumber": "1:16-mc-01000",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2015-12-23",
                        "dateTerminated": null,
                        "assignedTo": "William H. Steele",
                        "assigned_to_id": 3093,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2023-04-17T23:55:02.739792+00:00",
                        "pacer_case_id": "58843"
                      },
                      "highlight": {
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_304806677",
                      "_score": 79.273636,
                      "_routing": "26439639",
                      "_source": {
                        "id": 304806677,
                        "docket_entry_id": 298574388,
                        "description": "",
                        "entry_number": 5,
                        "entry_date_filed": "2016-08-11",
                        "short_description": "Remark",
                        "document_type": "PACER Document",
                        "document_number": "5",
                        "pacer_doc_id": "02102374054",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/26439639/5/miscellaneous-minute-entry-orders-for-2016/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 26439639
                        },
                        "timestamp": "2024-06-03T23:09:11.731862",
                        "docket_id": 26439639,
                        "caseName": "Miscellaneous Minute Entry Orders for 2016",
                        "case_name_full": "",
                        "docketNumber": "1:16-mc-01000",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2015-12-23",
                        "dateTerminated": null,
                        "assignedTo": "William H. Steele",
                        "assigned_to_id": 3093,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2023-04-28T22:26:26.893144+00:00",
                        "pacer_case_id": "58843"
                      },
                      "highlight": {
                        "plain_text": [
                          ""
                        ]
                      }
                    }
                  ]
                }
              }
            }
          },
          {
            "_index": "recap_vectors",
            "_id": "16283935",
            "_score": 159.29584,
            "_source": {
              "docket_slug": "miscellaneous-minute-entry-orders-for-2017",
              "docket_absolute_url": "/docket/16283935/miscellaneous-minute-entry-orders-for-2017/",
              "court_exact": "alsd",
              "party_id": [],
              "party": [],
              "attorney_id": [],
              "attorney": [],
              "firm_id": [],
              "firm": [],
              "docket_child": "docket",
              "timestamp": "2024-03-20T02:29:20.341935",
              "docket_id": 16283935,
              "caseName": "Miscellaneous Minute Entry Orders for 2017",
              "case_name_full": "",
              "docketNumber": "1:17-mc-01000",
              "suitNature": "",
              "cause": "",
              "juryDemand": "",
              "jurisdictionType": "",
              "dateArgued": null,
              "dateFiled": "2017-01-01",
              "dateTerminated": null,
              "assignedTo": "Kristi DuBose",
              "assigned_to_id": 926,
              "referredTo": null,
              "referred_to_id": null,
              "court": "District Court, S.D. Alabama",
              "court_id": "alsd",
              "court_citation_string": "S.D. Ala.",
              "chapter": null,
              "trustee_str": null,
              "date_created": "2019-10-02T21:22:54.646532+00:00",
              "pacer_case_id": "60459"
            },
            "highlight": {
              "caseName": [
                "Miscellaneous <mark>Minute</mark> Entry <mark>Orders</mark> for 2017"
              ]
            },
            "inner_hits": {
              "filter_query_inner_recap_document": {
                "hits": {
                  "total": {
                    "value": 12,
                    "relation": "eq"
                  },
                  "max_score": 80.076584,
                  "hits": [
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_329197884",
                      "_score": 80.076584,
                      "_routing": "16283935",
                      "_source": {
                        "id": 329197884,
                        "docket_entry_id": 322937461,
                        "description": "",
                        "entry_number": 5,
                        "entry_date_filed": "2017-05-02",
                        "short_description": "Order",
                        "document_type": "PACER Document",
                        "document_number": "5",
                        "pacer_doc_id": "02102483443",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/16283935/5/miscellaneous-minute-entry-orders-for-2017/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 16283935
                        },
                        "timestamp": "2024-06-07T19:00:53.811731",
                        "docket_id": 16283935,
                        "caseName": "Miscellaneous Minute Entry Orders for 2017",
                        "case_name_full": "",
                        "docketNumber": "1:17-mc-01000",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2017-01-01",
                        "dateTerminated": null,
                        "assignedTo": "Kristi DuBose",
                        "assigned_to_id": 926,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2023-05-13T00:37:17.508213+00:00",
                        "pacer_case_id": "60459"
                      },
                      "highlight": {
                        "short_description": [
                          "<mark>Order</mark>"
                        ],
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_334911200",
                      "_score": 80.076584,
                      "_routing": "16283935",
                      "_source": {
                        "id": 334911200,
                        "docket_entry_id": 328646973,
                        "description": "",
                        "entry_number": 6,
                        "entry_date_filed": "2017-07-03",
                        "short_description": "Order",
                        "document_type": "PACER Document",
                        "document_number": "6",
                        "pacer_doc_id": "02102509111",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/16283935/6/miscellaneous-minute-entry-orders-for-2017/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 16283935
                        },
                        "timestamp": "2024-06-08T11:22:04.797046",
                        "docket_id": 16283935,
                        "caseName": "Miscellaneous Minute Entry Orders for 2017",
                        "case_name_full": "",
                        "docketNumber": "1:17-mc-01000",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2017-01-01",
                        "dateTerminated": null,
                        "assignedTo": "Kristi DuBose",
                        "assigned_to_id": 926,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2023-05-16T07:31:00.741296+00:00",
                        "pacer_case_id": "60459"
                      },
                      "highlight": {
                        "short_description": [
                          "<mark>Order</mark>"
                        ],
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_339822040",
                      "_score": 80.076584,
                      "_routing": "16283935",
                      "_source": {
                        "id": 339822040,
                        "docket_entry_id": 333519318,
                        "description": "",
                        "entry_number": 7,
                        "entry_date_filed": "2017-08-15",
                        "short_description": "Order",
                        "document_type": "PACER Document",
                        "document_number": "7",
                        "pacer_doc_id": "02102528266",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/16283935/7/miscellaneous-minute-entry-orders-for-2017/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 16283935
                        },
                        "timestamp": "2024-06-09T01:24:49.909928",
                        "docket_id": 16283935,
                        "caseName": "Miscellaneous Minute Entry Orders for 2017",
                        "case_name_full": "",
                        "docketNumber": "1:17-mc-01000",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2017-01-01",
                        "dateTerminated": null,
                        "assignedTo": "Kristi DuBose",
                        "assigned_to_id": 926,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2023-05-26T19:26:19.681795+00:00",
                        "pacer_case_id": "60459"
                      },
                      "highlight": {
                        "short_description": [
                          "<mark>Order</mark>"
                        ],
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_344846558",
                      "_score": 80.076584,
                      "_routing": "16283935",
                      "_source": {
                        "id": 344846558,
                        "docket_entry_id": 338533423,
                        "description": "",
                        "entry_number": 10,
                        "entry_date_filed": "2017-10-10",
                        "short_description": "Order",
                        "document_type": "PACER Document",
                        "document_number": "10",
                        "pacer_doc_id": "02102551719",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/16283935/10/miscellaneous-minute-entry-orders-for-2017/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 16283935
                        },
                        "timestamp": "2024-06-09T14:57:09.661016",
                        "docket_id": 16283935,
                        "caseName": "Miscellaneous Minute Entry Orders for 2017",
                        "case_name_full": "",
                        "docketNumber": "1:17-mc-01000",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2017-01-01",
                        "dateTerminated": null,
                        "assignedTo": "Kristi DuBose",
                        "assigned_to_id": 926,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2023-05-30T20:29:25.047693+00:00",
                        "pacer_case_id": "60459"
                      },
                      "highlight": {
                        "short_description": [
                          "<mark>Order</mark>"
                        ],
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_344664544",
                      "_score": 80.076584,
                      "_routing": "16283935",
                      "_source": {
                        "id": 344664544,
                        "docket_entry_id": 338352461,
                        "description": "",
                        "entry_number": 9,
                        "entry_date_filed": "2017-10-06",
                        "short_description": "Order",
                        "document_type": "PACER Document",
                        "document_number": "9",
                        "pacer_doc_id": "02102551446",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/16283935/9/miscellaneous-minute-entry-orders-for-2017/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 16283935
                        },
                        "timestamp": "2024-06-09T14:25:21.761932",
                        "docket_id": 16283935,
                        "caseName": "Miscellaneous Minute Entry Orders for 2017",
                        "case_name_full": "",
                        "docketNumber": "1:17-mc-01000",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2017-01-01",
                        "dateTerminated": null,
                        "assignedTo": "Kristi DuBose",
                        "assigned_to_id": 926,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2023-05-30T16:51:53.865399+00:00",
                        "pacer_case_id": "60459"
                      },
                      "highlight": {
                        "short_description": [
                          "<mark>Order</mark>"
                        ],
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_318991822",
                      "_score": 79.99076,
                      "_routing": "16283935",
                      "_source": {
                        "id": 318991822,
                        "docket_entry_id": 312741748,
                        "description": "",
                        "entry_number": 1,
                        "entry_date_filed": "2017-01-17",
                        "short_description": "Standing Order",
                        "document_type": "PACER Document",
                        "document_number": "1",
                        "pacer_doc_id": "02102437727",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/16283935/1/miscellaneous-minute-entry-orders-for-2017/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 16283935
                        },
                        "timestamp": "2024-06-05T21:18:15.248467",
                        "docket_id": 16283935,
                        "caseName": "Miscellaneous Minute Entry Orders for 2017",
                        "case_name_full": "",
                        "docketNumber": "1:17-mc-01000",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2017-01-01",
                        "dateTerminated": null,
                        "assignedTo": "Kristi DuBose",
                        "assigned_to_id": 926,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2023-05-07T03:23:20.126244+00:00",
                        "pacer_case_id": "60459"
                      },
                      "highlight": {
                        "short_description": [
                          "Standing <mark>Order</mark>"
                        ],
                        "plain_text": [
                          ""
                        ]
                      }
                    }
                  ]
                }
              }
            }
          },
          {
            "_index": "recap_vectors",
            "_id": "66703184",
            "_score": 158.68115,
            "_source": {
              "docket_slug": "miscellaneous-minute-entry-orders-for-2023",
              "docket_absolute_url": "/docket/66703184/miscellaneous-minute-entry-orders-for-2023/",
              "court_exact": "alsd",
              "party_id": [],
              "party": [],
              "attorney_id": [],
              "attorney": [],
              "firm_id": [],
              "firm": [],
              "docket_child": "docket",
              "timestamp": "2024-03-27T05:09:26.082370",
              "docket_id": 66703184,
              "caseName": "Miscellaneous Minute Entry Orders for 2023",
              "case_name_full": "",
              "docketNumber": "1:23-mc-01000",
              "suitNature": "",
              "cause": "",
              "juryDemand": "",
              "jurisdictionType": "",
              "dateArgued": null,
              "dateFiled": "2022-12-30",
              "dateTerminated": null,
              "assignedTo": "Jeffrey Uhlman Beaverstock",
              "assigned_to_id": 8545,
              "referredTo": null,
              "referred_to_id": null,
              "court": "District Court, S.D. Alabama",
              "court_id": "alsd",
              "court_citation_string": "S.D. Ala.",
              "chapter": null,
              "trustee_str": null,
              "date_created": "2023-01-05T22:05:33.611786+00:00",
              "pacer_case_id": "71159"
            },
            "highlight": {
              "caseName": [
                "Miscellaneous <mark>Minute</mark> Entry <mark>Orders</mark> for 2023"
              ]
            },
            "inner_hits": {
              "filter_query_inner_recap_document": {
                "hits": {
                  "total": {
                    "value": 19,
                    "relation": "eq"
                  },
                  "max_score": 79.76976,
                  "hits": [
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_238050670",
                      "_score": 79.76976,
                      "_routing": "66703184",
                      "_source": {
                        "id": 238050670,
                        "docket_entry_id": 231902143,
                        "description": "",
                        "entry_number": 6,
                        "entry_date_filed": "2023-03-09",
                        "short_description": "Order",
                        "document_type": "PACER Document",
                        "document_number": "6",
                        "pacer_doc_id": "02103474289",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/66703184/6/miscellaneous-minute-entry-orders-for-2023/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 66703184
                        },
                        "timestamp": "2024-05-25T18:27:23.511919",
                        "docket_id": 66703184,
                        "caseName": "Miscellaneous Minute Entry Orders for 2023",
                        "case_name_full": "",
                        "docketNumber": "1:23-mc-01000",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2022-12-30",
                        "dateTerminated": null,
                        "assignedTo": "Jeffrey Uhlman Beaverstock",
                        "assigned_to_id": 8545,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2023-03-09T17:09:29.912597+00:00",
                        "pacer_case_id": "71159"
                      },
                      "highlight": {
                        "short_description": [
                          "<mark>Order</mark>"
                        ],
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_380497513",
                      "_score": 79.76976,
                      "_routing": "66703184",
                      "_source": {
                        "id": 380497513,
                        "docket_entry_id": 372953437,
                        "description": "",
                        "entry_number": 17,
                        "entry_date_filed": "2023-12-11",
                        "short_description": "Order",
                        "document_type": "PACER Document",
                        "document_number": "17",
                        "pacer_doc_id": "02103608186",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/66703184/17/miscellaneous-minute-entry-orders-for-2023/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 66703184
                        },
                        "timestamp": "2024-06-15T09:26:17.082839",
                        "docket_id": 66703184,
                        "caseName": "Miscellaneous Minute Entry Orders for 2023",
                        "case_name_full": "",
                        "docketNumber": "1:23-mc-01000",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2022-12-30",
                        "dateTerminated": null,
                        "assignedTo": "Jeffrey Uhlman Beaverstock",
                        "assigned_to_id": 8545,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2023-12-11T23:05:18.093008+00:00",
                        "pacer_case_id": "71159"
                      },
                      "highlight": {
                        "short_description": [
                          "<mark>Order</mark>"
                        ],
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_377579426",
                      "_score": 79.76976,
                      "_routing": "66703184",
                      "_source": {
                        "id": 377579426,
                        "docket_entry_id": 370193906,
                        "description": "",
                        "entry_number": 16,
                        "entry_date_filed": "2023-11-08",
                        "short_description": "Order",
                        "document_type": "PACER Document",
                        "document_number": "16",
                        "pacer_doc_id": "02103593593",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/66703184/16/miscellaneous-minute-entry-orders-for-2023/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 66703184
                        },
                        "timestamp": "2024-06-14T21:58:20.206389",
                        "docket_id": 66703184,
                        "caseName": "Miscellaneous Minute Entry Orders for 2023",
                        "case_name_full": "",
                        "docketNumber": "1:23-mc-01000",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2022-12-30",
                        "dateTerminated": null,
                        "assignedTo": "Jeffrey Uhlman Beaverstock",
                        "assigned_to_id": 8545,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2023-11-08T21:06:10.632122+00:00",
                        "pacer_case_id": "71159"
                      },
                      "highlight": {
                        "short_description": [
                          "<mark>Order</mark>"
                        ],
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_381150225",
                      "_score": 79.76976,
                      "_routing": "66703184",
                      "_source": {
                        "id": 381150225,
                        "docket_entry_id": 373595330,
                        "description": "",
                        "entry_number": 18,
                        "entry_date_filed": "2023-12-18",
                        "short_description": "Order",
                        "document_type": "PACER Document",
                        "document_number": "18",
                        "pacer_doc_id": "02103611882",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/66703184/18/miscellaneous-minute-entry-orders-for-2023/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 66703184
                        },
                        "timestamp": "2024-06-15T11:52:53.491952",
                        "docket_id": 66703184,
                        "caseName": "Miscellaneous Minute Entry Orders for 2023",
                        "case_name_full": "",
                        "docketNumber": "1:23-mc-01000",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2022-12-30",
                        "dateTerminated": null,
                        "assignedTo": "Jeffrey Uhlman Beaverstock",
                        "assigned_to_id": 8545,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2023-12-18T23:06:47.670420+00:00",
                        "pacer_case_id": "71159"
                      },
                      "highlight": {
                        "short_description": [
                          "<mark>Order</mark>"
                        ],
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_375672726",
                      "_score": 79.76976,
                      "_routing": "66703184",
                      "_source": {
                        "id": 375672726,
                        "docket_entry_id": 368340941,
                        "description": "",
                        "entry_number": 13,
                        "entry_date_filed": "2023-10-18",
                        "short_description": "Order",
                        "document_type": "PACER Document",
                        "document_number": "13",
                        "pacer_doc_id": "02103582728",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/66703184/13/miscellaneous-minute-entry-orders-for-2023/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 66703184
                        },
                        "timestamp": "2024-06-14T12:15:27.777972",
                        "docket_id": 66703184,
                        "caseName": "Miscellaneous Minute Entry Orders for 2023",
                        "case_name_full": "",
                        "docketNumber": "1:23-mc-01000",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2022-12-30",
                        "dateTerminated": null,
                        "assignedTo": "Jeffrey Uhlman Beaverstock",
                        "assigned_to_id": 8545,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2023-10-18T22:05:34.341807+00:00",
                        "pacer_case_id": "71159"
                      },
                      "highlight": {
                        "short_description": [
                          "<mark>Order</mark>"
                        ],
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_375858089",
                      "_score": 79.76976,
                      "_routing": "66703184",
                      "_source": {
                        "id": 375858089,
                        "docket_entry_id": 368520132,
                        "description": "",
                        "entry_number": 14,
                        "entry_date_filed": "2023-10-20",
                        "short_description": "Order",
                        "document_type": "PACER Document",
                        "document_number": "14",
                        "pacer_doc_id": "02103583546",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/66703184/14/miscellaneous-minute-entry-orders-for-2023/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 66703184
                        },
                        "timestamp": "2024-06-14T13:00:25.078740",
                        "docket_id": 66703184,
                        "caseName": "Miscellaneous Minute Entry Orders for 2023",
                        "case_name_full": "",
                        "docketNumber": "1:23-mc-01000",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2022-12-30",
                        "dateTerminated": null,
                        "assignedTo": "Jeffrey Uhlman Beaverstock",
                        "assigned_to_id": 8545,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2023-10-20T12:08:06.175039+00:00",
                        "pacer_case_id": "71159"
                      },
                      "highlight": {
                        "short_description": [
                          "<mark>Order</mark>"
                        ],
                        "plain_text": [
                          ""
                        ]
                      }
                    }
                  ]
                }
              }
            }
          },
          {
            "_index": "recap_vectors",
            "_id": "29098691",
            "_score": 149.711,
            "_source": {
              "docket_slug": "miscellaneous-minute-entry-orders-for-2021",
              "docket_absolute_url": "/docket/29098691/miscellaneous-minute-entry-orders-for-2021/",
              "court_exact": "alsd",
              "party_id": [],
              "party": [],
              "attorney_id": [],
              "attorney": [],
              "firm_id": [],
              "firm": [],
              "docket_child": "docket",
              "timestamp": "2024-03-21T11:15:34.278108",
              "docket_id": 29098691,
              "caseName": "Miscellaneous Minute Entry Orders for 2021",
              "case_name_full": "",
              "docketNumber": "1:21-mc-01000",
              "suitNature": "",
              "cause": "No cause code entered",
              "juryDemand": "",
              "jurisdictionType": "",
              "dateArgued": null,
              "dateFiled": "2021-01-01",
              "dateTerminated": null,
              "assignedTo": "Jeffrey Uhlman Beaverstock",
              "assigned_to_id": 8545,
              "referredTo": null,
              "referred_to_id": null,
              "court": "District Court, S.D. Alabama",
              "court_id": "alsd",
              "court_citation_string": "S.D. Ala.",
              "chapter": null,
              "trustee_str": null,
              "date_created": "2021-01-12T16:20:05.008941+00:00",
              "pacer_case_id": "67726"
            },
            "highlight": {
              "caseName": [
                "Miscellaneous <mark>Minute</mark> Entry <mark>Orders</mark> for 2021"
              ]
            },
            "inner_hits": {
              "filter_query_inner_recap_document": {
                "hits": {
                  "total": {
                    "value": 16,
                    "relation": "eq"
                  },
                  "max_score": 75.73755,
                  "hits": [
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_157754326",
                      "_score": 75.73755,
                      "_routing": "29098691",
                      "_source": {
                        "id": 157754326,
                        "docket_entry_id": 152721686,
                        "description": "GENERAL ORDER NO. 2021-002 Regarding Procedure for Selection, Empanelment and Service of Members of the Grand Jury.  Signed by Chief  Modified on 1/14/2021 (jlr).",
                        "entry_number": 2,
                        "entry_date_filed": "2021-01-13",
                        "short_description": "Order",
                        "document_type": "PACER Document",
                        "document_number": "2",
                        "pacer_doc_id": "02103114179",
                        "attachment_number": null,
                        "is_available": true,
                        "page_count": 1,
                        "filepath_local": "recap/gov.uscourts.alsd.67726/gov.uscourts.alsd.67726.2.0.pdf",
                        "absolute_url": "/docket/29098691/2/miscellaneous-minute-entry-orders-for-2021/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 29098691
                        },
                        "timestamp": "2024-05-14T01:19:08.020130",
                        "docket_id": 29098691,
                        "caseName": "Miscellaneous Minute Entry Orders for 2021",
                        "case_name_full": "",
                        "docketNumber": "1:21-mc-01000",
                        "suitNature": "",
                        "cause": "No cause code entered",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2021-01-01",
                        "dateTerminated": null,
                        "assignedTo": "Jeffrey Uhlman Beaverstock",
                        "assigned_to_id": 8545,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2021-01-15T00:23:29.571002+00:00",
                        "pacer_case_id": "67726"
                      },
                      "highlight": {
                        "short_description": [
                          "<mark>Order</mark>"
                        ],
                        "plain_text": [
                          """        FOR THE SOUTHERN DISTRICT OF ALABAMA

<mark>ORDER</mark> REGARDING PROCEDURE                        )   MISC"""
                        ],
                        "description": [
                          "GENERAL <mark>ORDER</mark> NO. 2021-002 Regarding Procedure for Selection, Empanelment and Service of Members of the Grand Jury.  Signed by Chief  Modified on 1/14/2021 (jlr)."
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_156936802",
                      "_score": 75.67967,
                      "_routing": "29098691",
                      "_source": {
                        "id": 156936802,
                        "docket_entry_id": 151938873,
                        "description": "GENERAL ORDER NO. 2021-001 In Re: Procedures for the Filing, Service, and Management of Highly Sensitive Documents.  Signed by Chief Judge Kristi K. DuBose on 1/14/2021.   (jlr)",
                        "entry_number": 1,
                        "entry_date_filed": "2021-01-14",
                        "short_description": "Order",
                        "document_type": "PACER Document",
                        "document_number": "1",
                        "pacer_doc_id": "02103112965",
                        "attachment_number": null,
                        "is_available": true,
                        "page_count": 5,
                        "filepath_local": "recap/gov.uscourts.alsd.67726/gov.uscourts.alsd.67726.1.0_2.pdf",
                        "absolute_url": "/docket/29098691/1/miscellaneous-minute-entry-orders-for-2021/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 29098691
                        },
                        "timestamp": "2024-05-13T22:11:10.824461",
                        "docket_id": 29098691,
                        "caseName": "Miscellaneous Minute Entry Orders for 2021",
                        "case_name_full": "",
                        "docketNumber": "1:21-mc-01000",
                        "suitNature": "",
                        "cause": "No cause code entered",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2021-01-01",
                        "dateTerminated": null,
                        "assignedTo": "Jeffrey Uhlman Beaverstock",
                        "assigned_to_id": 8545,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2021-01-12T16:20:05.047628+00:00",
                        "pacer_case_id": "67726"
                      },
                      "highlight": {
                        "short_description": [
                          "<mark>Order</mark>"
                        ],
                        "plain_text": [
                          """DOCUMENTS                          )    GENERAL <mark>ORDER</mark> NO. 2021-001

        WHEREAS, in response to"""
                        ],
                        "description": [
                          "GENERAL <mark>ORDER</mark> NO. 2021-001 In Re: Procedures for the Filing, Service, and Management of Highly Sensitive Documents.  Signed by Chief Judge Kristi K. DuBose on 1/14/2021.   (jlr)"
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_172090470",
                      "_score": 74.82093,
                      "_routing": "29098691",
                      "_source": {
                        "id": 172090470,
                        "docket_entry_id": 166867215,
                        "description": "",
                        "entry_number": 7,
                        "entry_date_filed": "2021-06-10",
                        "short_description": "Order",
                        "document_type": "PACER Document",
                        "document_number": "7",
                        "pacer_doc_id": "02103183024",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/29098691/7/miscellaneous-minute-entry-orders-for-2021/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 29098691
                        },
                        "timestamp": "2024-05-16T04:52:53.714967",
                        "docket_id": 29098691,
                        "caseName": "Miscellaneous Minute Entry Orders for 2021",
                        "case_name_full": "",
                        "docketNumber": "1:21-mc-01000",
                        "suitNature": "",
                        "cause": "No cause code entered",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2021-01-01",
                        "dateTerminated": null,
                        "assignedTo": "Jeffrey Uhlman Beaverstock",
                        "assigned_to_id": 8545,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2021-06-10T20:08:11.744537+00:00",
                        "pacer_case_id": "67726"
                      },
                      "highlight": {
                        "short_description": [
                          "<mark>Order</mark>"
                        ],
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_172987719",
                      "_score": 74.82093,
                      "_routing": "29098691",
                      "_source": {
                        "id": 172987719,
                        "docket_entry_id": 167754145,
                        "description": "",
                        "entry_number": 8,
                        "entry_date_filed": "2021-06-21",
                        "short_description": "Order",
                        "document_type": "PACER Document",
                        "document_number": "8",
                        "pacer_doc_id": "02103187356",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/29098691/8/miscellaneous-minute-entry-orders-for-2021/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 29098691
                        },
                        "timestamp": "2024-05-16T07:42:39.289677",
                        "docket_id": 29098691,
                        "caseName": "Miscellaneous Minute Entry Orders for 2021",
                        "case_name_full": "",
                        "docketNumber": "1:21-mc-01000",
                        "suitNature": "",
                        "cause": "No cause code entered",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2021-01-01",
                        "dateTerminated": null,
                        "assignedTo": "Jeffrey Uhlman Beaverstock",
                        "assigned_to_id": 8545,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2021-06-21T21:17:22.318158+00:00",
                        "pacer_case_id": "67726"
                      },
                      "highlight": {
                        "short_description": [
                          "<mark>Order</mark>"
                        ],
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_162335696",
                      "_score": 74.82093,
                      "_routing": "29098691",
                      "_source": {
                        "id": 162335696,
                        "docket_entry_id": 157240054,
                        "description": "",
                        "entry_number": 4,
                        "entry_date_filed": "2021-03-03",
                        "short_description": "Order",
                        "document_type": "PACER Document",
                        "document_number": "4",
                        "pacer_doc_id": "02103135730",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/29098691/4/miscellaneous-minute-entry-orders-for-2021/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 29098691
                        },
                        "timestamp": "2024-05-14T17:19:54.879962",
                        "docket_id": 29098691,
                        "caseName": "Miscellaneous Minute Entry Orders for 2021",
                        "case_name_full": "",
                        "docketNumber": "1:21-mc-01000",
                        "suitNature": "",
                        "cause": "No cause code entered",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2021-01-01",
                        "dateTerminated": null,
                        "assignedTo": "Jeffrey Uhlman Beaverstock",
                        "assigned_to_id": 8545,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2021-03-03T22:08:44.247787+00:00",
                        "pacer_case_id": "67726"
                      },
                      "highlight": {
                        "short_description": [
                          "<mark>Order</mark>"
                        ],
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_178932816",
                      "_score": 74.82093,
                      "_routing": "29098691",
                      "_source": {
                        "id": 178932816,
                        "docket_entry_id": 173614614,
                        "description": "",
                        "entry_number": 12,
                        "entry_date_filed": "2021-08-27",
                        "short_description": "Order",
                        "document_type": "PACER Document",
                        "document_number": "12",
                        "pacer_doc_id": "02103221152",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/29098691/12/miscellaneous-minute-entry-orders-for-2021/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 29098691
                        },
                        "timestamp": "2024-05-17T05:26:32.842015",
                        "docket_id": 29098691,
                        "caseName": "Miscellaneous Minute Entry Orders for 2021",
                        "case_name_full": "",
                        "docketNumber": "1:21-mc-01000",
                        "suitNature": "",
                        "cause": "No cause code entered",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2021-01-01",
                        "dateTerminated": null,
                        "assignedTo": "Jeffrey Uhlman Beaverstock",
                        "assigned_to_id": 8545,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2021-08-27T20:20:02.979038+00:00",
                        "pacer_case_id": "67726"
                      },
                      "highlight": {
                        "short_description": [
                          "<mark>Order</mark>"
                        ],
                        "plain_text": [
                          ""
                        ]
                      }
                    }
                  ]
                }
              }
            }
          },
          {
            "_index": "recap_vectors",
            "_id": "68292054",
            "_score": 148.79437,
            "_source": {
              "docket_slug": "miscellaneous-minute-entry-orders-for-2024",
              "docket_absolute_url": "/docket/68292054/miscellaneous-minute-entry-orders-for-2024/",
              "court_exact": "alsd",
              "party_id": [],
              "party": [],
              "attorney_id": [],
              "attorney": [],
              "firm_id": [],
              "firm": [],
              "docket_child": "docket",
              "timestamp": "2024-03-27T09:58:58.620435",
              "docket_id": 68292054,
              "caseName": "Miscellaneous Minute Entry Orders for 2024",
              "case_name_full": "",
              "docketNumber": "1:24-mc-01000",
              "suitNature": "",
              "cause": "",
              "juryDemand": "",
              "jurisdictionType": "",
              "dateArgued": null,
              "dateFiled": "2023-12-28",
              "dateTerminated": null,
              "assignedTo": "Jeffrey Uhlman Beaverstock",
              "assigned_to_id": 8545,
              "referredTo": null,
              "referred_to_id": null,
              "court": "District Court, S.D. Alabama",
              "court_id": "alsd",
              "court_citation_string": "S.D. Ala.",
              "chapter": null,
              "trustee_str": null,
              "date_created": "2024-02-28T20:06:51.435234+00:00",
              "pacer_case_id": "73152"
            },
            "highlight": {
              "caseName": [
                "Miscellaneous <mark>Minute</mark> Entry <mark>Orders</mark> for 2024"
              ]
            },
            "inner_hits": {
              "filter_query_inner_recap_document": {
                "hits": {
                  "total": {
                    "value": 11,
                    "relation": "eq"
                  },
                  "max_score": 74.82093,
                  "hits": [
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_406088795",
                      "_score": 74.82093,
                      "_routing": "68292054",
                      "_source": {
                        "id": 406088795,
                        "docket_entry_id": 396930911,
                        "description": "",
                        "entry_number": 11,
                        "entry_date_filed": "2024-07-19",
                        "short_description": "Order",
                        "document_type": "PACER Document",
                        "document_number": 11,
                        "pacer_doc_id": "02103703382",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/68292054/11/miscellaneous-minute-entry-orders-for-2024/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 68292054
                        },
                        "timestamp": "2024-07-19T13:08:27.854357",
                        "docket_id": 68292054,
                        "caseName": "Miscellaneous Minute Entry Orders for 2024",
                        "case_name_full": "",
                        "docketNumber": "1:24-mc-01000",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2023-12-28",
                        "dateTerminated": null,
                        "assignedTo": "Jeffrey Uhlman Beaverstock",
                        "assigned_to_id": 8545,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2024-07-19T13:08:27.800129+00:00",
                        "pacer_case_id": "73152",
                        "_related_instance_to_ignore": null
                      },
                      "highlight": {
                        "short_description": [
                          "<mark>Order</mark>"
                        ],
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_387463779",
                      "_score": 74.82093,
                      "_routing": "68292054",
                      "_source": {
                        "id": 387463779,
                        "docket_entry_id": 379728712,
                        "description": "",
                        "entry_number": 2,
                        "entry_date_filed": "2024-02-28",
                        "short_description": "Order",
                        "document_type": "PACER Document",
                        "document_number": "2",
                        "pacer_doc_id": "02103641027",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/68292054/2/miscellaneous-minute-entry-orders-for-2024/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 68292054
                        },
                        "timestamp": "2024-06-16T11:00:05.615915",
                        "docket_id": 68292054,
                        "caseName": "Miscellaneous Minute Entry Orders for 2024",
                        "case_name_full": "",
                        "docketNumber": "1:24-mc-01000",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2023-12-28",
                        "dateTerminated": null,
                        "assignedTo": "Jeffrey Uhlman Beaverstock",
                        "assigned_to_id": 8545,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2024-02-28T20:06:51.604239+00:00",
                        "pacer_case_id": "73152"
                      },
                      "highlight": {
                        "short_description": [
                          "<mark>Order</mark>"
                        ],
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_387463778",
                      "_score": 74.82093,
                      "_routing": "68292054",
                      "_source": {
                        "id": 387463778,
                        "docket_entry_id": 379728711,
                        "description": "",
                        "entry_number": 3,
                        "entry_date_filed": "2024-02-28",
                        "short_description": "Order",
                        "document_type": "PACER Document",
                        "document_number": "3",
                        "pacer_doc_id": "02103641033",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/68292054/3/miscellaneous-minute-entry-orders-for-2024/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 68292054
                        },
                        "timestamp": "2024-06-16T11:00:05.635126",
                        "docket_id": 68292054,
                        "caseName": "Miscellaneous Minute Entry Orders for 2024",
                        "case_name_full": "",
                        "docketNumber": "1:24-mc-01000",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2023-12-28",
                        "dateTerminated": null,
                        "assignedTo": "Jeffrey Uhlman Beaverstock",
                        "assigned_to_id": 8545,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2024-02-28T20:06:51.547664+00:00",
                        "pacer_case_id": "73152"
                      },
                      "highlight": {
                        "short_description": [
                          "<mark>Order</mark>"
                        ],
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_387463777",
                      "_score": 74.82093,
                      "_routing": "68292054",
                      "_source": {
                        "id": 387463777,
                        "docket_entry_id": 379728710,
                        "description": "",
                        "entry_number": 4,
                        "entry_date_filed": "2024-02-28",
                        "short_description": "Order",
                        "document_type": "PACER Document",
                        "document_number": "4",
                        "pacer_doc_id": "02103641039",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/68292054/4/miscellaneous-minute-entry-orders-for-2024/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 68292054
                        },
                        "timestamp": "2024-06-16T11:00:05.687346",
                        "docket_id": 68292054,
                        "caseName": "Miscellaneous Minute Entry Orders for 2024",
                        "case_name_full": "",
                        "docketNumber": "1:24-mc-01000",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2023-12-28",
                        "dateTerminated": null,
                        "assignedTo": "Jeffrey Uhlman Beaverstock",
                        "assigned_to_id": 8545,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2024-02-28T20:06:51.465126+00:00",
                        "pacer_case_id": "73152"
                      },
                      "highlight": {
                        "short_description": [
                          "<mark>Order</mark>"
                        ],
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_387463787",
                      "_score": 74.82093,
                      "_routing": "68292054",
                      "_source": {
                        "id": 387463787,
                        "docket_entry_id": 379728720,
                        "description": "",
                        "entry_number": 1,
                        "entry_date_filed": "2024-02-28",
                        "short_description": "Order",
                        "document_type": "PACER Document",
                        "document_number": "1",
                        "pacer_doc_id": "02103640966",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/68292054/1/miscellaneous-minute-entry-orders-for-2024/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 68292054
                        },
                        "timestamp": "2024-06-16T11:00:05.925134",
                        "docket_id": 68292054,
                        "caseName": "Miscellaneous Minute Entry Orders for 2024",
                        "case_name_full": "",
                        "docketNumber": "1:24-mc-01000",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2023-12-28",
                        "dateTerminated": null,
                        "assignedTo": "Jeffrey Uhlman Beaverstock",
                        "assigned_to_id": 8545,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2024-02-28T20:06:52.764960+00:00",
                        "pacer_case_id": "73152"
                      },
                      "highlight": {
                        "short_description": [
                          "<mark>Order</mark>"
                        ],
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_401124594",
                      "_score": 74.82093,
                      "_routing": "68292054",
                      "_source": {
                        "id": 401124594,
                        "docket_entry_id": 392106884,
                        "description": "",
                        "entry_number": 6,
                        "entry_date_filed": "2024-05-29",
                        "short_description": "Order",
                        "document_type": "PACER Document",
                        "document_number": "6",
                        "pacer_doc_id": "02103682724",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/68292054/6/miscellaneous-minute-entry-orders-for-2024/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 68292054
                        },
                        "timestamp": "2024-06-20T01:47:29.415305",
                        "docket_id": 68292054,
                        "caseName": "Miscellaneous Minute Entry Orders for 2024",
                        "case_name_full": "",
                        "docketNumber": "1:24-mc-01000",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2023-12-28",
                        "dateTerminated": null,
                        "assignedTo": "Jeffrey Uhlman Beaverstock",
                        "assigned_to_id": 8545,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2024-05-29T20:10:09.978464+00:00",
                        "pacer_case_id": "73152"
                      },
                      "highlight": {
                        "short_description": [
                          "<mark>Order</mark>"
                        ],
                        "plain_text": [
                          ""
                        ]
                      }
                    }
                  ]
                }
              }
            }
          },
          {
            "_index": "recap_vectors",
            "_id": "15034720",
            "_score": 148.32413,
            "_source": {
              "docket_slug": "miscellaneous-minute-entry-orders-for-2019",
              "docket_absolute_url": "/docket/15034720/miscellaneous-minute-entry-orders-for-2019/",
              "court_exact": "alsd",
              "party_id": [
                4936543
              ],
              "party": [
                "Charles R. Diard, Jr."
              ],
              "attorney_id": [],
              "attorney": [],
              "firm_id": [],
              "firm": [],
              "docket_child": "docket",
              "timestamp": "2024-03-19T22:48:07.173466",
              "docket_id": 15034720,
              "caseName": "Miscellaneous Minute Entry Orders for 2019",
              "case_name_full": "",
              "docketNumber": "1:19-mc-01000",
              "suitNature": "",
              "cause": "No cause code entered",
              "juryDemand": "",
              "jurisdictionType": "",
              "dateArgued": null,
              "dateFiled": "2018-12-21",
              "dateTerminated": null,
              "assignedTo": "Kristi DuBose",
              "assigned_to_id": 926,
              "referredTo": null,
              "referred_to_id": null,
              "court": "District Court, S.D. Alabama",
              "court_id": "alsd",
              "court_citation_string": "S.D. Ala.",
              "chapter": null,
              "trustee_str": null,
              "date_created": "2019-05-01T16:20:22.480478+00:00",
              "pacer_case_id": "63802"
            },
            "highlight": {
              "caseName": [
                "Miscellaneous <mark>Minute</mark> Entry <mark>Orders</mark> for 2019"
              ]
            },
            "inner_hits": {
              "filter_query_inner_recap_document": {
                "hits": {
                  "total": {
                    "value": 11,
                    "relation": "eq"
                  },
                  "max_score": 74.9673,
                  "hits": [
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_68317993",
                      "_score": 74.9673,
                      "_routing": "15034720",
                      "_source": {
                        "id": 68317993,
                        "docket_entry_id": 64187739,
                        "description": "Order entered reappointing Magistrate Judge Sonja F. Bivins to serve an eight-year term. Signed by Chief Judge Kristi K. DuBose on 2/8/2019. (jlr) (Entered: 05/01/2019)",
                        "entry_number": 4,
                        "entry_date_filed": "2019-02-08",
                        "short_description": "Order",
                        "document_type": "PACER Document",
                        "document_number": "4",
                        "pacer_doc_id": "02102801858",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/15034720/4/miscellaneous-minute-entry-orders-for-2019/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 15034720
                        },
                        "timestamp": "2024-04-29T00:04:44.682684",
                        "docket_id": 15034720,
                        "caseName": "Miscellaneous Minute Entry Orders for 2019",
                        "case_name_full": "",
                        "docketNumber": "1:19-mc-01000",
                        "suitNature": "",
                        "cause": "No cause code entered",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2018-12-21",
                        "dateTerminated": null,
                        "assignedTo": "Kristi DuBose",
                        "assigned_to_id": 926,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2019-05-01T16:20:22.498295+00:00",
                        "pacer_case_id": "63802"
                      },
                      "highlight": {
                        "short_description": [
                          "<mark>Order</mark>"
                        ],
                        "plain_text": [
                          ""
                        ],
                        "description": [
                          "<mark>Order</mark> entered reappointing Magistrate Judge Sonja F. Bivins to serve an eight-year term. Signed by Chief Judge Kristi K. DuBose on 2/8/2019. (jlr) (Entered: 05/01/2019)"
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_101479147",
                      "_score": 74.21436,
                      "_routing": "15034720",
                      "_source": {
                        "id": 101479147,
                        "docket_entry_id": 97255605,
                        "description": "",
                        "entry_number": 10,
                        "entry_date_filed": "2019-08-02",
                        "short_description": "Order",
                        "document_type": "PACER Document",
                        "document_number": "10",
                        "pacer_doc_id": "02102848068",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/15034720/10/miscellaneous-minute-entry-orders-for-2019/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 15034720
                        },
                        "timestamp": "2024-05-05T15:22:46.125598",
                        "docket_id": 15034720,
                        "caseName": "Miscellaneous Minute Entry Orders for 2019",
                        "case_name_full": "",
                        "docketNumber": "1:19-mc-01000",
                        "suitNature": "",
                        "cause": "No cause code entered",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2018-12-21",
                        "dateTerminated": null,
                        "assignedTo": "Kristi DuBose",
                        "assigned_to_id": 926,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2019-08-02T19:20:15.699212+00:00",
                        "pacer_case_id": "63802"
                      },
                      "highlight": {
                        "short_description": [
                          "<mark>Order</mark>"
                        ],
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_89564024",
                      "_score": 74.21436,
                      "_routing": "15034720",
                      "_source": {
                        "id": 89564024,
                        "docket_entry_id": 85402803,
                        "description": "",
                        "entry_number": 6,
                        "entry_date_filed": "2019-06-18",
                        "short_description": "Order",
                        "document_type": "PACER Document",
                        "document_number": "6",
                        "pacer_doc_id": "02102814950",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/15034720/6/miscellaneous-minute-entry-orders-for-2019/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 15034720
                        },
                        "timestamp": "2024-05-03T11:40:42.341487",
                        "docket_id": 15034720,
                        "caseName": "Miscellaneous Minute Entry Orders for 2019",
                        "case_name_full": "",
                        "docketNumber": "1:19-mc-01000",
                        "suitNature": "",
                        "cause": "No cause code entered",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2018-12-21",
                        "dateTerminated": null,
                        "assignedTo": "Kristi DuBose",
                        "assigned_to_id": 926,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2019-06-03T14:20:14.591974+00:00",
                        "pacer_case_id": "63802"
                      },
                      "highlight": {
                        "short_description": [
                          "<mark>Order</mark>"
                        ],
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_68324897",
                      "_score": 74.05716,
                      "_routing": "15034720",
                      "_source": {
                        "id": 68324897,
                        "docket_entry_id": 64194634,
                        "description": "Order entered In Re: Operation of the United States District Court for the Southern District of Alabama in the absence of funding authority by the United States Congress and/or the President. Signed by Chief Judge Kristi K. DuBose on 1/16/2019. (jlr) (Entered: 01/16/2019)",
                        "entry_number": 2,
                        "entry_date_filed": "2019-01-16",
                        "short_description": "",
                        "document_type": "PACER Document",
                        "document_number": "2",
                        "pacer_doc_id": "02102747812",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/15034720/2/miscellaneous-minute-entry-orders-for-2019/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 15034720
                        },
                        "timestamp": "2024-04-29T00:06:20.120295",
                        "docket_id": 15034720,
                        "caseName": "Miscellaneous Minute Entry Orders for 2019",
                        "case_name_full": "",
                        "docketNumber": "1:19-mc-01000",
                        "suitNature": "",
                        "cause": "No cause code entered",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2018-12-21",
                        "dateTerminated": null,
                        "assignedTo": "Kristi DuBose",
                        "assigned_to_id": 926,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2019-05-01T16:33:38.614617+00:00",
                        "pacer_case_id": "63802"
                      },
                      "highlight": {
                        "plain_text": [
                          ""
                        ],
                        "description": [
                          "<mark>Order</mark> entered In Re: Operation of the United States District Court for the Southern District of Alabama in the absence of funding authority by the United States Congress and/or the President. Signed by Chief Judge Kristi K. DuBose on 1/16/2019. (jlr) (Entered: 01/16/2019)"
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_68324896",
                      "_score": 74.02388,
                      "_routing": "15034720",
                      "_source": {
                        "id": 68324896,
                        "docket_entry_id": 64194633,
                        "description": "Order entered In Re: Operation of the United States District Court for the Southern District of Alabama in the absence of funding authority by the United States Congress and/or the President. Signed by Chief U. S. District Judge Kristi K. DuBose, and Chief U. S. Bankruptcy Judge Henry A. Callaway on 1/4/2019. (jlr) (Entered: 01/04/2019)",
                        "entry_number": 1,
                        "entry_date_filed": "2019-01-04",
                        "short_description": "",
                        "document_type": "PACER Document",
                        "document_number": "1",
                        "pacer_doc_id": "02102742047",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/15034720/1/miscellaneous-minute-entry-orders-for-2019/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 15034720
                        },
                        "timestamp": "2024-04-29T00:06:20.030315",
                        "docket_id": 15034720,
                        "caseName": "Miscellaneous Minute Entry Orders for 2019",
                        "case_name_full": "",
                        "docketNumber": "1:19-mc-01000",
                        "suitNature": "",
                        "cause": "No cause code entered",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2018-12-21",
                        "dateTerminated": null,
                        "assignedTo": "Kristi DuBose",
                        "assigned_to_id": 926,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2019-05-01T16:33:38.592652+00:00",
                        "pacer_case_id": "63802"
                      },
                      "highlight": {
                        "plain_text": [
                          ""
                        ],
                        "description": [
                          "<mark>Order</mark> entered In Re: Operation of the United States District Court for the Southern District of Alabama in the absence of funding authority by the United States Congress and/or the President. Signed by Chief U. S. District Judge Kristi K. DuBose, and Chief U. S. Bankruptcy Judge Henry A. Callaway on 1/4/2019. (jlr) (Entered: 01/04/2019)"
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_108014734",
                      "_score": 74,
                      "_routing": "15034720",
                      "_source": {
                        "id": 108014734,
                        "docket_entry_id": 103742070,
                        "description": "",
                        "entry_number": 11,
                        "entry_date_filed": "2019-09-26",
                        "short_description": "Order Appointing Magistrate Judge",
                        "document_type": "PACER Document",
                        "document_number": "11",
                        "pacer_doc_id": "02102882861",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/15034720/11/miscellaneous-minute-entry-orders-for-2019/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 15034720
                        },
                        "timestamp": "2024-05-06T19:10:49.412418",
                        "docket_id": 15034720,
                        "caseName": "Miscellaneous Minute Entry Orders for 2019",
                        "case_name_full": "",
                        "docketNumber": "1:19-mc-01000",
                        "suitNature": "",
                        "cause": "No cause code entered",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2018-12-21",
                        "dateTerminated": null,
                        "assignedTo": "Kristi DuBose",
                        "assigned_to_id": 926,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2019-09-26T22:23:21.861656+00:00",
                        "pacer_case_id": "63802"
                      },
                      "highlight": {
                        "short_description": [
                          "<mark>Order</mark> Appointing Magistrate Judge"
                        ],
                        "plain_text": [
                          ""
                        ]
                      }
                    }
                  ]
                }
              }
            }
          }
        ]
      },
      "status": 200
    },
    {
      "took": 6545,
      "timed_out": false,
      "_shards": {
        "total": 30,
        "successful": 30,
        "skipped": 0,
        "failed": 0
      },
      "hits": {
        "total": {
          "value": 1141806,
          "relation": "eq"
        },
        "max_score": null,
        "hits": []
      },
      "aggregations": {
        "unique_documents": {
          "value": 1131740
        }
      },
      "status": 200
    },
    {
      "took": 6118,
      "timed_out": false,
      "_shards": {
        "total": 30,
        "successful": 30,
        "skipped": 0,
        "failed": 0
      },
      "hits": {
        "total": {
          "value": 4098935,
          "relation": "eq"
        },
        "max_score": null,
        "hits": []
      },
      "aggregations": {
        "unique_documents": {
          "value": 4093056
        }
      },
      "status": 200
    }
  ]
}
mlissner commented 1 month ago

The third:

{
  "took": 17854,
  "responses": [
    {
      "took": 17854,
      "timed_out": false,
      "_shards": {
        "total": 30,
        "successful": 30,
        "skipped": 0,
        "failed": 0
      },
      "hits": {
        "total": {
          "value": 10000,
          "relation": "gte"
        },
        "max_score": 1,
        "hits": [
          {
            "_index": "recap_vectors",
            "_id": "32239530",
            "_score": 1,
            "_source": {
              "docket_slug": "united-states-v-davis",
              "docket_absolute_url": "/docket/32239530/united-states-v-davis/",
              "court_exact": "cod",
              "party_id": [
                13763874,
                13763875
              ],
              "party": [
                "USA",
                "Jerry Lynn Davis"
              ],
              "attorney_id": [
                9274490,
                9274491
              ],
              "attorney": [
                "Rae Lyn Randolph",
                "Robert E. Mydans"
              ],
              "firm_id": [
                51748,
                851949
              ],
              "firm": [
                "U.S. Attorney's Office-Denver",
                "Rae L. Randolph LLC, Law Office Of"
              ],
              "docket_child": "docket",
              "timestamp": "2024-03-23T01:51:08.405856",
              "docket_id": 32239530,
              "caseName": "United States v. Davis",
              "case_name_full": "",
              "docketNumber": "1:08-mj-00127",
              "suitNature": "",
              "cause": "",
              "juryDemand": "",
              "jurisdictionType": "",
              "dateArgued": null,
              "dateFiled": "2008-07-03",
              "dateTerminated": "2008-07-10",
              "assignedTo": "David L West",
              "assigned_to_id": 9933,
              "referredTo": null,
              "referred_to_id": null,
              "court": "District Court, D. Colorado",
              "court_id": "cod",
              "court_citation_string": "D. Colo.",
              "chapter": null,
              "trustee_str": null,
              "date_created": "2021-01-21T09:46:11.059815+00:00",
              "pacer_case_id": "108339"
            },
            "inner_hits": {
              "filter_query_inner_recap_document": {
                "hits": {
                  "total": {
                    "value": 18,
                    "relation": "eq"
                  },
                  "max_score": 1,
                  "hits": [
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_395373002",
                      "_score": 1,
                      "_routing": "32239530",
                      "_source": {
                        "id": 395373002,
                        "docket_entry_id": 386737183,
                        "description": "MAGISTRATE CASE TERMINATED as to Jerry Lynn Davis (tllsl, )",
                        "entry_number": null,
                        "entry_date_filed": "2008-07-10",
                        "short_description": "",
                        "document_type": "PACER Document",
                        "document_number": null,
                        "pacer_doc_id": "",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 32239530
                        },
                        "timestamp": "2024-06-18T07:36:46.801863",
                        "docket_id": 32239530,
                        "caseName": "United States v. Davis",
                        "case_name_full": "",
                        "docketNumber": "1:08-mj-00127",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2008-07-03",
                        "dateTerminated": "2008-07-10",
                        "assignedTo": "David L West",
                        "assigned_to_id": 9933,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, D. Colorado",
                        "court_id": "cod",
                        "court_citation_string": "D. Colo.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2024-04-28T02:53:24.315020+00:00",
                        "pacer_case_id": "108339"
                      },
                      "highlight": {
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_395372989",
                      "_score": 1,
                      "_routing": "32239530",
                      "_source": {
                        "id": 395372989,
                        "docket_entry_id": 386737173,
                        "description": "RULE 5 AFFIDAVIT as to Jerry Lynn Davis from the District of Middle District of Florida-Tampa. (Attachments: # 1 judgment, # 2 memo, # 3 petition) (tllsl, ) (Entered: 07/09/2008)",
                        "entry_number": 1,
                        "entry_date_filed": "2008-07-03",
                        "short_description": "",
                        "document_type": "PACER Document",
                        "document_number": "1",
                        "pacer_doc_id": "03901796820",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/32239530/1/united-states-v-davis/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 32239530
                        },
                        "timestamp": "2024-06-18T07:36:46.878436",
                        "docket_id": 32239530,
                        "caseName": "United States v. Davis",
                        "case_name_full": "",
                        "docketNumber": "1:08-mj-00127",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2008-07-03",
                        "dateTerminated": "2008-07-10",
                        "assignedTo": "David L West",
                        "assigned_to_id": 9933,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, D. Colorado",
                        "court_id": "cod",
                        "court_citation_string": "D. Colo.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2024-04-28T02:53:23.949087+00:00",
                        "pacer_case_id": "108339"
                      },
                      "highlight": {
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_395373001",
                      "_score": 1,
                      "_routing": "32239530",
                      "_source": {
                        "id": 395373001,
                        "docket_entry_id": 386737182,
                        "description": "Removal Documents Sent To the Middle District of Florida (tllsl, ) (Entered: 07/10/2008)",
                        "entry_number": 10,
                        "entry_date_filed": "2008-07-10",
                        "short_description": "",
                        "document_type": "PACER Document",
                        "document_number": "10",
                        "pacer_doc_id": "03901798154",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/32239530/10/united-states-v-davis/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 32239530
                        },
                        "timestamp": "2024-06-18T07:36:46.918291",
                        "docket_id": 32239530,
                        "caseName": "United States v. Davis",
                        "case_name_full": "",
                        "docketNumber": "1:08-mj-00127",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2008-07-03",
                        "dateTerminated": "2008-07-10",
                        "assignedTo": "David L West",
                        "assigned_to_id": 9933,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, D. Colorado",
                        "court_id": "cod",
                        "court_citation_string": "D. Colo.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2024-04-28T02:53:24.291332+00:00",
                        "pacer_case_id": "108339"
                      },
                      "highlight": {
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_395373003",
                      "_score": 1,
                      "_routing": "32239530",
                      "_source": {
                        "id": 395373003,
                        "docket_entry_id": 386737184,
                        "description": "Letter from the District of Florida, confirming receipt of documents (tllsl, ) (Entered: 07/22/2008)",
                        "entry_number": 11,
                        "entry_date_filed": "2008-07-21",
                        "short_description": "",
                        "document_type": "PACER Document",
                        "document_number": "11",
                        "pacer_doc_id": "03901815140",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/32239530/11/united-states-v-davis/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 32239530
                        },
                        "timestamp": "2024-06-18T07:36:46.958807",
                        "docket_id": 32239530,
                        "caseName": "United States v. Davis",
                        "case_name_full": "",
                        "docketNumber": "1:08-mj-00127",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2008-07-03",
                        "dateTerminated": "2008-07-10",
                        "assignedTo": "David L West",
                        "assigned_to_id": 9933,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, D. Colorado",
                        "court_id": "cod",
                        "court_citation_string": "D. Colo.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2024-04-28T02:53:24.350138+00:00",
                        "pacer_case_id": "108339"
                      },
                      "highlight": {
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_395373004",
                      "_score": 1,
                      "_routing": "32239530",
                      "_source": {
                        "id": 395373004,
                        "docket_entry_id": 386737185,
                        "description": "Return of Service on Commitment to Another District Received From the Middle District of Florida as to Jerry Lynn Davis (tllsl, ) (Entered: 08/04/2008)",
                        "entry_number": 12,
                        "entry_date_filed": "2008-08-04",
                        "short_description": "",
                        "document_type": "PACER Document",
                        "document_number": "12",
                        "pacer_doc_id": "03901833254",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/32239530/12/united-states-v-davis/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 32239530
                        },
                        "timestamp": "2024-06-18T07:36:46.979046",
                        "docket_id": 32239530,
                        "caseName": "United States v. Davis",
                        "case_name_full": "",
                        "docketNumber": "1:08-mj-00127",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2008-07-03",
                        "dateTerminated": "2008-07-10",
                        "assignedTo": "David L West",
                        "assigned_to_id": 9933,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, D. Colorado",
                        "court_id": "cod",
                        "court_citation_string": "D. Colo.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2024-04-28T02:53:24.381811+00:00",
                        "pacer_case_id": "108339"
                      },
                      "highlight": {
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_395373005",
                      "_score": 1,
                      "_routing": "32239530",
                      "_source": {
                        "id": 395373005,
                        "docket_entry_id": 386737186,
                        "description": "Ex Parte Document. (Attachments: # 1 Exparte Attachment Spreadsheet)(Dreves, Rae) (Entered: 10/21/2008)",
                        "entry_number": 13,
                        "entry_date_filed": "2008-10-21",
                        "short_description": "",
                        "document_type": "PACER Document",
                        "document_number": "13",
                        "pacer_doc_id": "03901949974",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/32239530/13/united-states-v-davis/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 32239530
                        },
                        "timestamp": "2024-06-18T07:36:47.033823",
                        "docket_id": 32239530,
                        "caseName": "United States v. Davis",
                        "case_name_full": "",
                        "docketNumber": "1:08-mj-00127",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2008-07-03",
                        "dateTerminated": "2008-07-10",
                        "assignedTo": "David L West",
                        "assigned_to_id": 9933,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, D. Colorado",
                        "court_id": "cod",
                        "court_citation_string": "D. Colo.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2024-04-28T02:53:24.415097+00:00",
                        "pacer_case_id": "108339"
                      },
                      "highlight": {
                        "plain_text": [
                          ""
                        ]
                      }
                    }
                  ]
                }
              }
            }
          },
          {
            "_index": "recap_vectors",
            "_id": "32238269",
            "_score": 1,
            "_source": {
              "docket_slug": "united-states-v-pearce",
              "docket_absolute_url": "/docket/32238269/united-states-v-pearce/",
              "court_exact": "cod",
              "party_id": [
                13763907,
                13763908
              ],
              "party": [
                "Clayson J. Pearce",
                "USA"
              ],
              "attorney_id": [
                9274522,
                9274523
              ],
              "attorney": [
                "Kurt J. Bohn",
                "Richard James Banta"
              ],
              "firm_id": [
                729490,
                353268
              ],
              "firm": [
                "U.S. Attorney's Office- District of Colorado",
                "Richard J. Banta"
              ],
              "docket_child": "docket",
              "timestamp": "2024-03-23T01:50:50.843115",
              "docket_id": 32238269,
              "caseName": "United States v. Pearce",
              "case_name_full": "",
              "docketNumber": "1:08-cr-00289",
              "suitNature": "",
              "cause": "",
              "juryDemand": "",
              "jurisdictionType": "",
              "dateArgued": null,
              "dateFiled": "2008-07-08",
              "dateTerminated": "2009-01-12",
              "assignedTo": "Philip A. Brimmer",
              "assigned_to_id": 391,
              "referredTo": null,
              "referred_to_id": null,
              "court": "District Court, D. Colorado",
              "court_id": "cod",
              "court_citation_string": "D. Colo.",
              "chapter": null,
              "trustee_str": null,
              "date_created": "2021-01-21T09:45:42.419825+00:00",
              "pacer_case_id": "108326"
            },
            "inner_hits": {
              "filter_query_inner_recap_document": {
                "hits": {
                  "total": {
                    "value": 57,
                    "relation": "eq"
                  },
                  "max_score": 1,
                  "hits": [
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_395373518",
                      "_score": 1,
                      "_routing": "32238269",
                      "_source": {
                        "id": 395373518,
                        "docket_entry_id": 386737635,
                        "description": "COMPLAINT as to Clayson J. Pearce (1). (Attachments: # 1 Criminal Information Sheet) (tllsl, ) [1:08-mj-01108-MEH] (Entered: 06/10/2008)",
                        "entry_number": 1,
                        "entry_date_filed": "2008-06-09",
                        "short_description": "",
                        "document_type": "PACER Document",
                        "document_number": "1",
                        "pacer_doc_id": "03901796301",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/32238269/1/united-states-v-pearce/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 32238269
                        },
                        "timestamp": "2024-06-18T07:37:05.218870",
                        "docket_id": 32238269,
                        "caseName": "United States v. Pearce",
                        "case_name_full": "",
                        "docketNumber": "1:08-cr-00289",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2008-07-08",
                        "dateTerminated": "2009-01-12",
                        "assignedTo": "Philip A. Brimmer",
                        "assigned_to_id": 391,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, D. Colorado",
                        "court_id": "cod",
                        "court_citation_string": "D. Colo.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2024-04-28T02:55:35.837858+00:00",
                        "pacer_case_id": "108326"
                      },
                      "highlight": {
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_395373528",
                      "_score": 1,
                      "_routing": "32238269",
                      "_source": {
                        "id": 395373528,
                        "docket_entry_id": 386737644,
                        "description": "MINUTE ORDER-Arraignment and Discovery Hearing set for 7/10/2008 10:30 AM in Courtroom C204 before Magistrate Judge Kristen L. Mix. Text Entry Only; No document attached. (lab) [1:08-mj-01108-MEH] (Entered: 06/25/2008)",
                        "entry_number": 10,
                        "entry_date_filed": "2008-06-25",
                        "short_description": "",
                        "document_type": "PACER Document",
                        "document_number": "10",
                        "pacer_doc_id": "",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/32238269/10/united-states-v-pearce/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 32238269
                        },
                        "timestamp": "2024-06-18T07:37:05.246031",
                        "docket_id": 32238269,
                        "caseName": "United States v. Pearce",
                        "case_name_full": "",
                        "docketNumber": "1:08-cr-00289",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2008-07-08",
                        "dateTerminated": "2009-01-12",
                        "assignedTo": "Philip A. Brimmer",
                        "assigned_to_id": 391,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, D. Colorado",
                        "court_id": "cod",
                        "court_citation_string": "D. Colo.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2024-04-28T02:55:36.219541+00:00",
                        "pacer_case_id": "108326"
                      },
                      "highlight": {
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_395373529",
                      "_score": 1,
                      "_routing": "32238269",
                      "_source": {
                        "id": 395373529,
                        "docket_entry_id": 386737645,
                        "description": "Minute Entry for proceedings held before Magistrate Judge Michael J. Watanabe: Bond Hearing as to Clayson J. Pearce held on 7/1/2008. Bond paperwork signed and tendered to the court. (Court Reporter FTR MJW AM.) (tllsl, ) [1:08-mj-01108-MEH] (Entered: 07/01/2008)",
                        "entry_number": 11,
                        "entry_date_filed": "2008-07-01",
                        "short_description": "",
                        "document_type": "PACER Document",
                        "document_number": "11",
                        "pacer_doc_id": "03901796333",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/32238269/11/united-states-v-pearce/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 32238269
                        },
                        "timestamp": "2024-06-18T07:37:05.271697",
                        "docket_id": 32238269,
                        "caseName": "United States v. Pearce",
                        "case_name_full": "",
                        "docketNumber": "1:08-cr-00289",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2008-07-08",
                        "dateTerminated": "2009-01-12",
                        "assignedTo": "Philip A. Brimmer",
                        "assigned_to_id": 391,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, D. Colorado",
                        "court_id": "cod",
                        "court_citation_string": "D. Colo.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2024-04-28T02:55:36.270488+00:00",
                        "pacer_case_id": "108326"
                      },
                      "highlight": {
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_395373530",
                      "_score": 1,
                      "_routing": "32238269",
                      "_source": {
                        "id": 395373530,
                        "docket_entry_id": 386737646,
                        "description": "ORDER Setting Conditions of Release. Signed by Magistrate Judge Michael J. Watanabe on 7/1/08. (tllsl, ) [1:08-mj-01108-MEH] (Entered: 07/01/2008)",
                        "entry_number": 12,
                        "entry_date_filed": "2008-07-01",
                        "short_description": "",
                        "document_type": "PACER Document",
                        "document_number": "12",
                        "pacer_doc_id": "03901796336",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/32238269/12/united-states-v-pearce/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 32238269
                        },
                        "timestamp": "2024-06-18T07:37:05.291975",
                        "docket_id": 32238269,
                        "caseName": "United States v. Pearce",
                        "case_name_full": "",
                        "docketNumber": "1:08-cr-00289",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2008-07-08",
                        "dateTerminated": "2009-01-12",
                        "assignedTo": "Philip A. Brimmer",
                        "assigned_to_id": 391,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, D. Colorado",
                        "court_id": "cod",
                        "court_citation_string": "D. Colo.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2024-04-28T02:55:36.309996+00:00",
                        "pacer_case_id": "108326"
                      },
                      "highlight": {
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_395373531",
                      "_score": 1,
                      "_routing": "32238269",
                      "_source": {
                        "id": 395373531,
                        "docket_entry_id": 386737647,
                        "description": "Property Bond Entered as to Clayson J. Pearce in amount of $ 25,000. (tllsl, ) [1:08-mj-01108-MEH] (Entered: 07/01/2008)",
                        "entry_number": 13,
                        "entry_date_filed": "2008-07-01",
                        "short_description": "",
                        "document_type": "PACER Document",
                        "document_number": "13",
                        "pacer_doc_id": "03901796339",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/32238269/13/united-states-v-pearce/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 32238269
                        },
                        "timestamp": "2024-06-18T07:37:05.316379",
                        "docket_id": 32238269,
                        "caseName": "United States v. Pearce",
                        "case_name_full": "",
                        "docketNumber": "1:08-cr-00289",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2008-07-08",
                        "dateTerminated": "2009-01-12",
                        "assignedTo": "Philip A. Brimmer",
                        "assigned_to_id": 391,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, D. Colorado",
                        "court_id": "cod",
                        "court_citation_string": "D. Colo.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2024-04-28T02:55:36.348441+00:00",
                        "pacer_case_id": "108326"
                      },
                      "highlight": {
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_395373532",
                      "_score": 1,
                      "_routing": "32238269",
                      "_source": {
                        "id": 395373532,
                        "docket_entry_id": 386737648,
                        "description": "Arrest Warrant Returned Executed on 6/13/08 in case as to Clayson J. Pearce. (tllsl, ) [1:08-mj-01108-MEH] (Entered: 07/03/2008)",
                        "entry_number": 14,
                        "entry_date_filed": "2008-07-03",
                        "short_description": "",
                        "document_type": "PACER Document",
                        "document_number": "14",
                        "pacer_doc_id": "03901796342",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/32238269/14/united-states-v-pearce/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 32238269
                        },
                        "timestamp": "2024-06-18T07:37:05.355971",
                        "docket_id": 32238269,
                        "caseName": "United States v. Pearce",
                        "case_name_full": "",
                        "docketNumber": "1:08-cr-00289",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2008-07-08",
                        "dateTerminated": "2009-01-12",
                        "assignedTo": "Philip A. Brimmer",
                        "assigned_to_id": 391,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, D. Colorado",
                        "court_id": "cod",
                        "court_citation_string": "D. Colo.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2024-04-28T02:55:36.386394+00:00",
                        "pacer_case_id": "108326"
                      },
                      "highlight": {
                        "plain_text": [
                          ""
                        ]
                      }
                    }
                  ]
                }
              }
            }
          },
          {
            "_index": "recap_vectors",
            "_id": "32237371",
            "_score": 1,
            "_source": {
              "docket_slug": "united-states-v-patrick",
              "docket_absolute_url": "/docket/32237371/united-states-v-patrick/",
              "court_exact": "cod",
              "party_id": [
                13763923,
                13763924
              ],
              "party": [
                "USA",
                "James Patrick"
              ],
              "attorney_id": [
                9274570,
                9274571
              ],
              "attorney": [
                "Edward R. Harris",
                "David M. Conner"
              ],
              "firm_id": [
                777649,
                353268
              ],
              "firm": [
                "U.S. Attorney's Office- District of Colorado",
                "Federal Public Defender's Office, Districts of Colorado and Wyoming"
              ],
              "docket_child": "docket",
              "timestamp": "2024-03-23T01:50:38.759627",
              "docket_id": 32237371,
              "caseName": "United States v. Patrick",
              "case_name_full": "",
              "docketNumber": "1:08-cr-00292",
              "suitNature": "",
              "cause": "",
              "juryDemand": "",
              "jurisdictionType": "",
              "dateArgued": null,
              "dateFiled": "2008-07-08",
              "dateTerminated": "2008-12-22",
              "assignedTo": "Wiley Young Daniel",
              "assigned_to_id": 793,
              "referredTo": null,
              "referred_to_id": null,
              "court": "District Court, D. Colorado",
              "court_id": "cod",
              "court_citation_string": "D. Colo.",
              "chapter": null,
              "trustee_str": null,
              "date_created": "2021-01-21T09:45:19.811154+00:00",
              "pacer_case_id": "108317"
            },
            "inner_hits": {
              "filter_query_inner_recap_document": {
                "hits": {
                  "total": {
                    "value": 32,
                    "relation": "eq"
                  },
                  "max_score": 1,
                  "hits": [
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_395374278",
                      "_score": 1,
                      "_routing": "32237371",
                      "_source": {
                        "id": 395374278,
                        "docket_entry_id": 386738298,
                        "description": "INDICTMENT as to James Patrick (1) count(s) 1, 2. (Attachments: # 1 Criminal Information Sheet) (tllsl, ) (Entered: 07/09/2008)",
                        "entry_number": 1,
                        "entry_date_filed": "2008-07-08",
                        "short_description": "",
                        "document_type": "PACER Document",
                        "document_number": "1",
                        "pacer_doc_id": "03901796161",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/32237371/1/united-states-v-patrick/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 32237371
                        },
                        "timestamp": "2024-06-18T07:37:28.660672",
                        "docket_id": 32237371,
                        "caseName": "United States v. Patrick",
                        "case_name_full": "",
                        "docketNumber": "1:08-cr-00292",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2008-07-08",
                        "dateTerminated": "2008-12-22",
                        "assignedTo": "Wiley Young Daniel",
                        "assigned_to_id": 793,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, D. Colorado",
                        "court_id": "cod",
                        "court_citation_string": "D. Colo.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2024-04-28T02:57:07.838111+00:00",
                        "pacer_case_id": "108317"
                      },
                      "highlight": {
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_395374288",
                      "_score": 1,
                      "_routing": "32237371",
                      "_source": {
                        "id": 395374288,
                        "docket_entry_id": 386738307,
                        "description": "MINUTE ORDER re 9 Order on Motion to Continue: hearings are now RESET. Arraignment, Discovery and Detention hearing set for 7/15/2008 01:30 PM in Courtroom C204 before Magistrate Judge Kristen L. Mix. (text entry only- no document attached) (tllsl, ) (Entered: 07/14/2008)",
                        "entry_number": 10,
                        "entry_date_filed": "2008-07-14",
                        "short_description": "",
                        "document_type": "PACER Document",
                        "document_number": "10",
                        "pacer_doc_id": "",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/32237371/10/united-states-v-patrick/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 32237371
                        },
                        "timestamp": "2024-06-18T07:37:28.679456",
                        "docket_id": 32237371,
                        "caseName": "United States v. Patrick",
                        "case_name_full": "",
                        "docketNumber": "1:08-cr-00292",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2008-07-08",
                        "dateTerminated": "2008-12-22",
                        "assignedTo": "Wiley Young Daniel",
                        "assigned_to_id": 793,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, D. Colorado",
                        "court_id": "cod",
                        "court_citation_string": "D. Colo.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2024-04-28T02:57:08.167421+00:00",
                        "pacer_case_id": "108317"
                      },
                      "highlight": {
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_395374289",
                      "_score": 1,
                      "_routing": "32237371",
                      "_source": {
                        "id": 395374289,
                        "docket_entry_id": 386738308,
                        "description": "Minute Entry for proceedings held before Magistrate Judge Kristen L. Mix: Arraignment, Detention and Discovery Hearing as to James Patrick held on 7/15/2008. Plea NOT GUILTY entered by James Patrick; disc memo executed;deft is not contesting detention. ORDERED:Deft detained. Counsel to chambers;deft remanded. (Tape #FTR KLM PM.) (lab) (Entered: 07/16/2008)",
                        "entry_number": 11,
                        "entry_date_filed": "2008-07-15",
                        "short_description": "",
                        "document_type": "PACER Document",
                        "document_number": "11",
                        "pacer_doc_id": "03901806210",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/32237371/11/united-states-v-patrick/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 32237371
                        },
                        "timestamp": "2024-06-18T07:37:28.729428",
                        "docket_id": 32237371,
                        "caseName": "United States v. Patrick",
                        "case_name_full": "",
                        "docketNumber": "1:08-cr-00292",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2008-07-08",
                        "dateTerminated": "2008-12-22",
                        "assignedTo": "Wiley Young Daniel",
                        "assigned_to_id": 793,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, D. Colorado",
                        "court_id": "cod",
                        "court_citation_string": "D. Colo.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2024-04-28T02:57:08.200661+00:00",
                        "pacer_case_id": "108317"
                      },
                      "highlight": {
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_395374290",
                      "_score": 1,
                      "_routing": "32237371",
                      "_source": {
                        "id": 395374290,
                        "docket_entry_id": 386738309,
                        "description": "ORDER OF DETENTION as to James Patrick. Signed by Magistrate Judge Kristen L. Mix on 7/15/08. (lmwsl, ) (Entered: 07/16/2008)",
                        "entry_number": 12,
                        "entry_date_filed": "2008-07-15",
                        "short_description": "",
                        "document_type": "PACER Document",
                        "document_number": "12",
                        "pacer_doc_id": "03901806645",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/32237371/12/united-states-v-patrick/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 32237371
                        },
                        "timestamp": "2024-06-18T07:37:28.761252",
                        "docket_id": 32237371,
                        "caseName": "United States v. Patrick",
                        "case_name_full": "",
                        "docketNumber": "1:08-cr-00292",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2008-07-08",
                        "dateTerminated": "2008-12-22",
                        "assignedTo": "Wiley Young Daniel",
                        "assigned_to_id": 793,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, D. Colorado",
                        "court_id": "cod",
                        "court_citation_string": "D. Colo.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2024-04-28T02:57:08.234306+00:00",
                        "pacer_case_id": "108317"
                      },
                      "highlight": {
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_395374291",
                      "_score": 1,
                      "_routing": "32237371",
                      "_source": {
                        "id": 395374291,
                        "docket_entry_id": 386738310,
                        "description": "Discovery Conference Memorandum and ORDER: Estimated Trial Time - 3 days as to James Patrick. Signed by Magistrate Judge Kristen L. Mix on 7/15/08. (lmwsl, ) (Entered: 07/16/2008)",
                        "entry_number": 13,
                        "entry_date_filed": "2008-07-15",
                        "short_description": "",
                        "document_type": "PACER Document",
                        "document_number": "13",
                        "pacer_doc_id": "03901807325",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/32237371/13/united-states-v-patrick/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 32237371
                        },
                        "timestamp": "2024-06-18T07:37:28.793828",
                        "docket_id": 32237371,
                        "caseName": "United States v. Patrick",
                        "case_name_full": "",
                        "docketNumber": "1:08-cr-00292",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2008-07-08",
                        "dateTerminated": "2008-12-22",
                        "assignedTo": "Wiley Young Daniel",
                        "assigned_to_id": 793,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, D. Colorado",
                        "court_id": "cod",
                        "court_citation_string": "D. Colo.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2024-04-28T02:57:08.270605+00:00",
                        "pacer_case_id": "108317"
                      },
                      "highlight": {
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_395374292",
                      "_score": 1,
                      "_routing": "32237371",
                      "_source": {
                        "id": 395374292,
                        "docket_entry_id": 386738311,
                        "description": "ORDER as to James Patrick; Pretrial Motions due by 8/11/2008. Responses due by 8/18/2008. Counsel shall contact chambers, if necessary, to schedule a hearing on pending motions and a final trial preparation conference. 3-day Jury Trial set for 9/8/2008 09:00 AM in Courtroom A1002 before Judge Wiley Y. Daniel. Signed by Judge Wiley Y. Daniel on 7/29/08. (lmwsl, ) (Entered: 07/29/2008)",
                        "entry_number": 14,
                        "entry_date_filed": "2008-07-29",
                        "short_description": "",
                        "document_type": "PACER Document",
                        "document_number": "14",
                        "pacer_doc_id": "03901826089",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/32237371/14/united-states-v-patrick/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 32237371
                        },
                        "timestamp": "2024-06-18T07:37:28.809211",
                        "docket_id": 32237371,
                        "caseName": "United States v. Patrick",
                        "case_name_full": "",
                        "docketNumber": "1:08-cr-00292",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2008-07-08",
                        "dateTerminated": "2008-12-22",
                        "assignedTo": "Wiley Young Daniel",
                        "assigned_to_id": 793,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, D. Colorado",
                        "court_id": "cod",
                        "court_citation_string": "D. Colo.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2024-04-28T02:57:08.305826+00:00",
                        "pacer_case_id": "108317"
                      },
                      "highlight": {
                        "plain_text": [
                          ""
                        ]
                      }
                    }
                  ]
                }
              }
            }
          },
          {
            "_index": "recap_vectors",
            "_id": "32254939",
            "_score": 1,
            "_source": {
              "docket_slug": "united-states-v-barrera-morales",
              "docket_absolute_url": "/docket/32254939/united-states-v-barrera-morales/",
              "court_exact": "cod",
              "party_id": [
                13763304,
                13763303
              ],
              "party": [
                "Javier Barrera-Morales",
                "USA"
              ],
              "attorney_id": [
                9274158,
                9274159
              ],
              "attorney": [
                "Warren Richard Williamson",
                "Joseph Mackey"
              ],
              "firm_id": [
                51724,
                51748
              ],
              "firm": [
                "U.S. Attorney's Office-Denver",
                "Office of the Federal Public Defender"
              ],
              "docket_child": "docket",
              "timestamp": "2024-03-23T01:54:32.442633",
              "docket_id": 32254939,
              "caseName": "United States v. Barrera-Morales",
              "case_name_full": "",
              "docketNumber": "1:08-cr-00303",
              "suitNature": "",
              "cause": "",
              "juryDemand": "",
              "jurisdictionType": "",
              "dateArgued": null,
              "dateFiled": "2008-07-21",
              "dateTerminated": "2009-04-09",
              "assignedTo": "Robert E. Blackburn",
              "assigned_to_id": 294,
              "referredTo": null,
              "referred_to_id": null,
              "court": "District Court, D. Colorado",
              "court_id": "cod",
              "court_citation_string": "D. Colo.",
              "chapter": null,
              "trustee_str": null,
              "date_created": "2021-01-21T09:51:57.637067+00:00",
              "pacer_case_id": "108496"
            },
            "inner_hits": {
              "filter_query_inner_recap_document": {
                "hits": {
                  "total": {
                    "value": 24,
                    "relation": "eq"
                  },
                  "max_score": 1,
                  "hits": [
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_395367184",
                      "_score": 1,
                      "_routing": "32254939",
                      "_source": {
                        "id": 395367184,
                        "docket_entry_id": 386733615,
                        "description": "INDICTMENT as to Javier Barrera-Morales (1) count(s) 1. (Attachments: # 1 Criminal Information Sheet) (tllsl, ) (Entered: 07/22/2008)",
                        "entry_number": 1,
                        "entry_date_filed": "2008-07-21",
                        "short_description": "",
                        "document_type": "PACER Document",
                        "document_number": "1",
                        "pacer_doc_id": "03901814761",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/32254939/1/united-states-v-barrera-morales/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 32254939
                        },
                        "timestamp": "2024-06-18T07:33:30.087612",
                        "docket_id": 32254939,
                        "caseName": "United States v. Barrera-Morales",
                        "case_name_full": "",
                        "docketNumber": "1:08-cr-00303",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2008-07-21",
                        "dateTerminated": "2009-04-09",
                        "assignedTo": "Robert E. Blackburn",
                        "assigned_to_id": 294,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, D. Colorado",
                        "court_id": "cod",
                        "court_citation_string": "D. Colo.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2024-04-28T02:27:01.110499+00:00",
                        "pacer_case_id": "108496"
                      },
                      "highlight": {
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_395367194",
                      "_score": 1,
                      "_routing": "32254939",
                      "_source": {
                        "id": 395367194,
                        "docket_entry_id": 386733624,
                        "description": "ORDER OF DETENTION as to Javier Barrera-Morales. Signed by Magistrate Judge Boyd N. Boland on 7/29/08. (mjg, ) (Entered: 07/30/2008)",
                        "entry_number": 10,
                        "entry_date_filed": "2008-07-29",
                        "short_description": "",
                        "document_type": "PACER Document",
                        "document_number": "10",
                        "pacer_doc_id": "03901827188",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/32254939/10/united-states-v-barrera-morales/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 32254939
                        },
                        "timestamp": "2024-06-18T07:33:30.127113",
                        "docket_id": 32254939,
                        "caseName": "United States v. Barrera-Morales",
                        "case_name_full": "",
                        "docketNumber": "1:08-cr-00303",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2008-07-21",
                        "dateTerminated": "2009-04-09",
                        "assignedTo": "Robert E. Blackburn",
                        "assigned_to_id": 294,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, D. Colorado",
                        "court_id": "cod",
                        "court_citation_string": "D. Colo.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2024-04-28T02:27:01.561035+00:00",
                        "pacer_case_id": "108496"
                      },
                      "highlight": {
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_395367195",
                      "_score": 1,
                      "_routing": "32254939",
                      "_source": {
                        "id": 395367195,
                        "docket_entry_id": 386733625,
                        "description": "Discovery Conference Memorandum and ORDER: Estimated Trial Time - 5 days or less as to Javier Barrera-Morales. Signed by Judge Robert E. Blackburn on 7/29/08. (mjg, ) (Entered: 07/30/2008)",
                        "entry_number": 11,
                        "entry_date_filed": "2008-07-29",
                        "short_description": "",
                        "document_type": "PACER Document",
                        "document_number": "11",
                        "pacer_doc_id": "03901827194",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/32254939/11/united-states-v-barrera-morales/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 32254939
                        },
                        "timestamp": "2024-06-18T07:33:30.212990",
                        "docket_id": 32254939,
                        "caseName": "United States v. Barrera-Morales",
                        "case_name_full": "",
                        "docketNumber": "1:08-cr-00303",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2008-07-21",
                        "dateTerminated": "2009-04-09",
                        "assignedTo": "Robert E. Blackburn",
                        "assigned_to_id": 294,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, D. Colorado",
                        "court_id": "cod",
                        "court_citation_string": "D. Colo.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2024-04-28T02:27:01.602387+00:00",
                        "pacer_case_id": "108496"
                      },
                      "highlight": {
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_395367196",
                      "_score": 1,
                      "_routing": "32254939",
                      "_source": {
                        "id": 395367196,
                        "docket_entry_id": 386733626,
                        "description": "NOTICE of Disposition by Javier Barrera-Morales (Williamson, Warren) (Entered: 09/12/2008)",
                        "entry_number": 12,
                        "entry_date_filed": "2008-09-12",
                        "short_description": "",
                        "document_type": "PACER Document",
                        "document_number": "12",
                        "pacer_doc_id": "03901890110",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/32254939/12/united-states-v-barrera-morales/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 32254939
                        },
                        "timestamp": "2024-06-18T07:33:30.259317",
                        "docket_id": 32254939,
                        "caseName": "United States v. Barrera-Morales",
                        "case_name_full": "",
                        "docketNumber": "1:08-cr-00303",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2008-07-21",
                        "dateTerminated": "2009-04-09",
                        "assignedTo": "Robert E. Blackburn",
                        "assigned_to_id": 294,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, D. Colorado",
                        "court_id": "cod",
                        "court_citation_string": "D. Colo.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2024-04-28T02:27:01.646302+00:00",
                        "pacer_case_id": "108496"
                      },
                      "highlight": {
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_395367197",
                      "_score": 1,
                      "_routing": "32254939",
                      "_source": {
                        "id": 395367197,
                        "docket_entry_id": 386733627,
                        "description": "MINUTE ORDER re 12 Notice of Disposition: A Change of Plea Hearing is set for 1/16/2009 01:30 PM in Courtroom A 701 before Judge Robert E. Blackburn. (tllsl, ) (Entered: 09/15/2008)",
                        "entry_number": 13,
                        "entry_date_filed": "2008-09-12",
                        "short_description": "",
                        "document_type": "PACER Document",
                        "document_number": "13",
                        "pacer_doc_id": "03901890539",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/32254939/13/united-states-v-barrera-morales/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 32254939
                        },
                        "timestamp": "2024-06-18T07:33:30.311443",
                        "docket_id": 32254939,
                        "caseName": "United States v. Barrera-Morales",
                        "case_name_full": "",
                        "docketNumber": "1:08-cr-00303",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2008-07-21",
                        "dateTerminated": "2009-04-09",
                        "assignedTo": "Robert E. Blackburn",
                        "assigned_to_id": 294,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, D. Colorado",
                        "court_id": "cod",
                        "court_citation_string": "D. Colo.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2024-04-28T02:27:01.672235+00:00",
                        "pacer_case_id": "108496"
                      },
                      "highlight": {
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_395367198",
                      "_score": 1,
                      "_routing": "32254939",
                      "_source": {
                        "id": 395367198,
                        "docket_entry_id": 386733628,
                        "description": "MINUTE ORDER by Judge Robert E. Blackburn as to Javier Barrera-Morales: Sentencing set for 4/3/2009 11:00 AM in Courtroom A 701 before Judge Robert E. Blackburn; U.S. Marshal shall assist in securing the defendant's appearance for this hearing. (mjg, ) (Entered: 01/16/2009)",
                        "entry_number": 14,
                        "entry_date_filed": "2009-01-16",
                        "short_description": "",
                        "document_type": "PACER Document",
                        "document_number": "14",
                        "pacer_doc_id": "03902075113",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/32254939/14/united-states-v-barrera-morales/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 32254939
                        },
                        "timestamp": "2024-06-18T07:33:30.341137",
                        "docket_id": 32254939,
                        "caseName": "United States v. Barrera-Morales",
                        "case_name_full": "",
                        "docketNumber": "1:08-cr-00303",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2008-07-21",
                        "dateTerminated": "2009-04-09",
                        "assignedTo": "Robert E. Blackburn",
                        "assigned_to_id": 294,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, D. Colorado",
                        "court_id": "cod",
                        "court_citation_string": "D. Colo.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2024-04-28T02:27:01.703914+00:00",
                        "pacer_case_id": "108496"
                      },
                      "highlight": {
                        "plain_text": [
                          ""
                        ]
                      }
                    }
                  ]
                }
              }
            }
          },
          {
            "_index": "recap_vectors",
            "_id": "32254498",
            "_score": 1,
            "_source": {
              "docket_slug": "united-states-v-sobczewski",
              "docket_absolute_url": "/docket/32254498/united-states-v-sobczewski/",
              "court_exact": "cod",
              "party_id": [
                13763321,
                13763322
              ],
              "party": [
                "Edward Sobczewski",
                "USA"
              ],
              "attorney_id": [
                9274176,
                9274174,
                9274175
              ],
              "attorney": [
                "Saskia A. Jordan",
                "Suneeta (Former AUSA)Hazra",
                "Norman R. Mueller"
              ],
              "firm_id": [
                752892,
                353268
              ],
              "firm": [
                "U.S. Attorney's Office- District of Colorado",
                "Haddon, Morgan and Foreman, P.C."
              ],
              "docket_child": "docket",
              "timestamp": "2024-03-23T01:54:26.108953",
              "docket_id": 32254498,
              "caseName": "United States v. Sobczewski",
              "case_name_full": "",
              "docketNumber": "1:08-cr-00300",
              "suitNature": "",
              "cause": "",
              "juryDemand": "",
              "jurisdictionType": "",
              "dateArgued": null,
              "dateFiled": "2008-07-21",
              "dateTerminated": "2009-09-01",
              "assignedTo": "Wiley Young Daniel",
              "assigned_to_id": 793,
              "referredTo": null,
              "referred_to_id": null,
              "court": "District Court, D. Colorado",
              "court_id": "cod",
              "court_citation_string": "D. Colo.",
              "chapter": null,
              "trustee_str": null,
              "date_created": "2021-01-21T09:51:48.530042+00:00",
              "pacer_case_id": "108491"
            },
            "inner_hits": {
              "filter_query_inner_recap_document": {
                "hits": {
                  "total": {
                    "value": 72,
                    "relation": "eq"
                  },
                  "max_score": 1,
                  "hits": [
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_395367527",
                      "_score": 1,
                      "_routing": "32254498",
                      "_source": {
                        "id": 395367527,
                        "docket_entry_id": 386733827,
                        "description": "INDICTMENT as to Edward Sobczewski (1) count(s) 1-4. (Attachments: # 1 Criminal Information Sheet) (tllsl, ) (Entered: 07/22/2008)",
                        "entry_number": 1,
                        "entry_date_filed": "2008-07-21",
                        "short_description": "",
                        "document_type": "PACER Document",
                        "document_number": "1",
                        "pacer_doc_id": "03901814675",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/32254498/1/united-states-v-sobczewski/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 32254498
                        },
                        "timestamp": "2024-06-18T07:33:45.280776",
                        "docket_id": 32254498,
                        "caseName": "United States v. Sobczewski",
                        "case_name_full": "",
                        "docketNumber": "1:08-cr-00300",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2008-07-21",
                        "dateTerminated": "2009-09-01",
                        "assignedTo": "Wiley Young Daniel",
                        "assigned_to_id": 793,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, D. Colorado",
                        "court_id": "cod",
                        "court_citation_string": "D. Colo.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2024-04-28T02:27:49.524484+00:00",
                        "pacer_case_id": "108491"
                      },
                      "highlight": {
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_395367537",
                      "_score": 1,
                      "_routing": "32254498",
                      "_source": {
                        "id": 395367537,
                        "docket_entry_id": 386733836,
                        "description": "Minute Entry for proceedings held before Magistrate Judge Boyd N. Boland: Arraignment and Discovery Hearing as to Edward Sobczewski held on 7/30/2008. Plea NOT GUILTY entered by Edward Sobczewski;disc memo executed;counsel to chambers;deft cont on bond. (Tape #FTR BNB PM.) (lab) (Entered: 07/30/2008)",
                        "entry_number": 10,
                        "entry_date_filed": "2008-07-30",
                        "short_description": "",
                        "document_type": "PACER Document",
                        "document_number": "10",
                        "pacer_doc_id": "03901828063",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/32254498/10/united-states-v-sobczewski/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 32254498
                        },
                        "timestamp": "2024-06-18T07:33:45.303752",
                        "docket_id": 32254498,
                        "caseName": "United States v. Sobczewski",
                        "case_name_full": "",
                        "docketNumber": "1:08-cr-00300",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2008-07-21",
                        "dateTerminated": "2009-09-01",
                        "assignedTo": "Wiley Young Daniel",
                        "assigned_to_id": 793,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, D. Colorado",
                        "court_id": "cod",
                        "court_citation_string": "D. Colo.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2024-04-28T02:27:49.893848+00:00",
                        "pacer_case_id": "108491"
                      },
                      "highlight": {
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_395367538",
                      "_score": 1,
                      "_routing": "32254498",
                      "_source": {
                        "id": 395367538,
                        "docket_entry_id": 386733837,
                        "description": "Discovery Conference Memorandum and ORDER: Estimated Trial Time - 3 days as to Edward Sobczewski. Signed by Magistrate Judge Boyd N. Boland on 7/30/08. (lmwsl, ) (Entered: 07/31/2008)",
                        "entry_number": 11,
                        "entry_date_filed": "2008-07-30",
                        "short_description": "",
                        "document_type": "PACER Document",
                        "document_number": "11",
                        "pacer_doc_id": "03901830002",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/32254498/11/united-states-v-sobczewski/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 32254498
                        },
                        "timestamp": "2024-06-18T07:33:45.321405",
                        "docket_id": 32254498,
                        "caseName": "United States v. Sobczewski",
                        "case_name_full": "",
                        "docketNumber": "1:08-cr-00300",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2008-07-21",
                        "dateTerminated": "2009-09-01",
                        "assignedTo": "Wiley Young Daniel",
                        "assigned_to_id": 793,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, D. Colorado",
                        "court_id": "cod",
                        "court_citation_string": "D. Colo.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2024-04-28T02:27:49.931708+00:00",
                        "pacer_case_id": "108491"
                      },
                      "highlight": {
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_395367539",
                      "_score": 1,
                      "_routing": "32254498",
                      "_source": {
                        "id": 395367539,
                        "docket_entry_id": 386733838,
                        "description": "MOTION for Discovery by Edward Sobczewski. (Mueller, Norman) (Entered: 08/18/2008)",
                        "entry_number": 12,
                        "entry_date_filed": "2008-08-18",
                        "short_description": "",
                        "document_type": "PACER Document",
                        "document_number": "12",
                        "pacer_doc_id": "03901853057",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/32254498/12/united-states-v-sobczewski/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 32254498
                        },
                        "timestamp": "2024-06-18T07:33:45.342176",
                        "docket_id": 32254498,
                        "caseName": "United States v. Sobczewski",
                        "case_name_full": "",
                        "docketNumber": "1:08-cr-00300",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2008-07-21",
                        "dateTerminated": "2009-09-01",
                        "assignedTo": "Wiley Young Daniel",
                        "assigned_to_id": 793,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, D. Colorado",
                        "court_id": "cod",
                        "court_citation_string": "D. Colo.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2024-04-28T02:27:49.993023+00:00",
                        "pacer_case_id": "108491"
                      },
                      "highlight": {
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_395367540",
                      "_score": 1,
                      "_routing": "32254498",
                      "_source": {
                        "id": 395367540,
                        "docket_entry_id": 386733839,
                        "description": "MOTION for Disclosure of Matters Occurring Before the Grand Jury by Edward Sobczewski. (Mueller, Norman) (Entered: 08/18/2008)",
                        "entry_number": 13,
                        "entry_date_filed": "2008-08-18",
                        "short_description": "",
                        "document_type": "PACER Document",
                        "document_number": "13",
                        "pacer_doc_id": "03901853068",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/32254498/13/united-states-v-sobczewski/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 32254498
                        },
                        "timestamp": "2024-06-18T07:33:45.363046",
                        "docket_id": 32254498,
                        "caseName": "United States v. Sobczewski",
                        "case_name_full": "",
                        "docketNumber": "1:08-cr-00300",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2008-07-21",
                        "dateTerminated": "2009-09-01",
                        "assignedTo": "Wiley Young Daniel",
                        "assigned_to_id": 793,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, D. Colorado",
                        "court_id": "cod",
                        "court_citation_string": "D. Colo.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2024-04-28T02:27:50.028276+00:00",
                        "pacer_case_id": "108491"
                      },
                      "highlight": {
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_395367541",
                      "_score": 1,
                      "_routing": "32254498",
                      "_source": {
                        "id": 395367541,
                        "docket_entry_id": 386733840,
                        "description": "MOTION to Dismiss Multiplicitous Counts of the Indictment by Edward Sobczewski. (Mueller, Norman) (Entered: 08/18/2008)",
                        "entry_number": 14,
                        "entry_date_filed": "2008-08-18",
                        "short_description": "",
                        "document_type": "PACER Document",
                        "document_number": "14",
                        "pacer_doc_id": "03901853092",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/32254498/14/united-states-v-sobczewski/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 32254498
                        },
                        "timestamp": "2024-06-18T07:33:45.384513",
                        "docket_id": 32254498,
                        "caseName": "United States v. Sobczewski",
                        "case_name_full": "",
                        "docketNumber": "1:08-cr-00300",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2008-07-21",
                        "dateTerminated": "2009-09-01",
                        "assignedTo": "Wiley Young Daniel",
                        "assigned_to_id": 793,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, D. Colorado",
                        "court_id": "cod",
                        "court_citation_string": "D. Colo.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2024-04-28T02:27:50.062649+00:00",
                        "pacer_case_id": "108491"
                      },
                      "highlight": {
                        "plain_text": [
                          ""
                        ]
                      }
                    }
                  ]
                }
              }
            }
          },
          {
            "_index": "recap_vectors",
            "_id": "32253774",
            "_score": 1,
            "_source": {
              "docket_slug": "united-states-v-gonzalez",
              "docket_absolute_url": "/docket/32253774/united-states-v-gonzalez/",
              "court_exact": "cod",
              "party_id": [
                13763336,
                13763335
              ],
              "party": [
                "Melecio Gonzalez, Jr.",
                "USA"
              ],
              "attorney_id": [
                9274195
              ],
              "attorney": [
                "Jeremy S. Sibert"
              ],
              "firm_id": [
                353268
              ],
              "firm": [
                "U.S. Attorney's Office- District of Colorado"
              ],
              "docket_child": "docket",
              "timestamp": "2024-03-23T01:54:16.174742",
              "docket_id": 32253774,
              "caseName": "United States v. Gonzalez",
              "case_name_full": "",
              "docketNumber": "1:08-cr-00296",
              "suitNature": "",
              "cause": "",
              "juryDemand": "",
              "jurisdictionType": "",
              "dateArgued": null,
              "dateFiled": "2008-07-21",
              "dateTerminated": "2008-09-16",
              "assignedTo": "Wiley Young Daniel",
              "assigned_to_id": 793,
              "referredTo": null,
              "referred_to_id": null,
              "court": "District Court, D. Colorado",
              "court_id": "cod",
              "court_citation_string": "D. Colo.",
              "chapter": null,
              "trustee_str": null,
              "date_created": "2021-01-21T09:51:34.452877+00:00",
              "pacer_case_id": "108484"
            },
            "inner_hits": {
              "filter_query_inner_recap_document": {
                "hits": {
                  "total": {
                    "value": 8,
                    "relation": "eq"
                  },
                  "max_score": 1,
                  "hits": [
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_395367748",
                      "_score": 1,
                      "_routing": "32253774",
                      "_source": {
                        "id": 395367748,
                        "docket_entry_id": 386734014,
                        "description": "Criminal Case Terminated (tllsl, )",
                        "entry_number": null,
                        "entry_date_filed": "2008-09-16",
                        "short_description": "",
                        "document_type": "PACER Document",
                        "document_number": null,
                        "pacer_doc_id": "",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 32253774
                        },
                        "timestamp": "2024-06-18T07:33:51.629514",
                        "docket_id": 32253774,
                        "caseName": "United States v. Gonzalez",
                        "case_name_full": "",
                        "docketNumber": "1:08-cr-00296",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2008-07-21",
                        "dateTerminated": "2008-09-16",
                        "assignedTo": "Wiley Young Daniel",
                        "assigned_to_id": 793,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, D. Colorado",
                        "court_id": "cod",
                        "court_citation_string": "D. Colo.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2024-04-28T02:29:00.176796+00:00",
                        "pacer_case_id": "108484"
                      },
                      "highlight": {
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_395367742",
                      "_score": 1,
                      "_routing": "32253774",
                      "_source": {
                        "id": 395367742,
                        "docket_entry_id": 386734010,
                        "description": "INDICTMENT as to Melecio Gonzalez, Jr (1) count(s) 1, 2. (Attachments: # 1 Criminal Information Sheet) (tllsl, ) (Entered: 07/22/2008)",
                        "entry_number": 1,
                        "entry_date_filed": "2008-07-21",
                        "short_description": "",
                        "document_type": "PACER Document",
                        "document_number": "1",
                        "pacer_doc_id": "03901814589",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/32253774/1/united-states-v-gonzalez/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 32253774
                        },
                        "timestamp": "2024-06-18T07:33:51.672199",
                        "docket_id": 32253774,
                        "caseName": "United States v. Gonzalez",
                        "case_name_full": "",
                        "docketNumber": "1:08-cr-00296",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2008-07-21",
                        "dateTerminated": "2008-09-16",
                        "assignedTo": "Wiley Young Daniel",
                        "assigned_to_id": 793,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, D. Colorado",
                        "court_id": "cod",
                        "court_citation_string": "D. Colo.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2024-04-28T02:28:59.795559+00:00",
                        "pacer_case_id": "108484"
                      },
                      "highlight": {
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_395367744",
                      "_score": 1,
                      "_routing": "32253774",
                      "_source": {
                        "id": 395367744,
                        "docket_entry_id": 386734011,
                        "description": "Arrest Warrant Issued in case as to Melecio Gonzalez, Jr. (tllsl, ) (Entered: 07/22/2008)",
                        "entry_number": 2,
                        "entry_date_filed": "2008-07-21",
                        "short_description": "",
                        "document_type": "PACER Document",
                        "document_number": "2",
                        "pacer_doc_id": "03901814593",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/32253774/2/united-states-v-gonzalez/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 32253774
                        },
                        "timestamp": "2024-06-18T07:33:51.974339",
                        "docket_id": 32253774,
                        "caseName": "United States v. Gonzalez",
                        "case_name_full": "",
                        "docketNumber": "1:08-cr-00296",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2008-07-21",
                        "dateTerminated": "2008-09-16",
                        "assignedTo": "Wiley Young Daniel",
                        "assigned_to_id": 793,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, D. Colorado",
                        "court_id": "cod",
                        "court_citation_string": "D. Colo.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2024-04-28T02:28:59.930593+00:00",
                        "pacer_case_id": "108484"
                      },
                      "highlight": {
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_395367745",
                      "_score": 1,
                      "_routing": "32253774",
                      "_source": {
                        "id": 395367745,
                        "docket_entry_id": 386734012,
                        "description": "MOTION to Dismiss Indictment by USA as to Melecio Gonzalez, Jr. (Attachments: # 1 Proposed Order (PDF Only))(Sibert, Jeremy) (Entered: 09/08/2008)",
                        "entry_number": 3,
                        "entry_date_filed": "2008-09-08",
                        "short_description": "",
                        "document_type": "PACER Document",
                        "document_number": "3",
                        "pacer_doc_id": "03901880967",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/32253774/3/united-states-v-gonzalez/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 32253774
                        },
                        "timestamp": "2024-06-18T07:33:52.089634",
                        "docket_id": 32253774,
                        "caseName": "United States v. Gonzalez",
                        "case_name_full": "",
                        "docketNumber": "1:08-cr-00296",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2008-07-21",
                        "dateTerminated": "2008-09-16",
                        "assignedTo": "Wiley Young Daniel",
                        "assigned_to_id": 793,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, D. Colorado",
                        "court_id": "cod",
                        "court_citation_string": "D. Colo.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2024-04-28T02:28:59.982160+00:00",
                        "pacer_case_id": "108484"
                      },
                      "highlight": {
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_395367747",
                      "_score": 1,
                      "_routing": "32253774",
                      "_source": {
                        "id": 395367747,
                        "docket_entry_id": 386734013,
                        "description": "ORDER granting 3 Motion to Dismiss indictment as to Melecio Gonzalez Jr. (1). Signed by Judge Wiley Y. Daniel on 9/16/08. (tllsl, ) (Entered: 09/16/2008)",
                        "entry_number": 4,
                        "entry_date_filed": "2008-09-16",
                        "short_description": "",
                        "document_type": "PACER Document",
                        "document_number": "4",
                        "pacer_doc_id": "03901893005",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/32253774/4/united-states-v-gonzalez/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 32253774
                        },
                        "timestamp": "2024-06-18T07:33:52.139768",
                        "docket_id": 32253774,
                        "caseName": "United States v. Gonzalez",
                        "case_name_full": "",
                        "docketNumber": "1:08-cr-00296",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2008-07-21",
                        "dateTerminated": "2008-09-16",
                        "assignedTo": "Wiley Young Daniel",
                        "assigned_to_id": 793,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, D. Colorado",
                        "court_id": "cod",
                        "court_citation_string": "D. Colo.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2024-04-28T02:29:00.148369+00:00",
                        "pacer_case_id": "108484"
                      },
                      "highlight": {
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_395367749",
                      "_score": 1,
                      "_routing": "32253774",
                      "_source": {
                        "id": 395367749,
                        "docket_entry_id": 386734015,
                        "description": "Arrest Warrant Returned Unexecuted as to Melecio Gonzalez, Jr. (lmwsl, ) (Entered: 09/18/2008)",
                        "entry_number": 6,
                        "entry_date_filed": "2008-09-17",
                        "short_description": "",
                        "document_type": "PACER Document",
                        "document_number": "6",
                        "pacer_doc_id": "03901897143",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/32253774/6/united-states-v-gonzalez/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 32253774
                        },
                        "timestamp": "2024-06-18T07:33:52.246943",
                        "docket_id": 32253774,
                        "caseName": "United States v. Gonzalez",
                        "case_name_full": "",
                        "docketNumber": "1:08-cr-00296",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2008-07-21",
                        "dateTerminated": "2008-09-16",
                        "assignedTo": "Wiley Young Daniel",
                        "assigned_to_id": 793,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, D. Colorado",
                        "court_id": "cod",
                        "court_citation_string": "D. Colo.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2024-04-28T02:29:00.212726+00:00",
                        "pacer_case_id": "108484"
                      },
                      "highlight": {
                        "plain_text": [
                          ""
                        ]
                      }
                    }
                  ]
                }
              }
            }
          },
          {
            "_index": "recap_vectors",
            "_id": "32261936",
            "_score": 1,
            "_source": {
              "docket_slug": "united-states-v-archuleta",
              "docket_absolute_url": "/docket/32261936/united-states-v-archuleta/",
              "court_exact": "cod",
              "party_id": [
                13763064,
                13763065
              ],
              "party": [
                "Tobias Lee Archuleta",
                "USA"
              ],
              "attorney_id": [
                9273897,
                9273898
              ],
              "attorney": [
                "Richard Allyn (Former AUSA) Hosley , III",
                "La Fonda R. (Former FPD) Traore"
              ],
              "firm_id": [
                51724,
                353268
              ],
              "firm": [
                "U.S. Attorney's Office- District of Colorado",
                "Office of the Federal Public Defender"
              ],
              "docket_child": "docket",
              "timestamp": "2024-03-23T01:56:03.018045",
              "docket_id": 32261936,
              "caseName": "United States v. Archuleta",
              "case_name_full": "",
              "docketNumber": "1:08-mj-01136",
              "suitNature": "",
              "cause": "",
              "juryDemand": "",
              "jurisdictionType": "",
              "dateArgued": null,
              "dateFiled": "2008-07-24",
              "dateTerminated": "2008-08-20",
              "assignedTo": "Boyd N Boland",
              "assigned_to_id": 9895,
              "referredTo": null,
              "referred_to_id": null,
              "court": "District Court, D. Colorado",
              "court_id": "cod",
              "court_citation_string": "D. Colo.",
              "chapter": null,
              "trustee_str": null,
              "date_created": "2021-01-21T09:54:10.891709+00:00",
              "pacer_case_id": "108567"
            },
            "inner_hits": {
              "filter_query_inner_recap_document": {
                "hits": {
                  "total": {
                    "value": 12,
                    "relation": "eq"
                  },
                  "max_score": 1,
                  "hits": [
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_395363271",
                      "_score": 1,
                      "_routing": "32261936",
                      "_source": {
                        "id": 395363271,
                        "docket_entry_id": 386730616,
                        "description": "MAGISTRATE CASE TERMINATED as to Tobias Lee Archuleta : SEE 08-cr-00353-EWN for further information. (tllsl, )",
                        "entry_number": null,
                        "entry_date_filed": "2008-08-20",
                        "short_description": "",
                        "document_type": "PACER Document",
                        "document_number": null,
                        "pacer_doc_id": "",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 32261936
                        },
                        "timestamp": "2024-06-18T07:18:48.975235",
                        "docket_id": 32261936,
                        "caseName": "United States v. Archuleta",
                        "case_name_full": "",
                        "docketNumber": "1:08-mj-01136",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2008-07-24",
                        "dateTerminated": "2008-08-20",
                        "assignedTo": "Boyd N Boland",
                        "assigned_to_id": 9895,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, D. Colorado",
                        "court_id": "cod",
                        "court_citation_string": "D. Colo.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2024-04-28T02:15:05.450997+00:00",
                        "pacer_case_id": "108567"
                      },
                      "highlight": {
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_395363260",
                      "_score": 1,
                      "_routing": "32261936",
                      "_source": {
                        "id": 395363260,
                        "docket_entry_id": 386730606,
                        "description": "COMPLAINT as to Tobias Lee Archuleta (1). (Attachments: # 1 Criminal Information Sheet) (tllsl, ) (Entered: 07/25/2008)",
                        "entry_number": 1,
                        "entry_date_filed": "2008-07-24",
                        "short_description": "",
                        "document_type": "PACER Document",
                        "document_number": "1",
                        "pacer_doc_id": "03901820916",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/32261936/1/united-states-v-archuleta/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 32261936
                        },
                        "timestamp": "2024-06-18T07:18:49.028290",
                        "docket_id": 32261936,
                        "caseName": "United States v. Archuleta",
                        "case_name_full": "",
                        "docketNumber": "1:08-mj-01136",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2008-07-24",
                        "dateTerminated": "2008-08-20",
                        "assignedTo": "Boyd N Boland",
                        "assigned_to_id": 9895,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, D. Colorado",
                        "court_id": "cod",
                        "court_citation_string": "D. Colo.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2024-04-28T02:15:04.687814+00:00",
                        "pacer_case_id": "108567"
                      },
                      "highlight": {
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_395363270",
                      "_score": 1,
                      "_routing": "32261936",
                      "_source": {
                        "id": 395363270,
                        "docket_entry_id": 386730615,
                        "description": "WAIVER of Preliminary Hearing by Tobias Lee Archuleta (tllsl, ) (Entered: 07/31/2008)",
                        "entry_number": 10,
                        "entry_date_filed": "2008-07-30",
                        "short_description": "",
                        "document_type": "PACER Document",
                        "document_number": "10",
                        "pacer_doc_id": "03901829401",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/32261936/10/united-states-v-archuleta/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 32261936
                        },
                        "timestamp": "2024-06-18T07:18:49.071696",
                        "docket_id": 32261936,
                        "caseName": "United States v. Archuleta",
                        "case_name_full": "",
                        "docketNumber": "1:08-mj-01136",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2008-07-24",
                        "dateTerminated": "2008-08-20",
                        "assignedTo": "Boyd N Boland",
                        "assigned_to_id": 9895,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, D. Colorado",
                        "court_id": "cod",
                        "court_citation_string": "D. Colo.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2024-04-28T02:15:05.405359+00:00",
                        "pacer_case_id": "108567"
                      },
                      "highlight": {
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_395363262",
                      "_score": 1,
                      "_routing": "32261936",
                      "_source": {
                        "id": 395363262,
                        "docket_entry_id": 386730607,
                        "description": "Arrest Warrant Issued in case as to Tobias Lee Archuleta. (tllsl, ) (Entered: 07/25/2008)",
                        "entry_number": 2,
                        "entry_date_filed": "2008-07-24",
                        "short_description": "",
                        "document_type": "PACER Document",
                        "document_number": "2",
                        "pacer_doc_id": "03901820921",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/32261936/2/united-states-v-archuleta/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 32261936
                        },
                        "timestamp": "2024-06-18T07:18:49.145962",
                        "docket_id": 32261936,
                        "caseName": "United States v. Archuleta",
                        "case_name_full": "",
                        "docketNumber": "1:08-mj-01136",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2008-07-24",
                        "dateTerminated": "2008-08-20",
                        "assignedTo": "Boyd N Boland",
                        "assigned_to_id": 9895,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, D. Colorado",
                        "court_id": "cod",
                        "court_citation_string": "D. Colo.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2024-04-28T02:15:04.986544+00:00",
                        "pacer_case_id": "108567"
                      },
                      "highlight": {
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_395363266",
                      "_score": 1,
                      "_routing": "32261936",
                      "_source": {
                        "id": 395363266,
                        "docket_entry_id": 386730611,
                        "description": "NOTICE OF ATTORNEY APPEARANCE: Virginia L. Grady appearing for Tobias Lee Archuleta (Grady, Virginia) Modified on 7/28/2008 to reflect that this entry of appearance to be re-filed with the correct attorney's name(tllsl, ). (Entered: 07/28/2008)",
                        "entry_number": 3,
                        "entry_date_filed": "2008-07-28",
                        "short_description": "",
                        "document_type": "PACER Document",
                        "document_number": "3",
                        "pacer_doc_id": "03901823353",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/32261936/3/united-states-v-archuleta/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 32261936
                        },
                        "timestamp": "2024-06-18T07:18:49.186161",
                        "docket_id": 32261936,
                        "caseName": "United States v. Archuleta",
                        "case_name_full": "",
                        "docketNumber": "1:08-mj-01136",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2008-07-24",
                        "dateTerminated": "2008-08-20",
                        "assignedTo": "Boyd N Boland",
                        "assigned_to_id": 9895,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, D. Colorado",
                        "court_id": "cod",
                        "court_citation_string": "D. Colo.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2024-04-28T02:15:05.193501+00:00",
                        "pacer_case_id": "108567"
                      },
                      "highlight": {
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_395363267",
                      "_score": 1,
                      "_routing": "32261936",
                      "_source": {
                        "id": 395363267,
                        "docket_entry_id": 386730612,
                        "description": "NOTICE OF ATTORNEY APPEARANCE: La Fonda R. Jones appearing for Tobias Lee Archuleta (Jones, La Fonda) (Entered: 07/28/2008)",
                        "entry_number": 4,
                        "entry_date_filed": "2008-07-28",
                        "short_description": "",
                        "document_type": "PACER Document",
                        "document_number": "4",
                        "pacer_doc_id": "03901823429",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/32261936/4/united-states-v-archuleta/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 32261936
                        },
                        "timestamp": "2024-06-18T07:18:49.216657",
                        "docket_id": 32261936,
                        "caseName": "United States v. Archuleta",
                        "case_name_full": "",
                        "docketNumber": "1:08-mj-01136",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2008-07-24",
                        "dateTerminated": "2008-08-20",
                        "assignedTo": "Boyd N Boland",
                        "assigned_to_id": 9895,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, D. Colorado",
                        "court_id": "cod",
                        "court_citation_string": "D. Colo.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2024-04-28T02:15:05.220659+00:00",
                        "pacer_case_id": "108567"
                      },
                      "highlight": {
                        "plain_text": [
                          ""
                        ]
                      }
                    }
                  ]
                }
              }
            }
          },
          {
            "_index": "recap_vectors",
            "_id": "33223419",
            "_score": 1,
            "_source": {
              "docket_slug": "united-states-v-byrd",
              "docket_absolute_url": "/docket/33223419/united-states-v-byrd/",
              "court_exact": "kywd",
              "party_id": [
                11263917,
                11263918
              ],
              "party": [
                "USA",
                "Brian Byrd"
              ],
              "attorney_id": [
                7387448,
                7387449,
                9273037,
                7387447
              ],
              "attorney": [
                "Donald J. Meier",
                "Amy M. Sullivan",
                "Patrick J. Bouldin",
                "A. Spencer McKiness"
              ],
              "firm_id": [
                107800,
                107808
              ],
              "firm": [
                "Western Kentucky Federal Community Defender, Inc.",
                "U.S. Attorney Office Louisville"
              ],
              "docket_child": "docket",
              "timestamp": "2024-03-23T05:21:27.186360",
              "docket_id": 33223419,
              "caseName": "United States v. Byrd",
              "case_name_full": "",
              "docketNumber": "3:20-cr-00088",
              "suitNature": "",
              "cause": "",
              "juryDemand": "",
              "jurisdictionType": "",
              "dateArgued": null,
              "dateFiled": "2020-09-16",
              "dateTerminated": "2021-06-21",
              "assignedTo": "Benjamin Beaton",
              "assigned_to_id": null,
              "referredTo": null,
              "referred_to_id": null,
              "court": "District Court, W.D. Kentucky",
              "court_id": "kywd",
              "court_citation_string": "W.D. Ky.",
              "chapter": null,
              "trustee_str": null,
              "date_created": "2021-01-21T16:36:38.746747+00:00",
              "pacer_case_id": "118576"
            },
            "inner_hits": {
              "filter_query_inner_recap_document": {
                "hits": {
                  "total": {
                    "value": 53,
                    "relation": "eq"
                  },
                  "max_score": 1,
                  "hits": [
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_189084783",
                      "_score": 1,
                      "_routing": "33223419",
                      "_source": {
                        "id": 189084783,
                        "docket_entry_id": 183609021,
                        "description": "Proceedings held before Magistrate Judge Regina S. Edwards: Initial Appearance as to Seal 1 held on 8/19/2020. (Court Reporter: Dena Legg.) (DLW) [3:20-mj-00598-RSE]",
                        "entry_number": null,
                        "entry_date_filed": "2020-08-19",
                        "short_description": "",
                        "document_type": "PACER Document",
                        "document_number": null,
                        "pacer_doc_id": "",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 33223419
                        },
                        "timestamp": "2024-05-18T14:43:13.574809",
                        "docket_id": 33223419,
                        "caseName": "United States v. Byrd",
                        "case_name_full": "",
                        "docketNumber": "3:20-cr-00088",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2020-09-16",
                        "dateTerminated": "2021-06-21",
                        "assignedTo": "Benjamin Beaton",
                        "assigned_to_id": null,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, W.D. Kentucky",
                        "court_id": "kywd",
                        "court_citation_string": "W.D. Ky.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2021-12-29T14:14:57.883406+00:00",
                        "pacer_case_id": "118576"
                      },
                      "highlight": {
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_189084811",
                      "_score": 1,
                      "_routing": "33223419",
                      "_source": {
                        "id": 189084811,
                        "docket_entry_id": 183609049,
                        "description": "Judge Beaton held a Change of Plea Hearing for Brian Marchez Byrd on 3/8/2021. Byrd entered a plea of Guilty to Counts 1, 2, and 3. (Court Reporter: Becky Boyd.) (JM)",
                        "entry_number": null,
                        "entry_date_filed": "2021-03-08",
                        "short_description": "",
                        "document_type": "PACER Document",
                        "document_number": null,
                        "pacer_doc_id": "",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 33223419
                        },
                        "timestamp": "2024-05-18T14:43:13.586596",
                        "docket_id": 33223419,
                        "caseName": "United States v. Byrd",
                        "case_name_full": "",
                        "docketNumber": "3:20-cr-00088",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2020-09-16",
                        "dateTerminated": "2021-06-21",
                        "assignedTo": "Benjamin Beaton",
                        "assigned_to_id": null,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, W.D. Kentucky",
                        "court_id": "kywd",
                        "court_citation_string": "W.D. Ky.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2021-12-29T14:14:58.676642+00:00",
                        "pacer_case_id": "118576"
                      },
                      "highlight": {
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_189084803",
                      "_score": 1,
                      "_routing": "33223419",
                      "_source": {
                        "id": 189084803,
                        "docket_entry_id": 183609041,
                        "description": "Proceedings held before Magistrate Judge Colin H. Lindsay: Arraignment as to Brian Byrd held on 9/30/2020. (Digitally Recorded) (KD)",
                        "entry_number": null,
                        "entry_date_filed": "2020-09-30",
                        "short_description": "",
                        "document_type": "PACER Document",
                        "document_number": null,
                        "pacer_doc_id": "",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 33223419
                        },
                        "timestamp": "2024-05-18T14:43:13.595088",
                        "docket_id": 33223419,
                        "caseName": "United States v. Byrd",
                        "case_name_full": "",
                        "docketNumber": "3:20-cr-00088",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2020-09-16",
                        "dateTerminated": "2021-06-21",
                        "assignedTo": "Benjamin Beaton",
                        "assigned_to_id": null,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, W.D. Kentucky",
                        "court_id": "kywd",
                        "court_citation_string": "W.D. Ky.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2021-12-29T14:14:58.440246+00:00",
                        "pacer_case_id": "118576"
                      },
                      "highlight": {
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_189084802",
                      "_score": 1,
                      "_routing": "33223419",
                      "_source": {
                        "id": 189084802,
                        "docket_entry_id": 183609040,
                        "description": "Schedules: Arraignment set for 9/30/2020 at 1:30 PM in VideoConference before Magistrate Judge Colin H. Lindsay. (ALS)",
                        "entry_number": null,
                        "entry_date_filed": "2020-09-16",
                        "short_description": "",
                        "document_type": "PACER Document",
                        "document_number": null,
                        "pacer_doc_id": "",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 33223419
                        },
                        "timestamp": "2024-05-18T14:43:13.602657",
                        "docket_id": 33223419,
                        "caseName": "United States v. Byrd",
                        "case_name_full": "",
                        "docketNumber": "3:20-cr-00088",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2020-09-16",
                        "dateTerminated": "2021-06-21",
                        "assignedTo": "Benjamin Beaton",
                        "assigned_to_id": null,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, W.D. Kentucky",
                        "court_id": "kywd",
                        "court_citation_string": "W.D. Ky.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2021-12-29T14:14:58.417063+00:00",
                        "pacer_case_id": "118576"
                      },
                      "highlight": {
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_189084790",
                      "_score": 1,
                      "_routing": "33223419",
                      "_source": {
                        "id": 189084790,
                        "docket_entry_id": 183609028,
                        "description": "Attorney update in case as to Brian Marchez Byrd. Attorney Donald J. Meier terminated. (DLW) [3:20-mj-00598-RSE]",
                        "entry_number": null,
                        "entry_date_filed": "2020-08-24",
                        "short_description": "",
                        "document_type": "PACER Document",
                        "document_number": null,
                        "pacer_doc_id": "",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 33223419
                        },
                        "timestamp": "2024-05-18T14:43:13.631316",
                        "docket_id": 33223419,
                        "caseName": "United States v. Byrd",
                        "case_name_full": "",
                        "docketNumber": "3:20-cr-00088",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2020-09-16",
                        "dateTerminated": "2021-06-21",
                        "assignedTo": "Benjamin Beaton",
                        "assigned_to_id": null,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, W.D. Kentucky",
                        "court_id": "kywd",
                        "court_citation_string": "W.D. Ky.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2021-12-29T14:14:58.080949+00:00",
                        "pacer_case_id": "118576"
                      },
                      "highlight": {
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_189084782",
                      "_score": 1,
                      "_routing": "33223419",
                      "_source": {
                        "id": 189084782,
                        "docket_entry_id": 183609020,
                        "description": "Arrest of Seal 1 (DLW) [3:20-mj-00598-RSE]",
                        "entry_number": null,
                        "entry_date_filed": "2020-08-19",
                        "short_description": "",
                        "document_type": "PACER Document",
                        "document_number": null,
                        "pacer_doc_id": "",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 33223419
                        },
                        "timestamp": "2024-05-18T14:43:13.640475",
                        "docket_id": 33223419,
                        "caseName": "United States v. Byrd",
                        "case_name_full": "",
                        "docketNumber": "3:20-cr-00088",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2020-09-16",
                        "dateTerminated": "2021-06-21",
                        "assignedTo": "Benjamin Beaton",
                        "assigned_to_id": null,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, W.D. Kentucky",
                        "court_id": "kywd",
                        "court_citation_string": "W.D. Ky.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2021-12-29T14:14:57.860180+00:00",
                        "pacer_case_id": "118576"
                      },
                      "highlight": {
                        "plain_text": [
                          ""
                        ]
                      }
                    }
                  ]
                }
              }
            }
          },
          {
            "_index": "recap_vectors",
            "_id": "68036990",
            "_score": 1,
            "_source": {
              "docket_slug": "united-states-v-mccamery",
              "docket_absolute_url": "/docket/68036990/united-states-v-mccamery/",
              "court_exact": "kywd",
              "party_id": [
                13176916,
                13176917,
                13176918,
                13176919,
                13762043
              ],
              "party": [
                "Samuel McCamery",
                "David Williams",
                "Courtney Peoples",
                "USA",
                "Felander Stewart"
              ],
              "attorney_id": [
                8842856,
                8842857,
                8842858,
                8842859,
                8842860,
                8842861,
                8842862,
                9273038
              ],
              "attorney": [
                "Angela M. Rea",
                "Nicholas D. Mudd",
                "Aaron M. Dyke",
                "Alicia P. Gomez",
                "Larry D. Simon",
                "Scott C. Cox",
                "Scott Coleman Cox , II",
                "A. Spencer McKiness"
              ],
              "firm_id": [
                107808,
                534546,
                737237,
                107800,
                108027
              ],
              "firm": [
                "Western Kentucky Federal Community Defender, Inc.",
                "U.S. Attorney Office Louisville",
                "Mudd Legal Group",
                "Cox & Mazzoli, PLLC",
                "Larry D. Simon"
              ],
              "docket_child": "docket",
              "timestamp": "2024-03-27T09:12:58.737588",
              "docket_id": 68036990,
              "caseName": "United States v. McCamery",
              "case_name_full": "",
              "docketNumber": "3:23-cr-00115",
              "suitNature": "",
              "cause": "",
              "juryDemand": "",
              "jurisdictionType": "",
              "dateArgued": null,
              "dateFiled": "2023-10-18",
              "dateTerminated": null,
              "assignedTo": "Claria Horn Boom",
              "assigned_to_id": 8549,
              "referredTo": "Regina S. Edwards",
              "referred_to_id": 9264,
              "court": "District Court, W.D. Kentucky",
              "court_id": "kywd",
              "court_citation_string": "W.D. Ky.",
              "chapter": null,
              "trustee_str": null,
              "date_created": "2023-11-27T21:52:38.180247+00:00",
              "pacer_case_id": "132375"
            },
            "inner_hits": {
              "filter_query_inner_recap_document": {
                "hits": {
                  "total": {
                    "value": 45,
                    "relation": "eq"
                  },
                  "max_score": 1,
                  "hits": [
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_379112038",
                      "_score": 1,
                      "_routing": "68036990",
                      "_source": {
                        "id": 379112038,
                        "docket_entry_id": 371623728,
                        "description": "Case unsealed as to Samuel McCamery (DJT)",
                        "entry_number": null,
                        "entry_date_filed": "2023-10-24",
                        "short_description": "",
                        "document_type": "PACER Document",
                        "document_number": null,
                        "pacer_doc_id": "",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 68036990
                        },
                        "timestamp": "2024-06-15T04:16:05.834862",
                        "docket_id": 68036990,
                        "caseName": "United States v. McCamery",
                        "case_name_full": "",
                        "docketNumber": "3:23-cr-00115",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2023-10-18",
                        "dateTerminated": null,
                        "assignedTo": "Claria Horn Boom",
                        "assigned_to_id": 8549,
                        "referredTo": "Regina S. Edwards",
                        "referred_to_id": 9264,
                        "court": "District Court, W.D. Kentucky",
                        "court_id": "kywd",
                        "court_citation_string": "W.D. Ky.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2023-11-27T21:52:38.393778+00:00",
                        "pacer_case_id": "132375"
                      },
                      "highlight": {
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_379112039",
                      "_score": 1,
                      "_routing": "68036990",
                      "_source": {
                        "id": 379112039,
                        "docket_entry_id": 371623729,
                        "description": "Arrest of Samuel McCamery (DJT)",
                        "entry_number": null,
                        "entry_date_filed": "2023-10-24",
                        "short_description": "",
                        "document_type": "PACER Document",
                        "document_number": null,
                        "pacer_doc_id": "",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 68036990
                        },
                        "timestamp": "2024-06-15T04:16:05.844346",
                        "docket_id": 68036990,
                        "caseName": "United States v. McCamery",
                        "case_name_full": "",
                        "docketNumber": "3:23-cr-00115",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2023-10-18",
                        "dateTerminated": null,
                        "assignedTo": "Claria Horn Boom",
                        "assigned_to_id": 8549,
                        "referredTo": "Regina S. Edwards",
                        "referred_to_id": 9264,
                        "court": "District Court, W.D. Kentucky",
                        "court_id": "kywd",
                        "court_citation_string": "W.D. Ky.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2023-11-27T21:52:38.451550+00:00",
                        "pacer_case_id": "132375"
                      },
                      "highlight": {
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_379112040",
                      "_score": 1,
                      "_routing": "68036990",
                      "_source": {
                        "id": 379112040,
                        "docket_entry_id": 371623730,
                        "description": "Proceedings held before Magistrate Judge Regina S. Edwards; Initial Appearance as to Samuel McCamery held on 10/24/2023. (Court Reporter Digitally Recorded.) (DJT)",
                        "entry_number": null,
                        "entry_date_filed": "2023-10-24",
                        "short_description": "",
                        "document_type": "PACER Document",
                        "document_number": null,
                        "pacer_doc_id": "",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 68036990
                        },
                        "timestamp": "2024-06-15T04:16:05.853805",
                        "docket_id": 68036990,
                        "caseName": "United States v. McCamery",
                        "case_name_full": "",
                        "docketNumber": "3:23-cr-00115",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2023-10-18",
                        "dateTerminated": null,
                        "assignedTo": "Claria Horn Boom",
                        "assigned_to_id": 8549,
                        "referredTo": "Regina S. Edwards",
                        "referred_to_id": 9264,
                        "court": "District Court, W.D. Kentucky",
                        "court_id": "kywd",
                        "court_citation_string": "W.D. Ky.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2023-11-27T21:52:38.481634+00:00",
                        "pacer_case_id": "132375"
                      },
                      "highlight": {
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_379112045",
                      "_score": 1,
                      "_routing": "68036990",
                      "_source": {
                        "id": 379112045,
                        "docket_entry_id": 371623735,
                        "description": "Case unsealed as to Seal 4 (DJT)",
                        "entry_number": null,
                        "entry_date_filed": "2023-10-26",
                        "short_description": "",
                        "document_type": "PACER Document",
                        "document_number": null,
                        "pacer_doc_id": "",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 68036990
                        },
                        "timestamp": "2024-06-15T04:16:05.864319",
                        "docket_id": 68036990,
                        "caseName": "United States v. McCamery",
                        "case_name_full": "",
                        "docketNumber": "3:23-cr-00115",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2023-10-18",
                        "dateTerminated": null,
                        "assignedTo": "Claria Horn Boom",
                        "assigned_to_id": 8549,
                        "referredTo": "Regina S. Edwards",
                        "referred_to_id": 9264,
                        "court": "District Court, W.D. Kentucky",
                        "court_id": "kywd",
                        "court_citation_string": "W.D. Ky.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2023-11-27T21:52:38.730139+00:00",
                        "pacer_case_id": "132375"
                      },
                      "highlight": {
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_379112041",
                      "_score": 1,
                      "_routing": "68036990",
                      "_source": {
                        "id": 379112041,
                        "docket_entry_id": 371623731,
                        "description": "ORDER ON INITIAL APPEARANCE (EBOC) by Magistrate Judge Regina S. Edwards on 10/24/23; as to Samuel McCamery : IT IS HEREBY ORDERED that the Indictment is UNSEALED as to Defendant McCamery only. At the initial appearance, the defendant acknowledged his identity, was furnished with a copy of the Indictment, was advised of the nature of the charges contained therein and was advised of his rights. The defendant advised the Court that he would retain counsel for future proceedings. Arraignment & Detention Hearing set for 10/25/2023 at 12:00 PM in Louisville Courtroom before Magistrate Judge Regina S. Edwards. IT IS FURTHER ORDERED that the defendant is remanded to the custody of the United States Marshal pending further order of the Court. cc: US Attorney, USP (DJT) (Entered: 10/25/2023)",
                        "entry_number": 12,
                        "entry_date_filed": "2023-10-25",
                        "short_description": "",
                        "document_type": "PACER Document",
                        "document_number": "12",
                        "pacer_doc_id": "08305271369",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/68036990/12/united-states-v-mccamery/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 68036990
                        },
                        "timestamp": "2024-06-15T04:16:05.967350",
                        "docket_id": 68036990,
                        "caseName": "United States v. McCamery",
                        "case_name_full": "",
                        "docketNumber": "3:23-cr-00115",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2023-10-18",
                        "dateTerminated": null,
                        "assignedTo": "Claria Horn Boom",
                        "assigned_to_id": 8549,
                        "referredTo": "Regina S. Edwards",
                        "referred_to_id": 9264,
                        "court": "District Court, W.D. Kentucky",
                        "court_id": "kywd",
                        "court_citation_string": "W.D. Ky.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2023-11-27T21:52:38.542067+00:00",
                        "pacer_case_id": "132375"
                      },
                      "highlight": {
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_379112042",
                      "_score": 1,
                      "_routing": "68036990",
                      "_source": {
                        "id": 379112042,
                        "docket_entry_id": 371623732,
                        "description": "ORDER FOLLOWING ARRAIGNMENT AND SCHEDULING ORDER (EBOC) from proceedings held before Magistrate Judge Regina S. Edwards; Arraignment and Detention Hearing as to Samuel McCamery (1) Count 1,2 held on 10/25/2023: Jury Trial set for 12/19/2023 09:00 AM in Louisville Courtroom before Judge Claria Horn Boom. See ORDER for specific deadlines. The Court having heard arguments from counsel and for the reasons fully stated on the record, it is further ORDERED that the defendant is released on an unsecured bond in the amount of $10,000.00 with conditions pending further order of the Court. (Court Reporter Digitally Recorded.) cc: Counsel, Jury Clerk (DJT) (Entered: 10/25/2023)",
                        "entry_number": 13,
                        "entry_date_filed": "2023-10-25",
                        "short_description": "",
                        "document_type": "PACER Document",
                        "document_number": "13",
                        "pacer_doc_id": "08305272020",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/68036990/13/united-states-v-mccamery/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 68036990
                        },
                        "timestamp": "2024-06-15T04:16:06.042412",
                        "docket_id": 68036990,
                        "caseName": "United States v. McCamery",
                        "case_name_full": "",
                        "docketNumber": "3:23-cr-00115",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2023-10-18",
                        "dateTerminated": null,
                        "assignedTo": "Claria Horn Boom",
                        "assigned_to_id": 8549,
                        "referredTo": "Regina S. Edwards",
                        "referred_to_id": 9264,
                        "court": "District Court, W.D. Kentucky",
                        "court_id": "kywd",
                        "court_citation_string": "W.D. Ky.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2023-11-27T21:52:38.610074+00:00",
                        "pacer_case_id": "132375"
                      },
                      "highlight": {
                        "plain_text": [
                          ""
                        ]
                      }
                    }
                  ]
                }
              }
            }
          },
          {
            "_index": "recap_vectors",
            "_id": "68423813",
            "_score": 1,
            "_source": {
              "docket_slug": "casio-computer-co-ltd-v-the-individuals-corporations-limited",
              "docket_absolute_url": "/docket/68423813/casio-computer-co-ltd-v-the-individuals-corporations-limited/",
              "court_exact": "ilnd",
              "party_id": [],
              "party": [],
              "attorney_id": [],
              "attorney": [],
              "firm_id": [],
              "firm": [],
              "docket_child": "docket",
              "timestamp": "2024-04-10T17:19:49.806134",
              "docket_id": 68423813,
              "caseName": "Casio Computer Co., Ltd. v. The Individuals, Corporations, Limited Liability Companies, Partnerships, and Unincorporated Associations Identified on Schedule A Hereto",
              "case_name_full": "",
              "docketNumber": "1:24-cv-02887",
              "suitNature": "",
              "cause": "",
              "juryDemand": "",
              "jurisdictionType": "",
              "dateArgued": null,
              "dateFiled": "2024-04-10",
              "dateTerminated": null,
              "assignedTo": "Jorge Luis Alonso",
              "assigned_to_id": 86,
              "referredTo": null,
              "referred_to_id": null,
              "court": "District Court, N.D. Illinois",
              "court_id": "ilnd",
              "court_citation_string": "N.D. Ill.",
              "chapter": null,
              "trustee_str": null,
              "date_created": "2024-04-10T17:19:49.719198+00:00",
              "pacer_case_id": "457466",
              "_related_instance_to_ignore": null
            },
            "inner_hits": {
              "filter_query_inner_recap_document": {
                "hits": {
                  "total": {
                    "value": 63,
                    "relation": "eq"
                  },
                  "max_score": 1,
                  "hits": [
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_394766872",
                      "_score": 1,
                      "_routing": "68423813",
                      "_source": {
                        "id": 394766872,
                        "docket_entry_id": 386231162,
                        "description": "",
                        "entry_number": 31,
                        "entry_date_filed": "2024-04-24",
                        "short_description": "extension of time",
                        "document_type": "PACER Document",
                        "document_number": "31",
                        "pacer_doc_id": "067030296527",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/68423813/31/casio-computer-co-ltd-v-the-individuals-corporations-limited/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 68423813
                        },
                        "timestamp": "2024-06-18T02:28:09.754810",
                        "docket_id": 68423813,
                        "caseName": "Casio Computer Co., Ltd. v. The Individuals, Corporations, Limited Liability Companies, Partnerships, and Unincorporated Associations Identified on Schedule A Hereto",
                        "case_name_full": "",
                        "docketNumber": "1:24-cv-02887",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2024-04-10",
                        "dateTerminated": null,
                        "assignedTo": "Jorge Luis Alonso",
                        "assigned_to_id": 86,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, N.D. Illinois",
                        "court_id": "ilnd",
                        "court_citation_string": "N.D. Ill.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2024-04-24T21:17:42.113903+00:00",
                        "pacer_case_id": "457466"
                      },
                      "highlight": {
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_401427558",
                      "_score": 1,
                      "_routing": "68423813",
                      "_source": {
                        "id": 401427558,
                        "docket_entry_id": 392399041,
                        "description": "",
                        "entry_number": 51,
                        "entry_date_filed": "2024-05-31",
                        "short_description": "Extension of Time to File Document",
                        "document_type": "PACER Document",
                        "document_number": "51",
                        "pacer_doc_id": "067030580517",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/68423813/51/casio-computer-co-ltd-v-the-individuals-corporations-limited/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 68423813
                        },
                        "timestamp": "2024-06-20T03:34:09.111008",
                        "docket_id": 68423813,
                        "caseName": "Casio Computer Co., Ltd. v. The Individuals, Corporations, Limited Liability Companies, Partnerships, and Unincorporated Associations Identified on Schedule A Hereto",
                        "case_name_full": "",
                        "docketNumber": "1:24-cv-02887",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2024-04-10",
                        "dateTerminated": null,
                        "assignedTo": "Jorge Luis Alonso",
                        "assigned_to_id": 86,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, N.D. Illinois",
                        "court_id": "ilnd",
                        "court_citation_string": "N.D. Ill.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2024-05-31T21:16:02.437039+00:00",
                        "pacer_case_id": "457466"
                      },
                      "highlight": {
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_402294544",
                      "_score": 1,
                      "_routing": "68423813",
                      "_source": {
                        "id": 402294544,
                        "docket_entry_id": 393233210,
                        "description": "",
                        "entry_number": 60,
                        "entry_date_filed": "2024-06-10",
                        "short_description": "Order on Motion for Extension of Time to File",
                        "document_type": "PACER Document",
                        "document_number": "60",
                        "pacer_doc_id": "067030618159",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/68423813/60/casio-computer-co-ltd-v-the-individuals-corporations-limited/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 68423813
                        },
                        "timestamp": "2024-06-20T08:43:41.303767",
                        "docket_id": 68423813,
                        "caseName": "Casio Computer Co., Ltd. v. The Individuals, Corporations, Limited Liability Companies, Partnerships, and Unincorporated Associations Identified on Schedule A Hereto",
                        "case_name_full": "",
                        "docketNumber": "1:24-cv-02887",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2024-04-10",
                        "dateTerminated": null,
                        "assignedTo": "Jorge Luis Alonso",
                        "assigned_to_id": 86,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, N.D. Illinois",
                        "court_id": "ilnd",
                        "court_citation_string": "N.D. Ill.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2024-06-10T16:19:33.155715+00:00",
                        "pacer_case_id": "457466"
                      },
                      "highlight": {
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_400654959",
                      "_score": 1,
                      "_routing": "68423813",
                      "_source": {
                        "id": 400654959,
                        "docket_entry_id": 391649403,
                        "description": "",
                        "entry_number": 45,
                        "entry_date_filed": "2024-05-14",
                        "short_description": "attorney appearance",
                        "document_type": "PACER Document",
                        "document_number": "45",
                        "pacer_doc_id": "067030396085",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/68423813/45/casio-computer-co-ltd-v-the-individuals-corporations-limited/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 68423813
                        },
                        "timestamp": "2024-06-19T21:32:09.404123",
                        "docket_id": 68423813,
                        "caseName": "Casio Computer Co., Ltd. v. The Individuals, Corporations, Limited Liability Companies, Partnerships, and Unincorporated Associations Identified on Schedule A Hereto",
                        "case_name_full": "",
                        "docketNumber": "1:24-cv-02887",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2024-04-10",
                        "dateTerminated": null,
                        "assignedTo": "Jorge Luis Alonso",
                        "assigned_to_id": 86,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, N.D. Illinois",
                        "court_id": "ilnd",
                        "court_citation_string": "N.D. Ill.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2024-05-28T06:55:39.572598+00:00",
                        "pacer_case_id": "457466"
                      },
                      "highlight": {
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_400654960",
                      "_score": 1,
                      "_routing": "68423813",
                      "_source": {
                        "id": 400654960,
                        "docket_entry_id": 391649404,
                        "description": "",
                        "entry_number": 46,
                        "entry_date_filed": "2024-05-16",
                        "short_description": "notice of voluntary dismissal",
                        "document_type": "PACER Document",
                        "document_number": "46",
                        "pacer_doc_id": "067030405495",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/68423813/46/casio-computer-co-ltd-v-the-individuals-corporations-limited/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 68423813
                        },
                        "timestamp": "2024-06-19T21:32:09.419882",
                        "docket_id": 68423813,
                        "caseName": "Casio Computer Co., Ltd. v. The Individuals, Corporations, Limited Liability Companies, Partnerships, and Unincorporated Associations Identified on Schedule A Hereto",
                        "case_name_full": "",
                        "docketNumber": "1:24-cv-02887",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2024-04-10",
                        "dateTerminated": null,
                        "assignedTo": "Jorge Luis Alonso",
                        "assigned_to_id": 86,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, N.D. Illinois",
                        "court_id": "ilnd",
                        "court_citation_string": "N.D. Ill.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2024-05-28T06:55:39.611169+00:00",
                        "pacer_case_id": "457466"
                      },
                      "highlight": {
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_400654961",
                      "_score": 1,
                      "_routing": "68423813",
                      "_source": {
                        "id": 400654961,
                        "docket_entry_id": 391649405,
                        "description": "",
                        "entry_number": 47,
                        "entry_date_filed": "2024-05-17",
                        "short_description": "notice of voluntary dismissal",
                        "document_type": "PACER Document",
                        "document_number": "47",
                        "pacer_doc_id": "067030414353",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/68423813/47/casio-computer-co-ltd-v-the-individuals-corporations-limited/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 68423813
                        },
                        "timestamp": "2024-06-19T21:32:09.435617",
                        "docket_id": 68423813,
                        "caseName": "Casio Computer Co., Ltd. v. The Individuals, Corporations, Limited Liability Companies, Partnerships, and Unincorporated Associations Identified on Schedule A Hereto",
                        "case_name_full": "",
                        "docketNumber": "1:24-cv-02887",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2024-04-10",
                        "dateTerminated": null,
                        "assignedTo": "Jorge Luis Alonso",
                        "assigned_to_id": 86,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, N.D. Illinois",
                        "court_id": "ilnd",
                        "court_citation_string": "N.D. Ill.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2024-05-28T06:55:39.650958+00:00",
                        "pacer_case_id": "457466"
                      },
                      "highlight": {
                        "plain_text": [
                          ""
                        ]
                      }
                    }
                  ]
                }
              }
            }
          }
        ]
      },
      "status": 200
    },
    {
      "took": 6479,
      "timed_out": false,
      "_shards": {
        "total": 30,
        "successful": 30,
        "skipped": 0,
        "failed": 0
      },
      "hits": {
        "total": {
          "value": 57443940,
          "relation": "eq"
        },
        "max_score": null,
        "hits": []
      },
      "aggregations": {
        "unique_documents": {
          "value": 58135861
        }
      },
      "status": 200
    },
    {
      "took": 6469,
      "timed_out": false,
      "_shards": {
        "total": 30,
        "successful": 30,
        "skipped": 0,
        "failed": 0
      },
      "hits": {
        "total": {
          "value": 407250259,
          "relation": "eq"
        },
        "max_score": null,
        "hits": []
      },
      "aggregations": {
        "unique_documents": {
          "value": 412675826
        }
      },
      "status": 200
    }
  ]
}

United States:

{
  "statusCode": 502,
  "error": "Bad Gateway",
  "message": "Client request timeout"
}

Shoot.

Finally,

What's the current size of the recap_index vectors?

Do you mean in terms of document count or disk size?

albertisfu commented 1 month ago

Thanks. Yeah, the responses confirmed that the query response time depends on the main query, even though the count queries are faster than the main query.

First query: Total time: "took": 1276 Main query: "took": 1276 Parent count query: "took": 562 Child count query: "took": 513

Second query: Total time: "took": 13922 Main query: "took": 13922 Parent count query: "took": 6545 Child count query: "took": 6118

Third query: Total time: "took": 17854 Main query: "took": 17854 Parent count query: "took": 6479 Child count query: "took": 6469

It seems that, on average, the count queries took less than 50% of the main query time.

It'd be interesting to see the relationship between query times before applying the cardinality counts. This query is the third one above but uses the exact counts.

GET recap_vectors/_msearch

{"index":["recap_vectors"]}
{"query":{"bool":{"should":[{"has_child":{"type":"recap_document","score_mode":"max","query":{"bool":{"should":[{"query_string":{"fields":["case_name_full","suitNature","juryDemand","cause","assignedTo","referredTo","court","court_id","court_citation_string","chapter","trustee_str","short_description","plain_text","document_type","caseName^4.0","docketNumber^3.0","description^2.0"],"query":"MINUTE AND ORDER","quote_field_suffix":".exact","default_operator":"AND","tie_breaker":0.3,"fuzziness":2}},{"query_string":{"fields":["case_name_full","suitNature","juryDemand","cause","assignedTo","referredTo","court","court_id","court_citation_string","chapter","trustee_str","short_description","plain_text","document_type","caseName^4.0","docketNumber^3.0","description^2.0"],"query":"MINUTE AND ORDER","quote_field_suffix":".exact","default_operator":"AND","type":"phrase","fuzziness":2}}],"minimum_should_match":1}},"inner_hits":{"name":"filter_query_inner_recap_document","size":6,"_source":{"excludes":["plain_text"]},"highlight":{"fields":{"short_description":{"type":"fvh","matched_fields":["short_description","short_description.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"description":{"type":"fvh","matched_fields":["description","description.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"plain_text":{"type":"fvh","matched_fields":["plain_text","plain_text.exact"],"fragment_size":100,"no_match_size":500,"number_of_fragments":1,"pre_tags":["<mark>"],"post_tags":["</mark>"]}}}}}},{"bool":{"filter":[{"match":{"docket_child":"docket"}}],"should":[{"query_string":{"fields":["case_name_full","suitNature","cause","juryDemand","assignedTo","referredTo","court","court_id","court_citation_string","chapter","trustee_str","caseName^4.0","docketNumber^3.0"],"query":"MINUTE AND ORDER","quote_field_suffix":".exact","default_operator":"AND","tie_breaker":0.3,"fuzziness":2}},{"query_string":{"fields":["case_name_full","suitNature","cause","juryDemand","assignedTo","referredTo","court","court_id","court_citation_string","chapter","trustee_str","caseName^4.0","docketNumber^3.0"],"query":"MINUTE AND ORDER","quote_field_suffix":".exact","default_operator":"AND","type":"phrase","fuzziness":2}}],"minimum_should_match":1}}]}},"sort":[{"_score":{"order":"desc"}}],"highlight":{"fields":{"assignedTo":{"type":"fvh","matched_fields":["assignedTo","assignedTo.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"caseName":{"type":"fvh","matched_fields":["caseName","caseName.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"cause":{"type":"fvh","matched_fields":["cause","cause.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"court_citation_string":{"type":"fvh","matched_fields":["court_citation_string","court_citation_string.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"docketNumber":{"type":"fvh","matched_fields":["docketNumber","docketNumber.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"juryDemand":{"type":"fvh","matched_fields":["juryDemand","juryDemand.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"referredTo":{"type":"fvh","matched_fields":["referredTo","referredTo.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"suitNature":{"type":"fvh","matched_fields":["suitNature","suitNature.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]}}},"size":10,"from":0,"_source":{"excludes":[]}}
{"index":["recap_vectors"]}
{"query":{"bool":{"should":[{"has_child":{"type":"recap_document","score_mode":"max","query":{"bool":{"should":[{"query_string":{"fields":["case_name_full","suitNature","juryDemand","cause","assignedTo","referredTo","court","court_id","court_citation_string","chapter","trustee_str","short_description","plain_text","document_type","caseName^4.0","docketNumber^3.0","description^2.0"],"query":"MINUTE AND ORDER","quote_field_suffix":".exact","default_operator":"AND","tie_breaker":0.3,"fuzziness":2}},{"query_string":{"fields":["case_name_full","suitNature","juryDemand","cause","assignedTo","referredTo","court","court_id","court_citation_string","chapter","trustee_str","short_description","plain_text","document_type","caseName^4.0","docketNumber^3.0","description^2.0"],"query":"MINUTE AND ORDER","quote_field_suffix":".exact","default_operator":"AND","type":"phrase","fuzziness":2}}],"minimum_should_match":1}}}},{"bool":{"filter":[{"match":{"docket_child":"docket"}}],"should":[{"query_string":{"fields":["case_name_full","suitNature","cause","juryDemand","assignedTo","referredTo","court","court_id","court_citation_string","chapter","trustee_str","caseName^4.0","docketNumber^3.0"],"query":"MINUTE AND ORDER","quote_field_suffix":".exact","default_operator":"AND","tie_breaker":0.3,"fuzziness":2}},{"query_string":{"fields":["case_name_full","suitNature","cause","juryDemand","assignedTo","referredTo","court","court_id","court_citation_string","chapter","trustee_str","caseName^4.0","docketNumber^3.0"],"query":"MINUTE AND ORDER","quote_field_suffix":".exact","default_operator":"AND","type":"phrase","fuzziness":2}}],"minimum_should_match":1}}]}},"size":0,"track_total_hits":true}
{"index":["recap_vectors"]}
{"query":{"bool":{"should":[{"query_string":{"fields":["case_name_full","suitNature","juryDemand","cause","assignedTo","referredTo","court","court_id","court_citation_string","chapter","trustee_str","short_description","plain_text","document_type","caseName^4.0","docketNumber^3.0","description^2.0"],"query":"MINUTE AND ORDER","quote_field_suffix":".exact","default_operator":"AND","tie_breaker":0.3,"fuzziness":2}},{"query_string":{"fields":["case_name_full","suitNature","juryDemand","cause","assignedTo","referredTo","court","court_id","court_citation_string","chapter","trustee_str","short_description","plain_text","document_type","caseName^4.0","docketNumber^3.0","description^2.0"],"query":"MINUTE AND ORDER","quote_field_suffix":".exact","default_operator":"AND","type":"phrase","fuzziness":2}}],"minimum_should_match":1,"filter":[{"match":{"docket_child":"recap_document"}}]}},"size":0,"track_total_hits":true}

Since the profile query "United States" timed out, let's check the profile in this one which is faster:

GET recap_vectors/_msearch

{"index":["recap_vectors"]}
{"profile": true, "query":{"bool":{"should":[{"has_child":{"type":"recap_document","score_mode":"max","query":{"match_all":{}},"inner_hits":{"name":"filter_query_inner_recap_document","size":6,"_source":{"excludes":["plain_text"]},"highlight":{"fields":{"short_description":{"type":"fvh","matched_fields":["short_description","short_description.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"description":{"type":"fvh","matched_fields":["description","description.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"plain_text":{"type":"fvh","matched_fields":["plain_text","plain_text.exact"],"fragment_size":100,"no_match_size":500,"number_of_fragments":1,"pre_tags":["<mark>"],"post_tags":["</mark>"]}}}}}},{"function_score":{"query":{"match":{"docket_child":"docket"}},"boost_mode":"replace","functions":[{"script_score":{"script":{"source":" return 0; "}}}]}}],"minimum_should_match":1}},"sort":[{"_score":{"order":"desc"}}],"highlight":{"fields":{"assignedTo":{"type":"fvh","matched_fields":["assignedTo","assignedTo.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"caseName":{"type":"fvh","matched_fields":["caseName","caseName.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"cause":{"type":"fvh","matched_fields":["cause","cause.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"court_citation_string":{"type":"fvh","matched_fields":["court_citation_string","court_citation_string.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"docketNumber":{"type":"fvh","matched_fields":["docketNumber","docketNumber.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"juryDemand":{"type":"fvh","matched_fields":["juryDemand","juryDemand.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"referredTo":{"type":"fvh","matched_fields":["referredTo","referredTo.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"suitNature":{"type":"fvh","matched_fields":["suitNature","suitNature.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]}}},"size":10,"from":0,"_source":{"excludes":[]}}
{"index":["recap_vectors"]}
{"profile": true, "query":{"bool":{"should":[{"has_child":{"type":"recap_document","score_mode":"max","query":{"match_all":{}}}},{"function_score":{"query":{"match":{"docket_child":"docket"}},"boost_mode":"replace","functions":[{"script_score":{"script":{"source":" return 0; "}}}]}}],"minimum_should_match":1}},"aggs":{"unique_documents":{"cardinality":{"field":"docket_id","precision_threshold":2000}}},"size":0,"track_total_hits":true}
{"index":["recap_vectors"]}
{"profile": true, "query":{"match":{"docket_child":"recap_document"}},"aggs":{"unique_documents":{"cardinality":{"field":"id","precision_threshold":2000}}},"size":0,"track_total_hits":true}

The response from this one will be massive, so it might be better to save on a txt file and attach it to the comment.

Do you mean in terms of document count or disk size?

Yeah, I mean disk size.

mlissner commented 1 month ago

Here's the exact counts one:

{
  "took": 9726,
  "responses": [
    {
      "took": 9726,
      "timed_out": false,
      "_shards": {
        "total": 30,
        "successful": 30,
        "skipped": 0,
        "failed": 0
      },
      "hits": {
        "total": {
          "value": 10000,
          "relation": "gte"
        },
        "max_score": 334.2776,
        "hits": [
          {
            "_index": "recap_vectors",
            "_id": "26215427",
            "_score": 334.2776,
            "_source": {
              "docket_slug": "miscellaneous-minute-entry-orders-for-2015",
              "docket_absolute_url": "/docket/26215427/miscellaneous-minute-entry-orders-for-2015/",
              "court_exact": "alsd",
              "party_id": [],
              "party": [],
              "attorney_id": [],
              "attorney": [],
              "firm_id": [],
              "firm": [],
              "docket_child": "docket",
              "timestamp": "2024-03-21T04:35:35.275664",
              "docket_id": 26215427,
              "caseName": "Miscellaneous Minute Entry Orders for 2015",
              "case_name_full": "",
              "docketNumber": "1:15-mc-01000",
              "suitNature": "",
              "cause": "",
              "juryDemand": "",
              "jurisdictionType": "",
              "dateArgued": null,
              "dateFiled": "2014-12-23",
              "dateTerminated": null,
              "assignedTo": "William H. Steele",
              "assigned_to_id": 3093,
              "referredTo": null,
              "referred_to_id": null,
              "court": "District Court, S.D. Alabama",
              "court_id": "alsd",
              "court_citation_string": "S.D. Ala.",
              "chapter": null,
              "trustee_str": null,
              "date_created": "2020-12-29T03:40:48.725561+00:00",
              "pacer_case_id": "56951"
            },
            "highlight": {
              "caseName": [
                "Miscellaneous <mark>Minute</mark> Entry <mark>Orders</mark> for 2015"
              ]
            },
            "inner_hits": {
              "filter_query_inner_recap_document": {
                "hits": {
                  "total": {
                    "value": 13,
                    "relation": "eq"
                  },
                  "max_score": 167.55457,
                  "hits": [
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_264954417",
                      "_score": 167.55457,
                      "_routing": "26215427",
                      "_source": {
                        "id": 264954417,
                        "docket_entry_id": 258774709,
                        "description": "",
                        "entry_number": 8,
                        "entry_date_filed": "2015-07-01",
                        "short_description": "Order",
                        "document_type": "PACER Document",
                        "document_number": "8",
                        "pacer_doc_id": "02102196243",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/26215427/8/miscellaneous-minute-entry-orders-for-2015/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 26215427
                        },
                        "timestamp": "2024-05-28T23:32:13.074280",
                        "docket_id": 26215427,
                        "caseName": "Miscellaneous Minute Entry Orders for 2015",
                        "case_name_full": "",
                        "docketNumber": "1:15-mc-01000",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2014-12-23",
                        "dateTerminated": null,
                        "assignedTo": "William H. Steele",
                        "assigned_to_id": 3093,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2023-03-28T11:50:39.412997+00:00",
                        "pacer_case_id": "56951"
                      },
                      "highlight": {
                        "short_description": [
                          "<mark>Order</mark>"
                        ],
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_268332655",
                      "_score": 167.55457,
                      "_routing": "26215427",
                      "_source": {
                        "id": 268332655,
                        "docket_entry_id": 262141968,
                        "description": "",
                        "entry_number": 10,
                        "entry_date_filed": "2015-07-29",
                        "short_description": "Order",
                        "document_type": "PACER Document",
                        "document_number": "10",
                        "pacer_doc_id": "02102208406",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/26215427/10/miscellaneous-minute-entry-orders-for-2015/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 26215427
                        },
                        "timestamp": "2024-05-29T10:06:40.138937",
                        "docket_id": 26215427,
                        "caseName": "Miscellaneous Minute Entry Orders for 2015",
                        "case_name_full": "",
                        "docketNumber": "1:15-mc-01000",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2014-12-23",
                        "dateTerminated": null,
                        "assignedTo": "William H. Steele",
                        "assigned_to_id": 3093,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2023-04-04T08:13:58.306942+00:00",
                        "pacer_case_id": "56951"
                      },
                      "highlight": {
                        "short_description": [
                          "<mark>Order</mark>"
                        ],
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_261159781",
                      "_score": 167.55457,
                      "_routing": "26215427",
                      "_source": {
                        "id": 261159781,
                        "docket_entry_id": 254987243,
                        "description": "",
                        "entry_number": 6,
                        "entry_date_filed": "2015-05-28",
                        "short_description": "Order",
                        "document_type": "PACER Document",
                        "document_number": "6",
                        "pacer_doc_id": "02102179979",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/26215427/6/miscellaneous-minute-entry-orders-for-2015/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 26215427
                        },
                        "timestamp": "2024-05-28T11:24:15.834234",
                        "docket_id": 26215427,
                        "caseName": "Miscellaneous Minute Entry Orders for 2015",
                        "case_name_full": "",
                        "docketNumber": "1:15-mc-01000",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2014-12-23",
                        "dateTerminated": null,
                        "assignedTo": "William H. Steele",
                        "assigned_to_id": 3093,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2023-03-23T08:59:57.198125+00:00",
                        "pacer_case_id": "56951"
                      },
                      "highlight": {
                        "short_description": [
                          "<mark>Order</mark>"
                        ],
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_265126825",
                      "_score": 167.55457,
                      "_routing": "26215427",
                      "_source": {
                        "id": 265126825,
                        "docket_entry_id": 258947045,
                        "description": "",
                        "entry_number": 9,
                        "entry_date_filed": "2015-07-02",
                        "short_description": "Order",
                        "document_type": "PACER Document",
                        "document_number": "9",
                        "pacer_doc_id": "02102197104",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/26215427/9/miscellaneous-minute-entry-orders-for-2015/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 26215427
                        },
                        "timestamp": "2024-05-29T00:04:45.100130",
                        "docket_id": 26215427,
                        "caseName": "Miscellaneous Minute Entry Orders for 2015",
                        "case_name_full": "",
                        "docketNumber": "1:15-mc-01000",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2014-12-23",
                        "dateTerminated": null,
                        "assignedTo": "William H. Steele",
                        "assigned_to_id": 3093,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2023-03-28T13:57:52.741104+00:00",
                        "pacer_case_id": "56951"
                      },
                      "highlight": {
                        "short_description": [
                          "<mark>Order</mark>"
                        ],
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_271124668",
                      "_score": 167.55457,
                      "_routing": "26215427",
                      "_source": {
                        "id": 271124668,
                        "docket_entry_id": 264931484,
                        "description": "",
                        "entry_number": 11,
                        "entry_date_filed": "2015-08-25",
                        "short_description": "Order",
                        "document_type": "PACER Document",
                        "document_number": "11",
                        "pacer_doc_id": "02102221173",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/26215427/11/miscellaneous-minute-entry-orders-for-2015/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 26215427
                        },
                        "timestamp": "2024-05-29T19:13:10.605333",
                        "docket_id": 26215427,
                        "caseName": "Miscellaneous Minute Entry Orders for 2015",
                        "case_name_full": "",
                        "docketNumber": "1:15-mc-01000",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2014-12-23",
                        "dateTerminated": null,
                        "assignedTo": "William H. Steele",
                        "assigned_to_id": 3093,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2023-04-05T20:44:27.173368+00:00",
                        "pacer_case_id": "56951"
                      },
                      "highlight": {
                        "short_description": [
                          "<mark>Order</mark>"
                        ],
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_259542948",
                      "_score": 167.55457,
                      "_routing": "26215427",
                      "_source": {
                        "id": 259542948,
                        "docket_entry_id": 253372127,
                        "description": "",
                        "entry_number": 5,
                        "entry_date_filed": "2015-05-12",
                        "short_description": "Order",
                        "document_type": "PACER Document",
                        "document_number": "5",
                        "pacer_doc_id": "02102173420",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/26215427/5/miscellaneous-minute-entry-orders-for-2015/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 26215427
                        },
                        "timestamp": "2024-05-28T06:40:05.421714",
                        "docket_id": 26215427,
                        "caseName": "Miscellaneous Minute Entry Orders for 2015",
                        "case_name_full": "",
                        "docketNumber": "1:15-mc-01000",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2014-12-23",
                        "dateTerminated": null,
                        "assignedTo": "William H. Steele",
                        "assigned_to_id": 3093,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2023-03-22T12:02:45.376875+00:00",
                        "pacer_case_id": "56951"
                      },
                      "highlight": {
                        "short_description": [
                          "<mark>Order</mark>"
                        ],
                        "plain_text": [
                          ""
                        ]
                      }
                    }
                  ]
                }
              }
            }
          },
          {
            "_index": "recap_vectors",
            "_id": "16690447",
            "_score": 329.5467,
            "_source": {
              "docket_slug": "miscellaneous-minute-entry-orders-for-2020",
              "docket_absolute_url": "/docket/16690447/miscellaneous-minute-entry-orders-for-2020/",
              "court_exact": "alsd",
              "party_id": [],
              "party": [],
              "attorney_id": [],
              "attorney": [],
              "firm_id": [],
              "firm": [],
              "docket_child": "docket",
              "timestamp": "2024-03-20T03:32:16.745854",
              "docket_id": 16690447,
              "caseName": "Miscellaneous Minute Entry Orders for 2020",
              "case_name_full": "",
              "docketNumber": "1:20-mc-01000",
              "suitNature": "",
              "cause": "No cause code entered",
              "juryDemand": "",
              "jurisdictionType": "",
              "dateArgued": null,
              "dateFiled": "2020-01-02",
              "dateTerminated": null,
              "assignedTo": "Jeffrey Uhlman Beaverstock",
              "assigned_to_id": 8545,
              "referredTo": null,
              "referred_to_id": null,
              "court": "District Court, S.D. Alabama",
              "court_id": "alsd",
              "court_citation_string": "S.D. Ala.",
              "chapter": null,
              "trustee_str": null,
              "date_created": "2020-01-14T17:22:51.992373+00:00",
              "pacer_case_id": "66238"
            },
            "highlight": {
              "caseName": [
                "Miscellaneous <mark>Minute</mark> Entry <mark>Orders</mark> for 2020"
              ]
            },
            "inner_hits": {
              "filter_query_inner_recap_document": {
                "hits": {
                  "total": {
                    "value": 22,
                    "relation": "eq"
                  },
                  "max_score": 165.63672,
                  "hits": [
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_129022220",
                      "_score": 165.63672,
                      "_routing": "16690447",
                      "_source": {
                        "id": 129022220,
                        "docket_entry_id": 124580523,
                        "description": "Order In Re: The Judiciary Video Teleconferencing for Criminal Proceedings during the National Emergency caused by the Coronavirus Disease (COVID-19). Signed by Chief Judge Kristi K. DuBose on 3/30/2020.  (jlr)",
                        "entry_number": 5,
                        "entry_date_filed": "2020-03-30",
                        "short_description": "Order",
                        "document_type": "PACER Document",
                        "document_number": "5",
                        "pacer_doc_id": "02102993400",
                        "attachment_number": null,
                        "is_available": true,
                        "page_count": 2,
                        "filepath_local": "recap/gov.uscourts.alsd.66238/gov.uscourts.alsd.66238.5.0.pdf",
                        "absolute_url": "/docket/16690447/5/miscellaneous-minute-entry-orders-for-2020/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 16690447
                        },
                        "timestamp": "2024-05-09T13:59:39.753641",
                        "docket_id": 16690447,
                        "caseName": "Miscellaneous Minute Entry Orders for 2020",
                        "case_name_full": "",
                        "docketNumber": "1:20-mc-01000",
                        "suitNature": "",
                        "cause": "No cause code entered",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2020-01-02",
                        "dateTerminated": null,
                        "assignedTo": "Jeffrey Uhlman Beaverstock",
                        "assigned_to_id": 8545,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2020-03-30T17:18:34.897159+00:00",
                        "pacer_case_id": "66238"
                      },
                      "highlight": {
                        "short_description": [
                          "<mark>Order</mark>"
                        ],
                        "plain_text": [
                          """
                                              <mark>ORDER</mark>

       The Judicial Conference of the United States"""
                        ],
                        "description": [
                          "<mark>Order</mark> In Re: The Judiciary Video Teleconferencing for Criminal Proceedings during the National Emergency caused by the Coronavirus Disease (COVID-19). Signed by Chief Judge Kristi K. DuBose on 3/30/2020.  (jlr)"
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_129123046",
                      "_score": 165.63672,
                      "_routing": "16690447",
                      "_source": {
                        "id": 129123046,
                        "docket_entry_id": 124680516,
                        "description": "Order In Re: The Judiciary Video Teleconferencing for Criminal Proceedings during the National Emergency caused by the Coronavirus Disease (COVID-19). Signed by Chief Judge Kristi K. DuBose on 3/30/2020.  (jlr)",
                        "entry_number": 6,
                        "entry_date_filed": "2020-03-30",
                        "short_description": "Order",
                        "document_type": "PACER Document",
                        "document_number": "6",
                        "pacer_doc_id": "02102993400",
                        "attachment_number": null,
                        "is_available": true,
                        "page_count": 2,
                        "filepath_local": "recap/gov.uscourts.alsd.66238/gov.uscourts.alsd.66238.6.0.pdf",
                        "absolute_url": "/docket/16690447/6/miscellaneous-minute-entry-orders-for-2020/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 16690447
                        },
                        "timestamp": "2024-05-09T14:39:53.010084",
                        "docket_id": 16690447,
                        "caseName": "Miscellaneous Minute Entry Orders for 2020",
                        "case_name_full": "",
                        "docketNumber": "1:20-mc-01000",
                        "suitNature": "",
                        "cause": "No cause code entered",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2020-01-02",
                        "dateTerminated": null,
                        "assignedTo": "Jeffrey Uhlman Beaverstock",
                        "assigned_to_id": 8545,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2020-03-31T15:20:15.252987+00:00",
                        "pacer_case_id": "66238"
                      },
                      "highlight": {
                        "short_description": [
                          "<mark>Order</mark>"
                        ],
                        "plain_text": [
                          """
                                              <mark>ORDER</mark>

       The Judicial Conference of the United States"""
                        ],
                        "description": [
                          "<mark>Order</mark> In Re: The Judiciary Video Teleconferencing for Criminal Proceedings during the National Emergency caused by the Coronavirus Disease (COVID-19). Signed by Chief Judge Kristi K. DuBose on 3/30/2020.  (jlr)"
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_153147629",
                      "_score": 165.62741,
                      "_routing": "16690447",
                      "_source": {
                        "id": 153147629,
                        "docket_entry_id": 148370393,
                        "description": "Order entered extending Grand Jury Panels 19-1, 19-2, and 19-3 for an additional six months, as further set out.  Signed by Chief Judge Kristi K. DuBose on 12/1/20.  (jlr)",
                        "entry_number": 21,
                        "entry_date_filed": "2020-12-01",
                        "short_description": "Order",
                        "document_type": "PACER Document",
                        "document_number": "21",
                        "pacer_doc_id": "02103096741",
                        "attachment_number": null,
                        "is_available": true,
                        "page_count": 1,
                        "filepath_local": "recap/gov.uscourts.alsd.66238/gov.uscourts.alsd.66238.21.0.pdf",
                        "absolute_url": "/docket/16690447/21/miscellaneous-minute-entry-orders-for-2020/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 16690447
                        },
                        "timestamp": "2024-05-13T07:02:50.849202",
                        "docket_id": 16690447,
                        "caseName": "Miscellaneous Minute Entry Orders for 2020",
                        "case_name_full": "",
                        "docketNumber": "1:20-mc-01000",
                        "suitNature": "",
                        "cause": "No cause code entered",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2020-01-02",
                        "dateTerminated": null,
                        "assignedTo": "Jeffrey Uhlman Beaverstock",
                        "assigned_to_id": 8545,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2020-12-01T18:19:45.767197+00:00",
                        "pacer_case_id": "66238"
                      },
                      "highlight": {
                        "short_description": [
                          "<mark>Order</mark>"
                        ],
                        "plain_text": [
                          """)

                                             <mark>ORDER</mark>

       President Donald J. Trump and Governor Kay"""
                        ],
                        "description": [
                          "<mark>Order</mark> entered extending Grand Jury Panels 19-1, 19-2, and 19-3 for an additional six months, as further set out.  Signed by Chief Judge Kristi K. DuBose on 12/1/20.  (jlr)"
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_121117778",
                      "_score": 164.76134,
                      "_routing": "16690447",
                      "_source": {
                        "id": 121117778,
                        "docket_entry_id": 116740863,
                        "description": "",
                        "entry_number": 2,
                        "entry_date_filed": "2020-01-22",
                        "short_description": "Order",
                        "document_type": "PACER Document",
                        "document_number": "2",
                        "pacer_doc_id": "02102955040",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/16690447/2/miscellaneous-minute-entry-orders-for-2020/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 16690447
                        },
                        "timestamp": "2024-05-08T06:24:03.219790",
                        "docket_id": 16690447,
                        "caseName": "Miscellaneous Minute Entry Orders for 2020",
                        "case_name_full": "",
                        "docketNumber": "1:20-mc-01000",
                        "suitNature": "",
                        "cause": "No cause code entered",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2020-01-02",
                        "dateTerminated": null,
                        "assignedTo": "Jeffrey Uhlman Beaverstock",
                        "assigned_to_id": 8545,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2020-01-22T18:22:38.407079+00:00",
                        "pacer_case_id": "66238"
                      },
                      "highlight": {
                        "short_description": [
                          "<mark>Order</mark>"
                        ],
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_136662232",
                      "_score": 164.76134,
                      "_routing": "16690447",
                      "_source": {
                        "id": 136662232,
                        "docket_entry_id": 132136432,
                        "description": "",
                        "entry_number": 10,
                        "entry_date_filed": "2020-06-17",
                        "short_description": "Order",
                        "document_type": "PACER Document",
                        "document_number": "10",
                        "pacer_doc_id": "02103025567",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/16690447/10/miscellaneous-minute-entry-orders-for-2020/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 16690447
                        },
                        "timestamp": "2024-05-10T20:51:31.036967",
                        "docket_id": 16690447,
                        "caseName": "Miscellaneous Minute Entry Orders for 2020",
                        "case_name_full": "",
                        "docketNumber": "1:20-mc-01000",
                        "suitNature": "",
                        "cause": "No cause code entered",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2020-01-02",
                        "dateTerminated": null,
                        "assignedTo": "Jeffrey Uhlman Beaverstock",
                        "assigned_to_id": 8545,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2020-06-17T16:20:45.000658+00:00",
                        "pacer_case_id": "66238"
                      },
                      "highlight": {
                        "short_description": [
                          "<mark>Order</mark>"
                        ],
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_128028332",
                      "_score": 164.76134,
                      "_routing": "16690447",
                      "_source": {
                        "id": 128028332,
                        "docket_entry_id": 123593636,
                        "description": "",
                        "entry_number": 4,
                        "entry_date_filed": "2020-03-19",
                        "short_description": "Order",
                        "document_type": "PACER Document",
                        "document_number": "4",
                        "pacer_doc_id": "02102989727",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/16690447/4/miscellaneous-minute-entry-orders-for-2020/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 16690447
                        },
                        "timestamp": "2024-05-09T10:00:36.269381",
                        "docket_id": 16690447,
                        "caseName": "Miscellaneous Minute Entry Orders for 2020",
                        "case_name_full": "",
                        "docketNumber": "1:20-mc-01000",
                        "suitNature": "",
                        "cause": "No cause code entered",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2020-01-02",
                        "dateTerminated": null,
                        "assignedTo": "Jeffrey Uhlman Beaverstock",
                        "assigned_to_id": 8545,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2020-03-19T21:25:39.362823+00:00",
                        "pacer_case_id": "66238"
                      },
                      "highlight": {
                        "short_description": [
                          "<mark>Order</mark>"
                        ],
                        "plain_text": [
                          ""
                        ]
                      }
                    }
                  ]
                }
              }
            }
          },
          {
            "_index": "recap_vectors",
            "_id": "61800875",
            "_score": 321.7193,
            "_source": {
              "docket_slug": "miscellaneous-minute-entry-orders-for-2022",
              "docket_absolute_url": "/docket/61800875/miscellaneous-minute-entry-orders-for-2022/",
              "court_exact": "alsd",
              "party_id": [
                11580041
              ],
              "party": [
                "Charles R. Diard, Jr."
              ],
              "attorney_id": [],
              "attorney": [],
              "firm_id": [],
              "firm": [],
              "docket_child": "docket",
              "timestamp": "2024-03-27T02:30:46.110667",
              "docket_id": 61800875,
              "caseName": "Miscellaneous Minute Entry Orders for 2022",
              "case_name_full": "",
              "docketNumber": "1:22-mc-01000",
              "suitNature": "",
              "cause": "No cause code entered",
              "juryDemand": "",
              "jurisdictionType": "",
              "dateArgued": null,
              "dateFiled": "2021-12-29",
              "dateTerminated": null,
              "assignedTo": "Jeffrey Uhlman Beaverstock",
              "assigned_to_id": 8545,
              "referredTo": null,
              "referred_to_id": null,
              "court": "District Court, S.D. Alabama",
              "court_id": "alsd",
              "court_citation_string": "S.D. Ala.",
              "chapter": null,
              "trustee_str": null,
              "date_created": "2022-01-07T19:17:14.873758+00:00",
              "pacer_case_id": "69389"
            },
            "highlight": {
              "caseName": [
                "Miscellaneous <mark>Minute</mark> Entry <mark>Orders</mark> for 2022"
              ]
            },
            "inner_hits": {
              "filter_query_inner_recap_document": {
                "hits": {
                  "total": {
                    "value": 16,
                    "relation": "eq"
                  },
                  "max_score": 161.68755,
                  "hits": [
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_194734711",
                      "_score": 161.68755,
                      "_routing": "61800875",
                      "_source": {
                        "court_citation_string": "S.D. Ala.",
                        "short_description": "Order",
                        "chapter": null,
                        "trustee_str": null,
                        "assigned_to_id": 8545,
                        "court_id": "alsd",
                        "docket_child": {
                          "parent": 61800875,
                          "name": "recap_document"
                        },
                        "description": "Order entered re: Updated COVID-19 procedures. Signed by Chief District Judge Jeffrey U. Beaverstock on 03/04/2022. (crd) (Entered: 03/04/2022)",
                        "cause": "No cause code entered",
                        "absolute_url": "/docket/61800875/3/miscellaneous-minute-entry-orders-for-2022/",
                        "case_name_full": "",
                        "suitNature": "",
                        "assignedTo": "Jeffrey Uhlman Beaverstock",
                        "dateArgued": null,
                        "referredTo": null,
                        "cites": [],
                        "caseName": "Miscellaneous Minute Entry Orders for 2022",
                        "docket_id": 61800875,
                        "id": 194734711,
                        "page_count": null,
                        "document_type": "PACER Document",
                        "timestamp": "2024-05-19T08:46:46.089609",
                        "dateFiled": "2021-12-29",
                        "dateTerminated": null,
                        "docket_entry_id": 189173017,
                        "document_number": "3",
                        "pacer_case_id": "69389",
                        "entry_number": 3,
                        "jurisdictionType": "",
                        "date_created": "2022-03-04T22:22:30.757816+00:00",
                        "filepath_local": null,
                        "pacer_doc_id": "02103307520",
                        "court": "District Court, S.D. Alabama",
                        "entry_date_filed": "2022-03-04",
                        "juryDemand": "",
                        "is_available": false,
                        "referred_to_id": null,
                        "attachment_number": null,
                        "docketNumber": "1:22-mc-01000"
                      },
                      "highlight": {
                        "short_description": [
                          "<mark>Order</mark>"
                        ],
                        "plain_text": [
                          ""
                        ],
                        "description": [
                          "<mark>Order</mark> entered re: Updated COVID-19 procedures. Signed by Chief District Judge Jeffrey U. Beaverstock on 03/04/2022. (crd) (Entered: 03/04/2022)"
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_194882529",
                      "_score": 161.61205,
                      "_routing": "61800875",
                      "_source": {
                        "court_citation_string": "S.D. Ala.",
                        "short_description": "Order",
                        "chapter": null,
                        "trustee_str": null,
                        "assigned_to_id": 8545,
                        "court_id": "alsd",
                        "docket_child": {
                          "parent": 61800875,
                          "name": "recap_document"
                        },
                        "description": "PACER Exemption Order entered as to Jonah Berger. Signed by Chief District Judge Jeffrey U. Beaverstock on 3/7/2022. (Attachments: # 1 Exhibit Application, # 2 Exhibit AO Recommendation). (cle) (Entered: 03/07/2022)",
                        "cause": "No cause code entered",
                        "absolute_url": "/docket/61800875/4/miscellaneous-minute-entry-orders-for-2022/",
                        "case_name_full": "",
                        "suitNature": "",
                        "assignedTo": "Jeffrey Uhlman Beaverstock",
                        "dateArgued": null,
                        "referredTo": null,
                        "cites": [],
                        "caseName": "Miscellaneous Minute Entry Orders for 2022",
                        "docket_id": 61800875,
                        "id": 194882529,
                        "page_count": null,
                        "document_type": "PACER Document",
                        "timestamp": "2024-05-19T09:14:09.286639",
                        "dateFiled": "2021-12-29",
                        "dateTerminated": null,
                        "docket_entry_id": 189318327,
                        "document_number": "4",
                        "pacer_case_id": "69389",
                        "entry_number": 4,
                        "jurisdictionType": "",
                        "date_created": "2022-03-07T22:18:28.550446+00:00",
                        "filepath_local": null,
                        "pacer_doc_id": "02103308472",
                        "court": "District Court, S.D. Alabama",
                        "entry_date_filed": "2022-03-07",
                        "juryDemand": "",
                        "is_available": false,
                        "referred_to_id": null,
                        "attachment_number": null,
                        "docketNumber": "1:22-mc-01000"
                      },
                      "highlight": {
                        "short_description": [
                          "<mark>Order</mark>"
                        ],
                        "plain_text": [
                          ""
                        ],
                        "description": [
                          "PACER Exemption <mark>Order</mark> entered as to Jonah Berger. Signed by Chief District Judge Jeffrey U. Beaverstock on 3/7/2022. (Attachments: # 1 Exhibit Application, # 2 Exhibit AO Recommendation). (cle) (Entered: 03/07/2022)"
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_191428049",
                      "_score": 161.59715,
                      "_routing": "61800875",
                      "_source": {
                        "court_citation_string": "S.D. Ala.",
                        "short_description": "Order",
                        "chapter": null,
                        "trustee_str": null,
                        "assigned_to_id": 8545,
                        "court_id": "alsd",
                        "docket_child": {
                          "parent": 61800875,
                          "name": "recap_document"
                        },
                        "description": "PACER Exemption Order entered as to Madison Shanks. Signed by Chief District Judge Jeffrey U. Beaverstock on 01/26/2022. (Attachments: # 1 Exhibit Application, # 2 Exhibit Application pt 2, # 3 Exhibit AO Recommendation). (cle) (Entered: 01/26/2022)",
                        "cause": "No cause code entered",
                        "absolute_url": "/docket/61800875/2/miscellaneous-minute-entry-orders-for-2022/",
                        "case_name_full": "",
                        "suitNature": "",
                        "assignedTo": "Jeffrey Uhlman Beaverstock",
                        "dateArgued": null,
                        "referredTo": null,
                        "cites": [],
                        "caseName": "Miscellaneous Minute Entry Orders for 2022",
                        "docket_id": 61800875,
                        "id": 191428049,
                        "page_count": null,
                        "document_type": "PACER Document",
                        "timestamp": "2024-05-18T22:13:55.554779",
                        "dateFiled": "2021-12-29",
                        "dateTerminated": null,
                        "docket_entry_id": 185917535,
                        "document_number": "2",
                        "pacer_case_id": "69389",
                        "entry_number": 2,
                        "jurisdictionType": "",
                        "date_created": "2022-01-26T21:21:33.776316+00:00",
                        "filepath_local": null,
                        "pacer_doc_id": "02103289557",
                        "court": "District Court, S.D. Alabama",
                        "entry_date_filed": "2022-01-26",
                        "juryDemand": "",
                        "is_available": false,
                        "referred_to_id": null,
                        "attachment_number": null,
                        "docketNumber": "1:22-mc-01000"
                      },
                      "highlight": {
                        "short_description": [
                          "<mark>Order</mark>"
                        ],
                        "plain_text": [
                          ""
                        ],
                        "description": [
                          "PACER Exemption <mark>Order</mark> entered as to Madison Shanks. Signed by Chief District Judge Jeffrey U. Beaverstock on 01/26/2022. (Attachments: # 1 Exhibit Application, # 2 Exhibit Application pt 2, # 3 Exhibit AO Recommendation). (cle) (Entered: 01/26/2022)"
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_189811292",
                      "_score": 161.51337,
                      "_routing": "61800875",
                      "_source": {
                        "court_citation_string": "S.D. Ala.",
                        "short_description": "Order",
                        "chapter": null,
                        "trustee_str": null,
                        "assigned_to_id": 8545,
                        "court_id": "alsd",
                        "docket_child": {
                          "parent": 61800875,
                          "name": "recap_document"
                        },
                        "description": "Order In Re: The Judiciary Video Teleconferencing for Criminal Proceedings during the National Emergency caused by the Coronavirus Disease (COVID-19). This order is effective for no more than 90 days, unless extended by further order of the court. Signed by Chief District Judge Jeffrey U. Beaverstock on 1/7/2022. (cle) (Entered: 01/07/2022)",
                        "cause": "No cause code entered",
                        "absolute_url": "/docket/61800875/1/miscellaneous-minute-entry-orders-for-2022/",
                        "case_name_full": "",
                        "suitNature": "",
                        "assignedTo": "Jeffrey Uhlman Beaverstock",
                        "dateArgued": null,
                        "referredTo": null,
                        "cites": [],
                        "caseName": "Miscellaneous Minute Entry Orders for 2022",
                        "docket_id": 61800875,
                        "id": 189811292,
                        "page_count": null,
                        "document_type": "PACER Document",
                        "timestamp": "2024-05-18T16:53:06.993945",
                        "dateFiled": "2021-12-29",
                        "dateTerminated": null,
                        "docket_entry_id": 184326440,
                        "document_number": "1",
                        "pacer_case_id": "69389",
                        "entry_number": 1,
                        "jurisdictionType": "",
                        "date_created": "2022-01-07T19:17:14.887599+00:00",
                        "filepath_local": null,
                        "pacer_doc_id": "02103280855",
                        "court": "District Court, S.D. Alabama",
                        "entry_date_filed": "2022-01-07",
                        "juryDemand": "",
                        "is_available": false,
                        "referred_to_id": null,
                        "attachment_number": null,
                        "docketNumber": "1:22-mc-01000"
                      },
                      "highlight": {
                        "short_description": [
                          "<mark>Order</mark>"
                        ],
                        "plain_text": [
                          ""
                        ],
                        "description": [
                          "<mark>Order</mark> In Re: The Judiciary Video Teleconferencing for Criminal Proceedings during the National Emergency caused by the Coronavirus Disease (COVID-19). This order is effective for no more than 90 days, unless extended by further order of the court. Signed by Chief District Judge Jeffrey U. Beaverstock on 1/7/2022. (cle) (Entered: 01/07/2022)"
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_198503103",
                      "_score": 161.51337,
                      "_routing": "61800875",
                      "_source": {
                        "court_citation_string": "S.D. Ala.",
                        "short_description": "Order",
                        "chapter": null,
                        "trustee_str": null,
                        "assigned_to_id": 8545,
                        "court_id": "alsd",
                        "docket_child": {
                          "parent": 61800875,
                          "name": "recap_document"
                        },
                        "description": "Order entered designating Jerry C. Oldshue to serve as the Chief Judge of the Bankruptcy Court for the Southern District of Alabama for a period of seven years beginning June 1, 2022, with his term ending May 31, 2029. Signed by Chief District Judge Jeffrey U. Beaverstock on 4/18/22. (cle) (Entered: 04/18/2022)",
                        "cause": "No cause code entered",
                        "absolute_url": "/docket/61800875/5/miscellaneous-minute-entry-orders-for-2022/",
                        "case_name_full": "",
                        "suitNature": "",
                        "assignedTo": "Jeffrey Uhlman Beaverstock",
                        "dateArgued": null,
                        "referredTo": null,
                        "cites": [],
                        "caseName": "Miscellaneous Minute Entry Orders for 2022",
                        "docket_id": 61800875,
                        "id": 198503103,
                        "page_count": null,
                        "document_type": "PACER Document",
                        "timestamp": "2024-05-19T20:29:49.349448",
                        "dateFiled": "2021-12-29",
                        "dateTerminated": null,
                        "docket_entry_id": 192885367,
                        "document_number": "5",
                        "pacer_case_id": "69389",
                        "entry_number": 5,
                        "jurisdictionType": "",
                        "date_created": "2022-04-19T00:10:03.135175+00:00",
                        "filepath_local": null,
                        "pacer_doc_id": "02103327818",
                        "court": "District Court, S.D. Alabama",
                        "entry_date_filed": "2022-04-18",
                        "juryDemand": "",
                        "is_available": false,
                        "referred_to_id": null,
                        "attachment_number": null,
                        "docketNumber": "1:22-mc-01000"
                      },
                      "highlight": {
                        "short_description": [
                          "<mark>Order</mark>"
                        ],
                        "plain_text": [
                          ""
                        ],
                        "description": [
                          "<mark>Order</mark> entered designating Jerry C. Oldshue to serve as the Chief Judge of the Bankruptcy Court for the Southern District of Alabama for a period of seven years beginning June 1, 2022, with his term ending May 31, 2029. Signed by Chief District Judge Jeffrey U. Beaverstock on 4/18/22. (cle) (Entered: 04/18/2022)"
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_219435666",
                      "_score": 160.87991,
                      "_routing": "61800875",
                      "_source": {
                        "court_citation_string": "S.D. Ala.",
                        "short_description": "Order",
                        "chapter": null,
                        "trustee_str": null,
                        "assigned_to_id": 8545,
                        "court_id": "alsd",
                        "docket_child": {
                          "parent": 61800875,
                          "name": "recap_document"
                        },
                        "description": "",
                        "cause": "No cause code entered",
                        "absolute_url": "/docket/61800875/11/miscellaneous-minute-entry-orders-for-2022/",
                        "case_name_full": "",
                        "suitNature": "",
                        "assignedTo": "Jeffrey Uhlman Beaverstock",
                        "dateArgued": null,
                        "referredTo": null,
                        "cites": [],
                        "caseName": "Miscellaneous Minute Entry Orders for 2022",
                        "docket_id": 61800875,
                        "id": 219435666,
                        "page_count": null,
                        "document_type": "PACER Document",
                        "timestamp": "2024-05-22T22:18:35.129963",
                        "dateFiled": "2021-12-29",
                        "dateTerminated": null,
                        "docket_entry_id": 213465597,
                        "document_number": "11",
                        "pacer_case_id": "69389",
                        "entry_number": 11,
                        "jurisdictionType": "",
                        "date_created": "2022-12-06T20:10:08.032005+00:00",
                        "filepath_local": null,
                        "pacer_doc_id": "02103430502",
                        "court": "District Court, S.D. Alabama",
                        "entry_date_filed": "2022-12-06",
                        "juryDemand": "",
                        "is_available": false,
                        "referred_to_id": null,
                        "attachment_number": null,
                        "docketNumber": "1:22-mc-01000"
                      },
                      "highlight": {
                        "short_description": [
                          "<mark>Order</mark>"
                        ],
                        "plain_text": [
                          ""
                        ]
                      }
                    }
                  ]
                }
              }
            }
          },
          {
            "_index": "recap_vectors",
            "_id": "6379908",
            "_score": 320.5207,
            "_source": {
              "docket_slug": "miscellaneous-minute-entry-orders-for-2018",
              "docket_absolute_url": "/docket/6379908/miscellaneous-minute-entry-orders-for-2018/",
              "court_exact": "alsd",
              "party_id": [
                2018776
              ],
              "party": [
                "Charles R. Diard, Jr."
              ],
              "attorney_id": [],
              "attorney": [],
              "firm_id": [],
              "firm": [],
              "docket_child": "docket",
              "timestamp": "2024-03-18T19:25:36.257660",
              "docket_id": 6379908,
              "caseName": "Miscellaneous Minute Entry Orders for 2018",
              "case_name_full": "",
              "docketNumber": "1:18-mc-01000",
              "suitNature": "",
              "cause": "No cause code entered",
              "juryDemand": "",
              "jurisdictionType": "",
              "dateArgued": null,
              "dateFiled": "2017-12-21",
              "dateTerminated": null,
              "assignedTo": "Kristi DuBose",
              "assigned_to_id": 926,
              "referredTo": null,
              "referred_to_id": null,
              "court": "District Court, S.D. Alabama",
              "court_id": "alsd",
              "court_citation_string": "S.D. Ala.",
              "chapter": null,
              "trustee_str": null,
              "date_created": "2018-05-01T00:02:42.217758+00:00",
              "pacer_case_id": "61974"
            },
            "highlight": {
              "caseName": [
                "Miscellaneous <mark>Minute</mark> Entry <mark>Orders</mark> for 2018"
              ]
            },
            "inner_hits": {
              "filter_query_inner_recap_document": {
                "hits": {
                  "total": {
                    "value": 6,
                    "relation": "eq"
                  },
                  "max_score": 161.09406,
                  "hits": [
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_27350818",
                      "_score": 161.09406,
                      "_routing": "6379908",
                      "_source": {
                        "id": 27350818,
                        "docket_entry_id": 25285248,
                        "description": "PACER Exemption Order entered as to Yanbai Andrea Wang. Signed by Chief Judge Kristi K. DuBose on 5/9/2018. (jlr) (Entered: 05/09/2018)",
                        "entry_number": 15,
                        "entry_date_filed": "2018-05-09",
                        "short_description": "Order",
                        "document_type": "PACER Document",
                        "document_number": "15",
                        "pacer_doc_id": "02102640286",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/6379908/15/miscellaneous-minute-entry-orders-for-2018/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 6379908
                        },
                        "timestamp": "2024-04-20T08:00:31.045681",
                        "docket_id": 6379908,
                        "caseName": "Miscellaneous Minute Entry Orders for 2018",
                        "case_name_full": "",
                        "docketNumber": "1:18-mc-01000",
                        "suitNature": "",
                        "cause": "No cause code entered",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2017-12-21",
                        "dateTerminated": null,
                        "assignedTo": "Kristi DuBose",
                        "assigned_to_id": 926,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2018-05-09T19:19:53.632842+00:00",
                        "pacer_case_id": "61974"
                      },
                      "highlight": {
                        "short_description": [
                          "<mark>Order</mark>"
                        ],
                        "plain_text": [
                          ""
                        ],
                        "description": [
                          "PACER Exemption <mark>Order</mark> entered as to Yanbai Andrea Wang. Signed by Chief Judge Kristi K. DuBose on 5/9/2018. (jlr) (Entered: 05/09/2018)"
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_31210034",
                      "_score": 161.09406,
                      "_routing": "6379908",
                      "_source": {
                        "id": 31210034,
                        "docket_entry_id": 29118486,
                        "description": "PACER Exemption Order entered as to Kate Stith. Signed by Chief Judge Kristi K. DuBose on 6/15/2018. (jlr) (Entered: 06/18/2018)",
                        "entry_number": 16,
                        "entry_date_filed": "2018-06-15",
                        "short_description": "Order",
                        "document_type": "PACER Document",
                        "document_number": "16",
                        "pacer_doc_id": "02102656700",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/6379908/16/miscellaneous-minute-entry-orders-for-2018/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 6379908
                        },
                        "timestamp": "2024-04-21T02:53:06.727630",
                        "docket_id": 6379908,
                        "caseName": "Miscellaneous Minute Entry Orders for 2018",
                        "case_name_full": "",
                        "docketNumber": "1:18-mc-01000",
                        "suitNature": "",
                        "cause": "No cause code entered",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2017-12-21",
                        "dateTerminated": null,
                        "assignedTo": "Kristi DuBose",
                        "assigned_to_id": 926,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2018-06-18T14:24:46.304264+00:00",
                        "pacer_case_id": "61974"
                      },
                      "highlight": {
                        "short_description": [
                          "<mark>Order</mark>"
                        ],
                        "plain_text": [
                          ""
                        ],
                        "description": [
                          "PACER Exemption <mark>Order</mark> entered as to Kate Stith. Signed by Chief Judge Kristi K. DuBose on 6/15/2018. (jlr) (Entered: 06/18/2018)"
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_32071489",
                      "_score": 160.28749,
                      "_routing": "6379908",
                      "_source": {
                        "id": 32071489,
                        "docket_entry_id": 29973158,
                        "description": "",
                        "entry_number": 17,
                        "entry_date_filed": "2018-06-26",
                        "short_description": "Order",
                        "document_type": "PACER Document",
                        "document_number": "17",
                        "pacer_doc_id": "02102660927",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/6379908/17/miscellaneous-minute-entry-orders-for-2018/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 6379908
                        },
                        "timestamp": "2024-04-21T07:12:57.091347",
                        "docket_id": 6379908,
                        "caseName": "Miscellaneous Minute Entry Orders for 2018",
                        "case_name_full": "",
                        "docketNumber": "1:18-mc-01000",
                        "suitNature": "",
                        "cause": "No cause code entered",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2017-12-21",
                        "dateTerminated": null,
                        "assignedTo": "Kristi DuBose",
                        "assigned_to_id": 926,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2018-06-26T19:23:34.340347+00:00",
                        "pacer_case_id": "61974"
                      },
                      "highlight": {
                        "short_description": [
                          "<mark>Order</mark>"
                        ],
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_26894748",
                      "_score": 159.42664,
                      "_routing": "6379908",
                      "_source": {
                        "id": 26894748,
                        "docket_entry_id": 24835234,
                        "description": "Designation of United States District Judge Callie V. S. Granade for Service in the Middle District of Alabama in case number 2:18-cv-00434, Henderson Lodge, LLC v. Lockheed Martin Corp. Signed by Chief Circuit Judge Ed Carnes. (jlr) (Entered: 04/30/2018)",
                        "entry_number": 14,
                        "entry_date_filed": "2018-04-30",
                        "short_description": "Designation of United States District Judge",
                        "document_type": "PACER Document",
                        "document_number": "14",
                        "pacer_doc_id": "02102636179",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/6379908/14/miscellaneous-minute-entry-orders-for-2018/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 6379908
                        },
                        "timestamp": "2024-04-20T05:22:15.314644",
                        "docket_id": 6379908,
                        "caseName": "Miscellaneous Minute Entry Orders for 2018",
                        "case_name_full": "",
                        "docketNumber": "1:18-mc-01000",
                        "suitNature": "",
                        "cause": "No cause code entered",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2017-12-21",
                        "dateTerminated": null,
                        "assignedTo": "Kristi DuBose",
                        "assigned_to_id": 926,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2018-05-01T00:02:42.240701+00:00",
                        "pacer_case_id": "61974"
                      },
                      "highlight": {
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_31236872",
                      "_score": 159.42664,
                      "_routing": "6379908",
                      "_source": {
                        "id": 31236872,
                        "docket_entry_id": 29145109,
                        "description": "Designation of United States District Judge M. Casey Rodgers to sit with the United States District Court for the Southern District of Alabama in the matter of Hewitt v. Sessions, 18-cv-14. Signed by Chief Circuit Judge Ed Carnes. (jlr) (Entered: 01/22/2018)",
                        "entry_number": 12,
                        "entry_date_filed": "2018-01-19",
                        "short_description": "",
                        "document_type": "PACER Document",
                        "document_number": "12",
                        "pacer_doc_id": "02102593594",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/6379908/12/miscellaneous-minute-entry-orders-for-2018/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 6379908
                        },
                        "timestamp": "2024-04-21T03:01:08.174909",
                        "docket_id": 6379908,
                        "caseName": "Miscellaneous Minute Entry Orders for 2018",
                        "case_name_full": "",
                        "docketNumber": "1:18-mc-01000",
                        "suitNature": "",
                        "cause": "No cause code entered",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2017-12-21",
                        "dateTerminated": null,
                        "assignedTo": "Kristi DuBose",
                        "assigned_to_id": 926,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2018-06-18T17:21:35.937392+00:00",
                        "pacer_case_id": "61974"
                      },
                      "highlight": {
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_31236873",
                      "_score": 159.42664,
                      "_routing": "6379908",
                      "_source": {
                        "id": 31236873,
                        "docket_entry_id": 29145110,
                        "description": "Appointment of Brandon Bates as Special Assistant United States Attorney for the Southern District of Alabama, filed by DOJ/USA as further set out. (nah) (Entered: 03/29/2018)",
                        "entry_number": 13,
                        "entry_date_filed": "2018-03-29",
                        "short_description": "",
                        "document_type": "PACER Document",
                        "document_number": "13",
                        "pacer_doc_id": "02102622001",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/6379908/13/miscellaneous-minute-entry-orders-for-2018/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 6379908
                        },
                        "timestamp": "2024-04-21T03:01:08.199181",
                        "docket_id": 6379908,
                        "caseName": "Miscellaneous Minute Entry Orders for 2018",
                        "case_name_full": "",
                        "docketNumber": "1:18-mc-01000",
                        "suitNature": "",
                        "cause": "No cause code entered",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2017-12-21",
                        "dateTerminated": null,
                        "assignedTo": "Kristi DuBose",
                        "assigned_to_id": 926,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2018-06-18T17:21:35.968772+00:00",
                        "pacer_case_id": "61974"
                      },
                      "highlight": {
                        "plain_text": [
                          ""
                        ]
                      }
                    }
                  ]
                }
              }
            }
          },
          {
            "_index": "recap_vectors",
            "_id": "26439639",
            "_score": 319.10577,
            "_source": {
              "docket_slug": "miscellaneous-minute-entry-orders-for-2016",
              "docket_absolute_url": "/docket/26439639/miscellaneous-minute-entry-orders-for-2016/",
              "court_exact": "alsd",
              "party_id": [],
              "party": [],
              "attorney_id": [],
              "attorney": [],
              "firm_id": [],
              "firm": [],
              "docket_child": "docket",
              "timestamp": "2024-03-21T05:12:06.668038",
              "docket_id": 26439639,
              "caseName": "Miscellaneous Minute Entry Orders for 2016",
              "case_name_full": "",
              "docketNumber": "1:16-mc-01000",
              "suitNature": "",
              "cause": "",
              "juryDemand": "",
              "jurisdictionType": "",
              "dateArgued": null,
              "dateFiled": "2015-12-23",
              "dateTerminated": null,
              "assignedTo": "William H. Steele",
              "assigned_to_id": 3093,
              "referredTo": null,
              "referred_to_id": null,
              "court": "District Court, S.D. Alabama",
              "court_id": "alsd",
              "court_citation_string": "S.D. Ala.",
              "chapter": null,
              "trustee_str": null,
              "date_created": "2020-12-29T17:10:28.952070+00:00",
              "pacer_case_id": "58843"
            },
            "highlight": {
              "caseName": [
                "Miscellaneous <mark>Minute</mark> Entry <mark>Orders</mark> for 2016"
              ]
            },
            "inner_hits": {
              "filter_query_inner_recap_document": {
                "hits": {
                  "total": {
                    "value": 8,
                    "relation": "eq"
                  },
                  "max_score": 159.98315,
                  "hits": [
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_294299791",
                      "_score": 159.98315,
                      "_routing": "26439639",
                      "_source": {
                        "id": 294299791,
                        "docket_entry_id": 288081967,
                        "description": "",
                        "entry_number": 2,
                        "entry_date_filed": "2016-04-22",
                        "short_description": "Order",
                        "document_type": "PACER Document",
                        "document_number": "2",
                        "pacer_doc_id": "02102324765",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/26439639/2/miscellaneous-minute-entry-orders-for-2016/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 26439639
                        },
                        "timestamp": "2024-06-02T05:37:05.123785",
                        "docket_id": 26439639,
                        "caseName": "Miscellaneous Minute Entry Orders for 2016",
                        "case_name_full": "",
                        "docketNumber": "1:16-mc-01000",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2015-12-23",
                        "dateTerminated": null,
                        "assignedTo": "William H. Steele",
                        "assigned_to_id": 3093,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2023-04-22T17:06:45.376058+00:00",
                        "pacer_case_id": "58843"
                      },
                      "highlight": {
                        "short_description": [
                          "<mark>Order</mark>"
                        ],
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_296365762",
                      "_score": 159.98315,
                      "_routing": "26439639",
                      "_source": {
                        "id": 296365762,
                        "docket_entry_id": 290146670,
                        "description": "",
                        "entry_number": 3,
                        "entry_date_filed": "2016-05-16",
                        "short_description": "Order",
                        "document_type": "PACER Document",
                        "document_number": "3",
                        "pacer_doc_id": "02102334812",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/26439639/3/miscellaneous-minute-entry-orders-for-2016/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 26439639
                        },
                        "timestamp": "2024-06-02T14:17:30.662016",
                        "docket_id": 26439639,
                        "caseName": "Miscellaneous Minute Entry Orders for 2016",
                        "case_name_full": "",
                        "docketNumber": "1:16-mc-01000",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2015-12-23",
                        "dateTerminated": null,
                        "assignedTo": "William H. Steele",
                        "assigned_to_id": 3093,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2023-04-23T20:15:11.727039+00:00",
                        "pacer_case_id": "58843"
                      },
                      "highlight": {
                        "short_description": [
                          "<mark>Order</mark>"
                        ],
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_313777714",
                      "_score": 159.98315,
                      "_routing": "26439639",
                      "_source": {
                        "id": 313777714,
                        "docket_entry_id": 307535606,
                        "description": "",
                        "entry_number": 8,
                        "entry_date_filed": "2016-11-16",
                        "short_description": "Order",
                        "document_type": "PACER Document",
                        "document_number": "8",
                        "pacer_doc_id": "02102413530",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/26439639/8/miscellaneous-minute-entry-orders-for-2016/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 26439639
                        },
                        "timestamp": "2024-06-05T04:42:17.683244",
                        "docket_id": 26439639,
                        "caseName": "Miscellaneous Minute Entry Orders for 2016",
                        "case_name_full": "",
                        "docketNumber": "1:16-mc-01000",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2015-12-23",
                        "dateTerminated": null,
                        "assignedTo": "William H. Steele",
                        "assigned_to_id": 3093,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2023-05-04T04:18:38.229373+00:00",
                        "pacer_case_id": "58843"
                      },
                      "highlight": {
                        "short_description": [
                          "<mark>Order</mark>"
                        ],
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_307679342",
                      "_score": 159.98315,
                      "_routing": "26439639",
                      "_source": {
                        "id": 307679342,
                        "docket_entry_id": 301445351,
                        "description": "",
                        "entry_number": 6,
                        "entry_date_filed": "2016-09-13",
                        "short_description": "Order",
                        "document_type": "PACER Document",
                        "document_number": "6",
                        "pacer_doc_id": "02102387752",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/26439639/6/miscellaneous-minute-entry-orders-for-2016/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 26439639
                        },
                        "timestamp": "2024-06-04T09:52:38.652881",
                        "docket_id": 26439639,
                        "caseName": "Miscellaneous Minute Entry Orders for 2016",
                        "case_name_full": "",
                        "docketNumber": "1:16-mc-01000",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2015-12-23",
                        "dateTerminated": null,
                        "assignedTo": "William H. Steele",
                        "assigned_to_id": 3093,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2023-04-30T14:29:37.780552+00:00",
                        "pacer_case_id": "58843"
                      },
                      "highlight": {
                        "short_description": [
                          "<mark>Order</mark>"
                        ],
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_310139287",
                      "_score": 159.12262,
                      "_routing": "26439639",
                      "_source": {
                        "id": 310139287,
                        "docket_entry_id": 303903119,
                        "description": "",
                        "entry_number": 7,
                        "entry_date_filed": "2016-10-07",
                        "short_description": "Designation of United States District Judge",
                        "document_type": "PACER Document",
                        "document_number": "7",
                        "pacer_doc_id": "02102398699",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/26439639/7/miscellaneous-minute-entry-orders-for-2016/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 26439639
                        },
                        "timestamp": "2024-06-04T17:57:24.613600",
                        "docket_id": 26439639,
                        "caseName": "Miscellaneous Minute Entry Orders for 2016",
                        "case_name_full": "",
                        "docketNumber": "1:16-mc-01000",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2015-12-23",
                        "dateTerminated": null,
                        "assignedTo": "William H. Steele",
                        "assigned_to_id": 3093,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2023-05-02T00:43:27.467086+00:00",
                        "pacer_case_id": "58843"
                      },
                      "highlight": {
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_286556582",
                      "_score": 159.12262,
                      "_routing": "26439639",
                      "_source": {
                        "id": 286556582,
                        "docket_entry_id": 280347397,
                        "description": "",
                        "entry_number": 1,
                        "entry_date_filed": "2016-02-03",
                        "short_description": "Remark",
                        "document_type": "PACER Document",
                        "document_number": "1",
                        "pacer_doc_id": "02102290815",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/26439639/1/miscellaneous-minute-entry-orders-for-2016/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 26439639
                        },
                        "timestamp": "2024-05-31T18:47:23.647582",
                        "docket_id": 26439639,
                        "caseName": "Miscellaneous Minute Entry Orders for 2016",
                        "case_name_full": "",
                        "docketNumber": "1:16-mc-01000",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2015-12-23",
                        "dateTerminated": null,
                        "assignedTo": "William H. Steele",
                        "assigned_to_id": 3093,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2023-04-17T23:55:02.739792+00:00",
                        "pacer_case_id": "58843"
                      },
                      "highlight": {
                        "plain_text": [
                          ""
                        ]
                      }
                    }
                  ]
                }
              }
            }
          },
          {
            "_index": "recap_vectors",
            "_id": "16283935",
            "_score": 317.73846,
            "_source": {
              "docket_slug": "miscellaneous-minute-entry-orders-for-2017",
              "docket_absolute_url": "/docket/16283935/miscellaneous-minute-entry-orders-for-2017/",
              "court_exact": "alsd",
              "party_id": [],
              "party": [],
              "attorney_id": [],
              "attorney": [],
              "firm_id": [],
              "firm": [],
              "docket_child": "docket",
              "timestamp": "2024-03-20T02:29:20.341935",
              "docket_id": 16283935,
              "caseName": "Miscellaneous Minute Entry Orders for 2017",
              "case_name_full": "",
              "docketNumber": "1:17-mc-01000",
              "suitNature": "",
              "cause": "",
              "juryDemand": "",
              "jurisdictionType": "",
              "dateArgued": null,
              "dateFiled": "2017-01-01",
              "dateTerminated": null,
              "assignedTo": "Kristi DuBose",
              "assigned_to_id": 926,
              "referredTo": null,
              "referred_to_id": null,
              "court": "District Court, S.D. Alabama",
              "court_id": "alsd",
              "court_citation_string": "S.D. Ala.",
              "chapter": null,
              "trustee_str": null,
              "date_created": "2019-10-02T21:22:54.646532+00:00",
              "pacer_case_id": "60459"
            },
            "highlight": {
              "caseName": [
                "Miscellaneous <mark>Minute</mark> Entry <mark>Orders</mark> for 2017"
              ]
            },
            "inner_hits": {
              "filter_query_inner_recap_document": {
                "hits": {
                  "total": {
                    "value": 12,
                    "relation": "eq"
                  },
                  "max_score": 159.2979,
                  "hits": [
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_329197884",
                      "_score": 159.2979,
                      "_routing": "16283935",
                      "_source": {
                        "id": 329197884,
                        "docket_entry_id": 322937461,
                        "description": "",
                        "entry_number": 5,
                        "entry_date_filed": "2017-05-02",
                        "short_description": "Order",
                        "document_type": "PACER Document",
                        "document_number": "5",
                        "pacer_doc_id": "02102483443",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/16283935/5/miscellaneous-minute-entry-orders-for-2017/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 16283935
                        },
                        "timestamp": "2024-06-07T19:00:53.811731",
                        "docket_id": 16283935,
                        "caseName": "Miscellaneous Minute Entry Orders for 2017",
                        "case_name_full": "",
                        "docketNumber": "1:17-mc-01000",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2017-01-01",
                        "dateTerminated": null,
                        "assignedTo": "Kristi DuBose",
                        "assigned_to_id": 926,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2023-05-13T00:37:17.508213+00:00",
                        "pacer_case_id": "60459"
                      },
                      "highlight": {
                        "short_description": [
                          "<mark>Order</mark>"
                        ],
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_334911200",
                      "_score": 159.2979,
                      "_routing": "16283935",
                      "_source": {
                        "id": 334911200,
                        "docket_entry_id": 328646973,
                        "description": "",
                        "entry_number": 6,
                        "entry_date_filed": "2017-07-03",
                        "short_description": "Order",
                        "document_type": "PACER Document",
                        "document_number": "6",
                        "pacer_doc_id": "02102509111",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/16283935/6/miscellaneous-minute-entry-orders-for-2017/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 16283935
                        },
                        "timestamp": "2024-06-08T11:22:04.797046",
                        "docket_id": 16283935,
                        "caseName": "Miscellaneous Minute Entry Orders for 2017",
                        "case_name_full": "",
                        "docketNumber": "1:17-mc-01000",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2017-01-01",
                        "dateTerminated": null,
                        "assignedTo": "Kristi DuBose",
                        "assigned_to_id": 926,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2023-05-16T07:31:00.741296+00:00",
                        "pacer_case_id": "60459"
                      },
                      "highlight": {
                        "short_description": [
                          "<mark>Order</mark>"
                        ],
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_339822040",
                      "_score": 159.2979,
                      "_routing": "16283935",
                      "_source": {
                        "id": 339822040,
                        "docket_entry_id": 333519318,
                        "description": "",
                        "entry_number": 7,
                        "entry_date_filed": "2017-08-15",
                        "short_description": "Order",
                        "document_type": "PACER Document",
                        "document_number": "7",
                        "pacer_doc_id": "02102528266",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/16283935/7/miscellaneous-minute-entry-orders-for-2017/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 16283935
                        },
                        "timestamp": "2024-06-09T01:24:49.909928",
                        "docket_id": 16283935,
                        "caseName": "Miscellaneous Minute Entry Orders for 2017",
                        "case_name_full": "",
                        "docketNumber": "1:17-mc-01000",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2017-01-01",
                        "dateTerminated": null,
                        "assignedTo": "Kristi DuBose",
                        "assigned_to_id": 926,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2023-05-26T19:26:19.681795+00:00",
                        "pacer_case_id": "60459"
                      },
                      "highlight": {
                        "short_description": [
                          "<mark>Order</mark>"
                        ],
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_344846558",
                      "_score": 159.2979,
                      "_routing": "16283935",
                      "_source": {
                        "id": 344846558,
                        "docket_entry_id": 338533423,
                        "description": "",
                        "entry_number": 10,
                        "entry_date_filed": "2017-10-10",
                        "short_description": "Order",
                        "document_type": "PACER Document",
                        "document_number": "10",
                        "pacer_doc_id": "02102551719",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/16283935/10/miscellaneous-minute-entry-orders-for-2017/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 16283935
                        },
                        "timestamp": "2024-06-09T14:57:09.661016",
                        "docket_id": 16283935,
                        "caseName": "Miscellaneous Minute Entry Orders for 2017",
                        "case_name_full": "",
                        "docketNumber": "1:17-mc-01000",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2017-01-01",
                        "dateTerminated": null,
                        "assignedTo": "Kristi DuBose",
                        "assigned_to_id": 926,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2023-05-30T20:29:25.047693+00:00",
                        "pacer_case_id": "60459"
                      },
                      "highlight": {
                        "short_description": [
                          "<mark>Order</mark>"
                        ],
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_344664544",
                      "_score": 159.2979,
                      "_routing": "16283935",
                      "_source": {
                        "id": 344664544,
                        "docket_entry_id": 338352461,
                        "description": "",
                        "entry_number": 9,
                        "entry_date_filed": "2017-10-06",
                        "short_description": "Order",
                        "document_type": "PACER Document",
                        "document_number": "9",
                        "pacer_doc_id": "02102551446",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/16283935/9/miscellaneous-minute-entry-orders-for-2017/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 16283935
                        },
                        "timestamp": "2024-06-09T14:25:21.761932",
                        "docket_id": 16283935,
                        "caseName": "Miscellaneous Minute Entry Orders for 2017",
                        "case_name_full": "",
                        "docketNumber": "1:17-mc-01000",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2017-01-01",
                        "dateTerminated": null,
                        "assignedTo": "Kristi DuBose",
                        "assigned_to_id": 926,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2023-05-30T16:51:53.865399+00:00",
                        "pacer_case_id": "60459"
                      },
                      "highlight": {
                        "short_description": [
                          "<mark>Order</mark>"
                        ],
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_318991822",
                      "_score": 159.21208,
                      "_routing": "16283935",
                      "_source": {
                        "id": 318991822,
                        "docket_entry_id": 312741748,
                        "description": "",
                        "entry_number": 1,
                        "entry_date_filed": "2017-01-17",
                        "short_description": "Standing Order",
                        "document_type": "PACER Document",
                        "document_number": "1",
                        "pacer_doc_id": "02102437727",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/16283935/1/miscellaneous-minute-entry-orders-for-2017/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 16283935
                        },
                        "timestamp": "2024-06-05T21:18:15.248467",
                        "docket_id": 16283935,
                        "caseName": "Miscellaneous Minute Entry Orders for 2017",
                        "case_name_full": "",
                        "docketNumber": "1:17-mc-01000",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2017-01-01",
                        "dateTerminated": null,
                        "assignedTo": "Kristi DuBose",
                        "assigned_to_id": 926,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2023-05-07T03:23:20.126244+00:00",
                        "pacer_case_id": "60459"
                      },
                      "highlight": {
                        "short_description": [
                          "Standing <mark>Order</mark>"
                        ],
                        "plain_text": [
                          ""
                        ]
                      }
                    }
                  ]
                }
              }
            }
          },
          {
            "_index": "recap_vectors",
            "_id": "66703184",
            "_score": 316.43835,
            "_source": {
              "docket_slug": "miscellaneous-minute-entry-orders-for-2023",
              "docket_absolute_url": "/docket/66703184/miscellaneous-minute-entry-orders-for-2023/",
              "court_exact": "alsd",
              "party_id": [],
              "party": [],
              "attorney_id": [],
              "attorney": [],
              "firm_id": [],
              "firm": [],
              "docket_child": "docket",
              "timestamp": "2024-03-27T05:09:26.082370",
              "docket_id": 66703184,
              "caseName": "Miscellaneous Minute Entry Orders for 2023",
              "case_name_full": "",
              "docketNumber": "1:23-mc-01000",
              "suitNature": "",
              "cause": "",
              "juryDemand": "",
              "jurisdictionType": "",
              "dateArgued": null,
              "dateFiled": "2022-12-30",
              "dateTerminated": null,
              "assignedTo": "Jeffrey Uhlman Beaverstock",
              "assigned_to_id": 8545,
              "referredTo": null,
              "referred_to_id": null,
              "court": "District Court, S.D. Alabama",
              "court_id": "alsd",
              "court_citation_string": "S.D. Ala.",
              "chapter": null,
              "trustee_str": null,
              "date_created": "2023-01-05T22:05:33.611786+00:00",
              "pacer_case_id": "71159"
            },
            "highlight": {
              "caseName": [
                "Miscellaneous <mark>Minute</mark> Entry <mark>Orders</mark> for 2023"
              ]
            },
            "inner_hits": {
              "filter_query_inner_recap_document": {
                "hits": {
                  "total": {
                    "value": 19,
                    "relation": "eq"
                  },
                  "max_score": 158.64517,
                  "hits": [
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_304971224",
                      "_score": 158.64517,
                      "_routing": "66703184",
                      "_source": {
                        "id": 304971224,
                        "docket_entry_id": 298738695,
                        "description": "",
                        "entry_number": 8,
                        "entry_date_filed": "2023-04-28",
                        "short_description": "Order",
                        "document_type": "PACER Document",
                        "document_number": "8",
                        "pacer_doc_id": "02103500120",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/66703184/8/miscellaneous-minute-entry-orders-for-2023/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 66703184
                        },
                        "timestamp": "2024-06-03T23:36:22.858262",
                        "docket_id": 66703184,
                        "caseName": "Miscellaneous Minute Entry Orders for 2023",
                        "case_name_full": "",
                        "docketNumber": "1:23-mc-01000",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2022-12-30",
                        "dateTerminated": null,
                        "assignedTo": "Jeffrey Uhlman Beaverstock",
                        "assigned_to_id": 8545,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2023-04-29T00:55:14.050043+00:00",
                        "pacer_case_id": "71159"
                      },
                      "highlight": {
                        "short_description": [
                          "<mark>Order</mark>"
                        ],
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_352428530",
                      "_score": 158.64517,
                      "_routing": "66703184",
                      "_source": {
                        "id": 352428530,
                        "docket_entry_id": 346075752,
                        "description": "",
                        "entry_number": 9,
                        "entry_date_filed": "2023-06-08",
                        "short_description": "Order",
                        "document_type": "PACER Document",
                        "document_number": "9",
                        "pacer_doc_id": "02103519948",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/66703184/9/miscellaneous-minute-entry-orders-for-2023/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 66703184
                        },
                        "timestamp": "2024-06-10T12:09:58.039571",
                        "docket_id": 66703184,
                        "caseName": "Miscellaneous Minute Entry Orders for 2023",
                        "case_name_full": "",
                        "docketNumber": "1:23-mc-01000",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2022-12-30",
                        "dateTerminated": null,
                        "assignedTo": "Jeffrey Uhlman Beaverstock",
                        "assigned_to_id": 8545,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2023-06-08T22:08:03.486366+00:00",
                        "pacer_case_id": "71159"
                      },
                      "highlight": {
                        "short_description": [
                          "<mark>Order</mark>"
                        ],
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_377579426",
                      "_score": 158.64517,
                      "_routing": "66703184",
                      "_source": {
                        "id": 377579426,
                        "docket_entry_id": 370193906,
                        "description": "",
                        "entry_number": 16,
                        "entry_date_filed": "2023-11-08",
                        "short_description": "Order",
                        "document_type": "PACER Document",
                        "document_number": "16",
                        "pacer_doc_id": "02103593593",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/66703184/16/miscellaneous-minute-entry-orders-for-2023/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 66703184
                        },
                        "timestamp": "2024-06-14T21:58:20.206389",
                        "docket_id": 66703184,
                        "caseName": "Miscellaneous Minute Entry Orders for 2023",
                        "case_name_full": "",
                        "docketNumber": "1:23-mc-01000",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2022-12-30",
                        "dateTerminated": null,
                        "assignedTo": "Jeffrey Uhlman Beaverstock",
                        "assigned_to_id": 8545,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2023-11-08T21:06:10.632122+00:00",
                        "pacer_case_id": "71159"
                      },
                      "highlight": {
                        "short_description": [
                          "<mark>Order</mark>"
                        ],
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_369220052",
                      "_score": 158.64517,
                      "_routing": "66703184",
                      "_source": {
                        "id": 369220052,
                        "docket_entry_id": 362526417,
                        "description": "",
                        "entry_number": 11,
                        "entry_date_filed": "2023-08-21",
                        "short_description": "Order",
                        "document_type": "PACER Document",
                        "document_number": "11",
                        "pacer_doc_id": "02103555225",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/66703184/11/miscellaneous-minute-entry-orders-for-2023/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 66703184
                        },
                        "timestamp": "2024-06-13T03:56:57.193507",
                        "docket_id": 66703184,
                        "caseName": "Miscellaneous Minute Entry Orders for 2023",
                        "case_name_full": "",
                        "docketNumber": "1:23-mc-01000",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2022-12-30",
                        "dateTerminated": null,
                        "assignedTo": "Jeffrey Uhlman Beaverstock",
                        "assigned_to_id": 8545,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2023-08-21T18:06:27.066708+00:00",
                        "pacer_case_id": "71159"
                      },
                      "highlight": {
                        "short_description": [
                          "<mark>Order</mark>"
                        ],
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_375858089",
                      "_score": 158.64517,
                      "_routing": "66703184",
                      "_source": {
                        "id": 375858089,
                        "docket_entry_id": 368520132,
                        "description": "",
                        "entry_number": 14,
                        "entry_date_filed": "2023-10-20",
                        "short_description": "Order",
                        "document_type": "PACER Document",
                        "document_number": "14",
                        "pacer_doc_id": "02103583546",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/66703184/14/miscellaneous-minute-entry-orders-for-2023/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 66703184
                        },
                        "timestamp": "2024-06-14T13:00:25.078740",
                        "docket_id": 66703184,
                        "caseName": "Miscellaneous Minute Entry Orders for 2023",
                        "case_name_full": "",
                        "docketNumber": "1:23-mc-01000",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2022-12-30",
                        "dateTerminated": null,
                        "assignedTo": "Jeffrey Uhlman Beaverstock",
                        "assigned_to_id": 8545,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2023-10-20T12:08:06.175039+00:00",
                        "pacer_case_id": "71159"
                      },
                      "highlight": {
                        "short_description": [
                          "<mark>Order</mark>"
                        ],
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_375868019",
                      "_score": 158.64517,
                      "_routing": "66703184",
                      "_source": {
                        "id": 375868019,
                        "docket_entry_id": 368529413,
                        "description": "",
                        "entry_number": 15,
                        "entry_date_filed": "2023-10-20",
                        "short_description": "Order",
                        "document_type": "PACER Document",
                        "document_number": "15",
                        "pacer_doc_id": "02103583551",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/66703184/15/miscellaneous-minute-entry-orders-for-2023/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 66703184
                        },
                        "timestamp": "2024-06-14T13:03:28.034061",
                        "docket_id": 66703184,
                        "caseName": "Miscellaneous Minute Entry Orders for 2023",
                        "case_name_full": "",
                        "docketNumber": "1:23-mc-01000",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2022-12-30",
                        "dateTerminated": null,
                        "assignedTo": "Jeffrey Uhlman Beaverstock",
                        "assigned_to_id": 8545,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2023-10-20T14:09:13.134588+00:00",
                        "pacer_case_id": "71159"
                      },
                      "highlight": {
                        "short_description": [
                          "<mark>Order</mark>"
                        ],
                        "plain_text": [
                          ""
                        ]
                      }
                    }
                  ]
                }
              }
            }
          },
          {
            "_index": "recap_vectors",
            "_id": "29098691",
            "_score": 297.66034,
            "_source": {
              "docket_slug": "miscellaneous-minute-entry-orders-for-2021",
              "docket_absolute_url": "/docket/29098691/miscellaneous-minute-entry-orders-for-2021/",
              "court_exact": "alsd",
              "party_id": [],
              "party": [],
              "attorney_id": [],
              "attorney": [],
              "firm_id": [],
              "firm": [],
              "docket_child": "docket",
              "timestamp": "2024-03-21T11:15:34.278108",
              "docket_id": 29098691,
              "caseName": "Miscellaneous Minute Entry Orders for 2021",
              "case_name_full": "",
              "docketNumber": "1:21-mc-01000",
              "suitNature": "",
              "cause": "No cause code entered",
              "juryDemand": "",
              "jurisdictionType": "",
              "dateArgued": null,
              "dateFiled": "2021-01-01",
              "dateTerminated": null,
              "assignedTo": "Jeffrey Uhlman Beaverstock",
              "assigned_to_id": 8545,
              "referredTo": null,
              "referred_to_id": null,
              "court": "District Court, S.D. Alabama",
              "court_id": "alsd",
              "court_citation_string": "S.D. Ala.",
              "chapter": null,
              "trustee_str": null,
              "date_created": "2021-01-12T16:20:05.008941+00:00",
              "pacer_case_id": "67726"
            },
            "highlight": {
              "caseName": [
                "Miscellaneous <mark>Minute</mark> Entry <mark>Orders</mark> for 2021"
              ]
            },
            "inner_hits": {
              "filter_query_inner_recap_document": {
                "hits": {
                  "total": {
                    "value": 16,
                    "relation": "eq"
                  },
                  "max_score": 149.71217,
                  "hits": [
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_157754326",
                      "_score": 149.71217,
                      "_routing": "29098691",
                      "_source": {
                        "id": 157754326,
                        "docket_entry_id": 152721686,
                        "description": "GENERAL ORDER NO. 2021-002 Regarding Procedure for Selection, Empanelment and Service of Members of the Grand Jury.  Signed by Chief  Modified on 1/14/2021 (jlr).",
                        "entry_number": 2,
                        "entry_date_filed": "2021-01-13",
                        "short_description": "Order",
                        "document_type": "PACER Document",
                        "document_number": "2",
                        "pacer_doc_id": "02103114179",
                        "attachment_number": null,
                        "is_available": true,
                        "page_count": 1,
                        "filepath_local": "recap/gov.uscourts.alsd.67726/gov.uscourts.alsd.67726.2.0.pdf",
                        "absolute_url": "/docket/29098691/2/miscellaneous-minute-entry-orders-for-2021/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 29098691
                        },
                        "timestamp": "2024-05-14T01:19:08.020130",
                        "docket_id": 29098691,
                        "caseName": "Miscellaneous Minute Entry Orders for 2021",
                        "case_name_full": "",
                        "docketNumber": "1:21-mc-01000",
                        "suitNature": "",
                        "cause": "No cause code entered",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2021-01-01",
                        "dateTerminated": null,
                        "assignedTo": "Jeffrey Uhlman Beaverstock",
                        "assigned_to_id": 8545,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2021-01-15T00:23:29.571002+00:00",
                        "pacer_case_id": "67726"
                      },
                      "highlight": {
                        "short_description": [
                          "<mark>Order</mark>"
                        ],
                        "plain_text": [
                          """        FOR THE SOUTHERN DISTRICT OF ALABAMA

<mark>ORDER</mark> REGARDING PROCEDURE                        )   MISC"""
                        ],
                        "description": [
                          "GENERAL <mark>ORDER</mark> NO. 2021-002 Regarding Procedure for Selection, Empanelment and Service of Members of the Grand Jury.  Signed by Chief  Modified on 1/14/2021 (jlr)."
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_156936802",
                      "_score": 149.65431,
                      "_routing": "29098691",
                      "_source": {
                        "id": 156936802,
                        "docket_entry_id": 151938873,
                        "description": "GENERAL ORDER NO. 2021-001 In Re: Procedures for the Filing, Service, and Management of Highly Sensitive Documents.  Signed by Chief Judge Kristi K. DuBose on 1/14/2021.   (jlr)",
                        "entry_number": 1,
                        "entry_date_filed": "2021-01-14",
                        "short_description": "Order",
                        "document_type": "PACER Document",
                        "document_number": "1",
                        "pacer_doc_id": "02103112965",
                        "attachment_number": null,
                        "is_available": true,
                        "page_count": 5,
                        "filepath_local": "recap/gov.uscourts.alsd.67726/gov.uscourts.alsd.67726.1.0_2.pdf",
                        "absolute_url": "/docket/29098691/1/miscellaneous-minute-entry-orders-for-2021/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 29098691
                        },
                        "timestamp": "2024-05-13T22:11:10.824461",
                        "docket_id": 29098691,
                        "caseName": "Miscellaneous Minute Entry Orders for 2021",
                        "case_name_full": "",
                        "docketNumber": "1:21-mc-01000",
                        "suitNature": "",
                        "cause": "No cause code entered",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2021-01-01",
                        "dateTerminated": null,
                        "assignedTo": "Jeffrey Uhlman Beaverstock",
                        "assigned_to_id": 8545,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2021-01-12T16:20:05.047628+00:00",
                        "pacer_case_id": "67726"
                      },
                      "highlight": {
                        "short_description": [
                          "<mark>Order</mark>"
                        ],
                        "plain_text": [
                          """DOCUMENTS                          )    GENERAL <mark>ORDER</mark> NO. 2021-001

        WHEREAS, in response to"""
                        ],
                        "description": [
                          "GENERAL <mark>ORDER</mark> NO. 2021-001 In Re: Procedures for the Filing, Service, and Management of Highly Sensitive Documents.  Signed by Chief Judge Kristi K. DuBose on 1/14/2021.   (jlr)"
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_172090470",
                      "_score": 148.79567,
                      "_routing": "29098691",
                      "_source": {
                        "id": 172090470,
                        "docket_entry_id": 166867215,
                        "description": "",
                        "entry_number": 7,
                        "entry_date_filed": "2021-06-10",
                        "short_description": "Order",
                        "document_type": "PACER Document",
                        "document_number": "7",
                        "pacer_doc_id": "02103183024",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/29098691/7/miscellaneous-minute-entry-orders-for-2021/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 29098691
                        },
                        "timestamp": "2024-05-16T04:52:53.714967",
                        "docket_id": 29098691,
                        "caseName": "Miscellaneous Minute Entry Orders for 2021",
                        "case_name_full": "",
                        "docketNumber": "1:21-mc-01000",
                        "suitNature": "",
                        "cause": "No cause code entered",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2021-01-01",
                        "dateTerminated": null,
                        "assignedTo": "Jeffrey Uhlman Beaverstock",
                        "assigned_to_id": 8545,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2021-06-10T20:08:11.744537+00:00",
                        "pacer_case_id": "67726"
                      },
                      "highlight": {
                        "short_description": [
                          "<mark>Order</mark>"
                        ],
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_172987719",
                      "_score": 148.79567,
                      "_routing": "29098691",
                      "_source": {
                        "id": 172987719,
                        "docket_entry_id": 167754145,
                        "description": "",
                        "entry_number": 8,
                        "entry_date_filed": "2021-06-21",
                        "short_description": "Order",
                        "document_type": "PACER Document",
                        "document_number": "8",
                        "pacer_doc_id": "02103187356",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/29098691/8/miscellaneous-minute-entry-orders-for-2021/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 29098691
                        },
                        "timestamp": "2024-05-16T07:42:39.289677",
                        "docket_id": 29098691,
                        "caseName": "Miscellaneous Minute Entry Orders for 2021",
                        "case_name_full": "",
                        "docketNumber": "1:21-mc-01000",
                        "suitNature": "",
                        "cause": "No cause code entered",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2021-01-01",
                        "dateTerminated": null,
                        "assignedTo": "Jeffrey Uhlman Beaverstock",
                        "assigned_to_id": 8545,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2021-06-21T21:17:22.318158+00:00",
                        "pacer_case_id": "67726"
                      },
                      "highlight": {
                        "short_description": [
                          "<mark>Order</mark>"
                        ],
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_162335696",
                      "_score": 148.79567,
                      "_routing": "29098691",
                      "_source": {
                        "id": 162335696,
                        "docket_entry_id": 157240054,
                        "description": "",
                        "entry_number": 4,
                        "entry_date_filed": "2021-03-03",
                        "short_description": "Order",
                        "document_type": "PACER Document",
                        "document_number": "4",
                        "pacer_doc_id": "02103135730",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/29098691/4/miscellaneous-minute-entry-orders-for-2021/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 29098691
                        },
                        "timestamp": "2024-05-14T17:19:54.879962",
                        "docket_id": 29098691,
                        "caseName": "Miscellaneous Minute Entry Orders for 2021",
                        "case_name_full": "",
                        "docketNumber": "1:21-mc-01000",
                        "suitNature": "",
                        "cause": "No cause code entered",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2021-01-01",
                        "dateTerminated": null,
                        "assignedTo": "Jeffrey Uhlman Beaverstock",
                        "assigned_to_id": 8545,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2021-03-03T22:08:44.247787+00:00",
                        "pacer_case_id": "67726"
                      },
                      "highlight": {
                        "short_description": [
                          "<mark>Order</mark>"
                        ],
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_178932816",
                      "_score": 148.79567,
                      "_routing": "29098691",
                      "_source": {
                        "id": 178932816,
                        "docket_entry_id": 173614614,
                        "description": "",
                        "entry_number": 12,
                        "entry_date_filed": "2021-08-27",
                        "short_description": "Order",
                        "document_type": "PACER Document",
                        "document_number": "12",
                        "pacer_doc_id": "02103221152",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/29098691/12/miscellaneous-minute-entry-orders-for-2021/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 29098691
                        },
                        "timestamp": "2024-05-17T05:26:32.842015",
                        "docket_id": 29098691,
                        "caseName": "Miscellaneous Minute Entry Orders for 2021",
                        "case_name_full": "",
                        "docketNumber": "1:21-mc-01000",
                        "suitNature": "",
                        "cause": "No cause code entered",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2021-01-01",
                        "dateTerminated": null,
                        "assignedTo": "Jeffrey Uhlman Beaverstock",
                        "assigned_to_id": 8545,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2021-08-27T20:20:02.979038+00:00",
                        "pacer_case_id": "67726"
                      },
                      "highlight": {
                        "short_description": [
                          "<mark>Order</mark>"
                        ],
                        "plain_text": [
                          ""
                        ]
                      }
                    }
                  ]
                }
              }
            }
          },
          {
            "_index": "recap_vectors",
            "_id": "68292054",
            "_score": 296.74384,
            "_source": {
              "docket_slug": "miscellaneous-minute-entry-orders-for-2024",
              "docket_absolute_url": "/docket/68292054/miscellaneous-minute-entry-orders-for-2024/",
              "court_exact": "alsd",
              "party_id": [],
              "party": [],
              "attorney_id": [],
              "attorney": [],
              "firm_id": [],
              "firm": [],
              "docket_child": "docket",
              "timestamp": "2024-03-27T09:58:58.620435",
              "docket_id": 68292054,
              "caseName": "Miscellaneous Minute Entry Orders for 2024",
              "case_name_full": "",
              "docketNumber": "1:24-mc-01000",
              "suitNature": "",
              "cause": "",
              "juryDemand": "",
              "jurisdictionType": "",
              "dateArgued": null,
              "dateFiled": "2023-12-28",
              "dateTerminated": null,
              "assignedTo": "Jeffrey Uhlman Beaverstock",
              "assigned_to_id": 8545,
              "referredTo": null,
              "referred_to_id": null,
              "court": "District Court, S.D. Alabama",
              "court_id": "alsd",
              "court_citation_string": "S.D. Ala.",
              "chapter": null,
              "trustee_str": null,
              "date_created": "2024-02-28T20:06:51.435234+00:00",
              "pacer_case_id": "73152"
            },
            "highlight": {
              "caseName": [
                "Miscellaneous <mark>Minute</mark> Entry <mark>Orders</mark> for 2024"
              ]
            },
            "inner_hits": {
              "filter_query_inner_recap_document": {
                "hits": {
                  "total": {
                    "value": 11,
                    "relation": "eq"
                  },
                  "max_score": 148.79567,
                  "hits": [
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_406088795",
                      "_score": 148.79567,
                      "_routing": "68292054",
                      "_source": {
                        "id": 406088795,
                        "docket_entry_id": 396930911,
                        "description": "",
                        "entry_number": 11,
                        "entry_date_filed": "2024-07-19",
                        "short_description": "Order",
                        "document_type": "PACER Document",
                        "document_number": 11,
                        "pacer_doc_id": "02103703382",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/68292054/11/miscellaneous-minute-entry-orders-for-2024/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 68292054
                        },
                        "timestamp": "2024-07-19T13:08:27.854357",
                        "docket_id": 68292054,
                        "caseName": "Miscellaneous Minute Entry Orders for 2024",
                        "case_name_full": "",
                        "docketNumber": "1:24-mc-01000",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2023-12-28",
                        "dateTerminated": null,
                        "assignedTo": "Jeffrey Uhlman Beaverstock",
                        "assigned_to_id": 8545,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2024-07-19T13:08:27.800129+00:00",
                        "pacer_case_id": "73152",
                        "_related_instance_to_ignore": null
                      },
                      "highlight": {
                        "short_description": [
                          "<mark>Order</mark>"
                        ],
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_387463779",
                      "_score": 148.79567,
                      "_routing": "68292054",
                      "_source": {
                        "id": 387463779,
                        "docket_entry_id": 379728712,
                        "description": "",
                        "entry_number": 2,
                        "entry_date_filed": "2024-02-28",
                        "short_description": "Order",
                        "document_type": "PACER Document",
                        "document_number": "2",
                        "pacer_doc_id": "02103641027",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/68292054/2/miscellaneous-minute-entry-orders-for-2024/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 68292054
                        },
                        "timestamp": "2024-06-16T11:00:05.615915",
                        "docket_id": 68292054,
                        "caseName": "Miscellaneous Minute Entry Orders for 2024",
                        "case_name_full": "",
                        "docketNumber": "1:24-mc-01000",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2023-12-28",
                        "dateTerminated": null,
                        "assignedTo": "Jeffrey Uhlman Beaverstock",
                        "assigned_to_id": 8545,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2024-02-28T20:06:51.604239+00:00",
                        "pacer_case_id": "73152"
                      },
                      "highlight": {
                        "short_description": [
                          "<mark>Order</mark>"
                        ],
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_387463778",
                      "_score": 148.79567,
                      "_routing": "68292054",
                      "_source": {
                        "id": 387463778,
                        "docket_entry_id": 379728711,
                        "description": "",
                        "entry_number": 3,
                        "entry_date_filed": "2024-02-28",
                        "short_description": "Order",
                        "document_type": "PACER Document",
                        "document_number": "3",
                        "pacer_doc_id": "02103641033",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/68292054/3/miscellaneous-minute-entry-orders-for-2024/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 68292054
                        },
                        "timestamp": "2024-06-16T11:00:05.635126",
                        "docket_id": 68292054,
                        "caseName": "Miscellaneous Minute Entry Orders for 2024",
                        "case_name_full": "",
                        "docketNumber": "1:24-mc-01000",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2023-12-28",
                        "dateTerminated": null,
                        "assignedTo": "Jeffrey Uhlman Beaverstock",
                        "assigned_to_id": 8545,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2024-02-28T20:06:51.547664+00:00",
                        "pacer_case_id": "73152"
                      },
                      "highlight": {
                        "short_description": [
                          "<mark>Order</mark>"
                        ],
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_387463777",
                      "_score": 148.79567,
                      "_routing": "68292054",
                      "_source": {
                        "id": 387463777,
                        "docket_entry_id": 379728710,
                        "description": "",
                        "entry_number": 4,
                        "entry_date_filed": "2024-02-28",
                        "short_description": "Order",
                        "document_type": "PACER Document",
                        "document_number": "4",
                        "pacer_doc_id": "02103641039",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/68292054/4/miscellaneous-minute-entry-orders-for-2024/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 68292054
                        },
                        "timestamp": "2024-06-16T11:00:05.687346",
                        "docket_id": 68292054,
                        "caseName": "Miscellaneous Minute Entry Orders for 2024",
                        "case_name_full": "",
                        "docketNumber": "1:24-mc-01000",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2023-12-28",
                        "dateTerminated": null,
                        "assignedTo": "Jeffrey Uhlman Beaverstock",
                        "assigned_to_id": 8545,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2024-02-28T20:06:51.465126+00:00",
                        "pacer_case_id": "73152"
                      },
                      "highlight": {
                        "short_description": [
                          "<mark>Order</mark>"
                        ],
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_387463787",
                      "_score": 148.79567,
                      "_routing": "68292054",
                      "_source": {
                        "id": 387463787,
                        "docket_entry_id": 379728720,
                        "description": "",
                        "entry_number": 1,
                        "entry_date_filed": "2024-02-28",
                        "short_description": "Order",
                        "document_type": "PACER Document",
                        "document_number": "1",
                        "pacer_doc_id": "02103640966",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/68292054/1/miscellaneous-minute-entry-orders-for-2024/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 68292054
                        },
                        "timestamp": "2024-06-16T11:00:05.925134",
                        "docket_id": 68292054,
                        "caseName": "Miscellaneous Minute Entry Orders for 2024",
                        "case_name_full": "",
                        "docketNumber": "1:24-mc-01000",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2023-12-28",
                        "dateTerminated": null,
                        "assignedTo": "Jeffrey Uhlman Beaverstock",
                        "assigned_to_id": 8545,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2024-02-28T20:06:52.764960+00:00",
                        "pacer_case_id": "73152"
                      },
                      "highlight": {
                        "short_description": [
                          "<mark>Order</mark>"
                        ],
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_401124594",
                      "_score": 148.79567,
                      "_routing": "68292054",
                      "_source": {
                        "id": 401124594,
                        "docket_entry_id": 392106884,
                        "description": "",
                        "entry_number": 6,
                        "entry_date_filed": "2024-05-29",
                        "short_description": "Order",
                        "document_type": "PACER Document",
                        "document_number": "6",
                        "pacer_doc_id": "02103682724",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/68292054/6/miscellaneous-minute-entry-orders-for-2024/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 68292054
                        },
                        "timestamp": "2024-06-20T01:47:29.415305",
                        "docket_id": 68292054,
                        "caseName": "Miscellaneous Minute Entry Orders for 2024",
                        "case_name_full": "",
                        "docketNumber": "1:24-mc-01000",
                        "suitNature": "",
                        "cause": "",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2023-12-28",
                        "dateTerminated": null,
                        "assignedTo": "Jeffrey Uhlman Beaverstock",
                        "assigned_to_id": 8545,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2024-05-29T20:10:09.978464+00:00",
                        "pacer_case_id": "73152"
                      },
                      "highlight": {
                        "short_description": [
                          "<mark>Order</mark>"
                        ],
                        "plain_text": [
                          ""
                        ]
                      }
                    }
                  ]
                }
              }
            }
          },
          {
            "_index": "recap_vectors",
            "_id": "15034720",
            "_score": 295.03918,
            "_source": {
              "docket_slug": "miscellaneous-minute-entry-orders-for-2019",
              "docket_absolute_url": "/docket/15034720/miscellaneous-minute-entry-orders-for-2019/",
              "court_exact": "alsd",
              "party_id": [
                4936543
              ],
              "party": [
                "Charles R. Diard, Jr."
              ],
              "attorney_id": [],
              "attorney": [],
              "firm_id": [],
              "firm": [],
              "docket_child": "docket",
              "timestamp": "2024-03-19T22:48:07.173466",
              "docket_id": 15034720,
              "caseName": "Miscellaneous Minute Entry Orders for 2019",
              "case_name_full": "",
              "docketNumber": "1:19-mc-01000",
              "suitNature": "",
              "cause": "No cause code entered",
              "juryDemand": "",
              "jurisdictionType": "",
              "dateArgued": null,
              "dateFiled": "2018-12-21",
              "dateTerminated": null,
              "assignedTo": "Kristi DuBose",
              "assigned_to_id": 926,
              "referredTo": null,
              "referred_to_id": null,
              "court": "District Court, S.D. Alabama",
              "court_id": "alsd",
              "court_citation_string": "S.D. Ala.",
              "chapter": null,
              "trustee_str": null,
              "date_created": "2019-05-01T16:20:22.480478+00:00",
              "pacer_case_id": "63802"
            },
            "highlight": {
              "caseName": [
                "Miscellaneous <mark>Minute</mark> Entry <mark>Orders</mark> for 2019"
              ]
            },
            "inner_hits": {
              "filter_query_inner_recap_document": {
                "hits": {
                  "total": {
                    "value": 11,
                    "relation": "eq"
                  },
                  "max_score": 148.3248,
                  "hits": [
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_68317993",
                      "_score": 148.3248,
                      "_routing": "15034720",
                      "_source": {
                        "id": 68317993,
                        "docket_entry_id": 64187739,
                        "description": "Order entered reappointing Magistrate Judge Sonja F. Bivins to serve an eight-year term. Signed by Chief Judge Kristi K. DuBose on 2/8/2019. (jlr) (Entered: 05/01/2019)",
                        "entry_number": 4,
                        "entry_date_filed": "2019-02-08",
                        "short_description": "Order",
                        "document_type": "PACER Document",
                        "document_number": "4",
                        "pacer_doc_id": "02102801858",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/15034720/4/miscellaneous-minute-entry-orders-for-2019/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 15034720
                        },
                        "timestamp": "2024-04-29T00:04:44.682684",
                        "docket_id": 15034720,
                        "caseName": "Miscellaneous Minute Entry Orders for 2019",
                        "case_name_full": "",
                        "docketNumber": "1:19-mc-01000",
                        "suitNature": "",
                        "cause": "No cause code entered",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2018-12-21",
                        "dateTerminated": null,
                        "assignedTo": "Kristi DuBose",
                        "assigned_to_id": 926,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2019-05-01T16:20:22.498295+00:00",
                        "pacer_case_id": "63802"
                      },
                      "highlight": {
                        "short_description": [
                          "<mark>Order</mark>"
                        ],
                        "plain_text": [
                          ""
                        ],
                        "description": [
                          "<mark>Order</mark> entered reappointing Magistrate Judge Sonja F. Bivins to serve an eight-year term. Signed by Chief Judge Kristi K. DuBose on 2/8/2019. (jlr) (Entered: 05/01/2019)"
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_101479147",
                      "_score": 147.5719,
                      "_routing": "15034720",
                      "_source": {
                        "id": 101479147,
                        "docket_entry_id": 97255605,
                        "description": "",
                        "entry_number": 10,
                        "entry_date_filed": "2019-08-02",
                        "short_description": "Order",
                        "document_type": "PACER Document",
                        "document_number": "10",
                        "pacer_doc_id": "02102848068",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/15034720/10/miscellaneous-minute-entry-orders-for-2019/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 15034720
                        },
                        "timestamp": "2024-05-05T15:22:46.125598",
                        "docket_id": 15034720,
                        "caseName": "Miscellaneous Minute Entry Orders for 2019",
                        "case_name_full": "",
                        "docketNumber": "1:19-mc-01000",
                        "suitNature": "",
                        "cause": "No cause code entered",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2018-12-21",
                        "dateTerminated": null,
                        "assignedTo": "Kristi DuBose",
                        "assigned_to_id": 926,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2019-08-02T19:20:15.699212+00:00",
                        "pacer_case_id": "63802"
                      },
                      "highlight": {
                        "short_description": [
                          "<mark>Order</mark>"
                        ],
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_89564024",
                      "_score": 147.5719,
                      "_routing": "15034720",
                      "_source": {
                        "id": 89564024,
                        "docket_entry_id": 85402803,
                        "description": "",
                        "entry_number": 6,
                        "entry_date_filed": "2019-06-18",
                        "short_description": "Order",
                        "document_type": "PACER Document",
                        "document_number": "6",
                        "pacer_doc_id": "02102814950",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/15034720/6/miscellaneous-minute-entry-orders-for-2019/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 15034720
                        },
                        "timestamp": "2024-05-03T11:40:42.341487",
                        "docket_id": 15034720,
                        "caseName": "Miscellaneous Minute Entry Orders for 2019",
                        "case_name_full": "",
                        "docketNumber": "1:19-mc-01000",
                        "suitNature": "",
                        "cause": "No cause code entered",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2018-12-21",
                        "dateTerminated": null,
                        "assignedTo": "Kristi DuBose",
                        "assigned_to_id": 926,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2019-06-03T14:20:14.591974+00:00",
                        "pacer_case_id": "63802"
                      },
                      "highlight": {
                        "short_description": [
                          "<mark>Order</mark>"
                        ],
                        "plain_text": [
                          ""
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_68324897",
                      "_score": 147.41469,
                      "_routing": "15034720",
                      "_source": {
                        "id": 68324897,
                        "docket_entry_id": 64194634,
                        "description": "Order entered In Re: Operation of the United States District Court for the Southern District of Alabama in the absence of funding authority by the United States Congress and/or the President. Signed by Chief Judge Kristi K. DuBose on 1/16/2019. (jlr) (Entered: 01/16/2019)",
                        "entry_number": 2,
                        "entry_date_filed": "2019-01-16",
                        "short_description": "",
                        "document_type": "PACER Document",
                        "document_number": "2",
                        "pacer_doc_id": "02102747812",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/15034720/2/miscellaneous-minute-entry-orders-for-2019/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 15034720
                        },
                        "timestamp": "2024-04-29T00:06:20.120295",
                        "docket_id": 15034720,
                        "caseName": "Miscellaneous Minute Entry Orders for 2019",
                        "case_name_full": "",
                        "docketNumber": "1:19-mc-01000",
                        "suitNature": "",
                        "cause": "No cause code entered",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2018-12-21",
                        "dateTerminated": null,
                        "assignedTo": "Kristi DuBose",
                        "assigned_to_id": 926,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2019-05-01T16:33:38.614617+00:00",
                        "pacer_case_id": "63802"
                      },
                      "highlight": {
                        "plain_text": [
                          ""
                        ],
                        "description": [
                          "<mark>Order</mark> entered In Re: Operation of the United States District Court for the Southern District of Alabama in the absence of funding authority by the United States Congress and/or the President. Signed by Chief Judge Kristi K. DuBose on 1/16/2019. (jlr) (Entered: 01/16/2019)"
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_68324896",
                      "_score": 147.38141,
                      "_routing": "15034720",
                      "_source": {
                        "id": 68324896,
                        "docket_entry_id": 64194633,
                        "description": "Order entered In Re: Operation of the United States District Court for the Southern District of Alabama in the absence of funding authority by the United States Congress and/or the President. Signed by Chief U. S. District Judge Kristi K. DuBose, and Chief U. S. Bankruptcy Judge Henry A. Callaway on 1/4/2019. (jlr) (Entered: 01/04/2019)",
                        "entry_number": 1,
                        "entry_date_filed": "2019-01-04",
                        "short_description": "",
                        "document_type": "PACER Document",
                        "document_number": "1",
                        "pacer_doc_id": "02102742047",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/15034720/1/miscellaneous-minute-entry-orders-for-2019/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 15034720
                        },
                        "timestamp": "2024-04-29T00:06:20.030315",
                        "docket_id": 15034720,
                        "caseName": "Miscellaneous Minute Entry Orders for 2019",
                        "case_name_full": "",
                        "docketNumber": "1:19-mc-01000",
                        "suitNature": "",
                        "cause": "No cause code entered",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2018-12-21",
                        "dateTerminated": null,
                        "assignedTo": "Kristi DuBose",
                        "assigned_to_id": 926,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2019-05-01T16:33:38.592652+00:00",
                        "pacer_case_id": "63802"
                      },
                      "highlight": {
                        "plain_text": [
                          ""
                        ],
                        "description": [
                          "<mark>Order</mark> entered In Re: Operation of the United States District Court for the Southern District of Alabama in the absence of funding authority by the United States Congress and/or the President. Signed by Chief U. S. District Judge Kristi K. DuBose, and Chief U. S. Bankruptcy Judge Henry A. Callaway on 1/4/2019. (jlr) (Entered: 01/04/2019)"
                        ]
                      }
                    },
                    {
                      "_index": "recap_vectors",
                      "_id": "rd_108014734",
                      "_score": 147.35754,
                      "_routing": "15034720",
                      "_source": {
                        "id": 108014734,
                        "docket_entry_id": 103742070,
                        "description": "",
                        "entry_number": 11,
                        "entry_date_filed": "2019-09-26",
                        "short_description": "Order Appointing Magistrate Judge",
                        "document_type": "PACER Document",
                        "document_number": "11",
                        "pacer_doc_id": "02102882861",
                        "attachment_number": null,
                        "is_available": false,
                        "page_count": null,
                        "filepath_local": null,
                        "absolute_url": "/docket/15034720/11/miscellaneous-minute-entry-orders-for-2019/",
                        "cites": [],
                        "docket_child": {
                          "name": "recap_document",
                          "parent": 15034720
                        },
                        "timestamp": "2024-05-06T19:10:49.412418",
                        "docket_id": 15034720,
                        "caseName": "Miscellaneous Minute Entry Orders for 2019",
                        "case_name_full": "",
                        "docketNumber": "1:19-mc-01000",
                        "suitNature": "",
                        "cause": "No cause code entered",
                        "juryDemand": "",
                        "jurisdictionType": "",
                        "dateArgued": null,
                        "dateFiled": "2018-12-21",
                        "dateTerminated": null,
                        "assignedTo": "Kristi DuBose",
                        "assigned_to_id": 926,
                        "referredTo": null,
                        "referred_to_id": null,
                        "court": "District Court, S.D. Alabama",
                        "court_id": "alsd",
                        "court_citation_string": "S.D. Ala.",
                        "chapter": null,
                        "trustee_str": null,
                        "date_created": "2019-09-26T22:23:21.861656+00:00",
                        "pacer_case_id": "63802"
                      },
                      "highlight": {
                        "short_description": [
                          "<mark>Order</mark> Appointing Magistrate Judge"
                        ],
                        "plain_text": [
                          ""
                        ]
                      }
                    }
                  ]
                }
              }
            }
          }
        ]
      },
      "status": 200
    },
    {
      "took": 4328,
      "timed_out": false,
      "_shards": {
        "total": 30,
        "successful": 30,
        "skipped": 0,
        "failed": 0
      },
      "hits": {
        "total": {
          "value": 1141915,
          "relation": "eq"
        },
        "max_score": null,
        "hits": []
      },
      "status": 200
    },
    {
      "took": 3266,
      "timed_out": false,
      "_shards": {
        "total": 30,
        "successful": 30,
        "skipped": 0,
        "failed": 0
      },
      "hits": {
        "total": {
          "value": 4099289,
          "relation": "eq"
        },
        "max_score": null,
        "hits": []
      },
      "status": 200
    }
  ]
}
mlissner commented 1 month ago

Here's the second one:

second-query.json

And the disk size for the recap_vectors index looks like:

image

albertisfu commented 1 month ago

Thanks. Regarding the index size, at first glance, it seems that the number of shards we're using is appropriate. Documentation recommends keeping them around 10 to 50GB. According to these numbers 1.2TB and 30 shards they are around 40GB per shard.

I'll analyze the results from the profile query and will get back with my findings.

albertisfu commented 1 month ago

Some interesting results from the profile query:

I took the most relevant metrics from each query stage, measured in seconds:

The query performed here is a match_all query, so all the dockets and recap documents are matched.

Main query took: 21.189 seconds

Profiling:
Shard: [0cQl85qiTiyiNppgQkkPOA][recap_vectors][14]
Boolean query:  1.149140938
     next_doc time:  0.599310444
     next_doc count:  1990584
     match_count:  1917963
Children:
     GlobalOrdinalsWithScoreQuery :  0.271533686
     FunctionScoreQuery :  0.327857571
Rewrite time:  2.789440775
----------------------
Shard: [0cQl85qiTiyiNppgQkkPOA][recap_vectors][18]
Boolean query:  1.128727705
     next_doc time:  0.589950168
     next_doc count:  1991365
     match_count:  1916120
Children:
     GlobalOrdinalsWithScoreQuery :  0.269129212
     FunctionScoreQuery :  0.325178117
Rewrite time:  2.504126795
----------------------
Shard: [0cQl85qiTiyiNppgQkkPOA][recap_vectors][8]
Boolean query:  1.199912978
     next_doc time:  0.625858493
     next_doc count:  1986247
     match_count:  1913089
Children:
     GlobalOrdinalsWithScoreQuery :  0.271916193
     FunctionScoreQuery :  0.324458007
Rewrite time:  2.276829145
----------------------
Shard: [1nSYxAz0Qb2rz_-d8z7bcw][recap_vectors][13]
Boolean query:  1.383895526
     next_doc time:  0.76141532
     next_doc count:  2000612
     match_count:  1916593
Children:
     GlobalOrdinalsWithScoreQuery :  0.273540707
     FunctionScoreQuery :  0.422633991
Rewrite time:  1.310406402
----------------------
Shard: [1nSYxAz0Qb2rz_-d8z7bcw][recap_vectors][2]
Boolean query:  11.66285407
     next_doc time:  11.040170386
     next_doc count:  1990780
     match_count:  1914971
Children:
     GlobalOrdinalsWithScoreQuery :  0.286678909
     FunctionScoreQuery :  0.3999565
Rewrite time:  2.05183367
----------------------
Shard: [1nSYxAz0Qb2rz_-d8z7bcw][recap_vectors][7]
Boolean query:  2.425392605
     next_doc time:  1.792442304
     next_doc count:  1987995
     match_count:  1914244
Children:
     GlobalOrdinalsWithScoreQuery :  0.289275427
     FunctionScoreQuery :  0.396708194
Rewrite time:  2.854360008
----------------------
Shard: [3zrjVUmdQbejwIdnw1XrAA][recap_vectors][0]
Boolean query:  1.372273179
     next_doc time:  0.700496661
     next_doc count:  1987429
     match_count:  1915711
Children:
     GlobalOrdinalsWithScoreQuery :  0.29380652
     FunctionScoreQuery :  0.399695185
Rewrite time:  2.055848606
Fetch 10.787348231
FetchSourcePhase :  1.5656e-05
HighlightPhase :  10.722527856
InnerHitsPhase :  0.047860326
StoredFieldsPhase :  1.1479e-05
----------------------
Shard: [3zrjVUmdQbejwIdnw1XrAA][recap_vectors][11]
Boolean query:  1.356173961
     next_doc time:  0.699856185
     next_doc count:  1990537
     match_count:  1914180
Children:
     GlobalOrdinalsWithScoreQuery :  0.276228847
     FunctionScoreQuery :  0.392256958
Rewrite time:  1.863693391
----------------------
Shard: [3zrjVUmdQbejwIdnw1XrAA][recap_vectors][4]
Boolean query:  1.336949399
     next_doc time:  0.69100977
     next_doc count:  1984365
     match_count:  1912431
Children:
     GlobalOrdinalsWithScoreQuery :  0.306251396
     FunctionScoreQuery :  0.380760208
Rewrite time:  1.356518327
----------------------
Shard: [3zrjVUmdQbejwIdnw1XrAA][recap_vectors][5]
Boolean query:  1.670413371
     next_doc time:  0.741345127
     next_doc count:  1990221
     match_count:  1913769
Children:
     GlobalOrdinalsWithScoreQuery :  0.295186717
     FunctionScoreQuery :  0.602928234
Rewrite time:  2.733974485
----------------------
Shard: [UkMvqJ2UQQqjcVU9Dxq7_w][recap_vectors][15]
Boolean query:  1.26652474
     next_doc time:  0.669461242
     next_doc count:  1990041
     match_count:  1915320
Children:
     GlobalOrdinalsWithScoreQuery :  0.260785286
     FunctionScoreQuery :  0.386011299
Rewrite time:  2.675710818
----------------------
Shard: [UkMvqJ2UQQqjcVU9Dxq7_w][recap_vectors][23]
Boolean query:  1.241677129
     next_doc time:  0.658713749
     next_doc count:  1977303
     match_count:  1914447
Children:
     GlobalOrdinalsWithScoreQuery :  0.26973578
     FunctionScoreQuery :  0.385961883
Rewrite time:  1.921310134
----------------------
Shard: [UkMvqJ2UQQqjcVU9Dxq7_w][recap_vectors][25]
Boolean query:  1.200228
     next_doc time:  0.619843624
     next_doc count:  1922747
     match_count:  1914971
Children:
     GlobalOrdinalsWithScoreQuery :  1.401457648
     FunctionScoreQuery :  0.378686316
Rewrite time:  2.479119849
----------------------
Shard: [UkMvqJ2UQQqjcVU9Dxq7_w][recap_vectors][28]
Boolean query:  17.844437329
     next_doc time:  17.243741057
     next_doc count:  1989598
     match_count:  1917679
Children:
     GlobalOrdinalsWithScoreQuery :  0.363890004
     FunctionScoreQuery :  0.401994226
Rewrite time:  1.551175455
----------------------
Shard: [jqcLbOYxQvuudg-SqWb8cg][recap_vectors][10]
Boolean query:  1.445266934
     next_doc time:  0.808907049
     next_doc count:  1978686
     match_count:  1916915
Children:
     GlobalOrdinalsWithScoreQuery :  0.271964042
     FunctionScoreQuery :  0.375455658
Rewrite time:  2.373416569
----------------------
Shard: [jqcLbOYxQvuudg-SqWb8cg][recap_vectors][16]
Boolean query:  1.427722705
     next_doc time:  0.821667121
     next_doc count:  1980396
     match_count:  1915965
Children:
     GlobalOrdinalsWithScoreQuery :  0.271881919
     FunctionScoreQuery :  0.369708932
Rewrite time:  1.141221784
----------------------
Shard: [jqcLbOYxQvuudg-SqWb8cg][recap_vectors][1]
Boolean query:  1.362497525
     next_doc time:  0.766043934
     next_doc count:  1990121
     match_count:  1916203
Children:
     GlobalOrdinalsWithScoreQuery :  0.2570557
     FunctionScoreQuery :  0.371698783
Rewrite time:  2.132193494
----------------------
Shard: [jqcLbOYxQvuudg-SqWb8cg][recap_vectors][6]
Boolean query:  1.359441276
     next_doc time:  0.763031092
     next_doc count:  1988078
     match_count:  1911995
Children:
     GlobalOrdinalsWithScoreQuery :  0.276500775
     FunctionScoreQuery :  0.368847406
Rewrite time:  2.347767292
----------------------
Shard: [nL1wCXyqQCW64ODQvubEnA][recap_vectors][22]
Boolean query:  0.960888855
     next_doc time:  0.448035344
     next_doc count:  1987366
     match_count:  1913643
Children:
     GlobalOrdinalsWithScoreQuery :  0.222549543
     FunctionScoreQuery :  5.975003921
Rewrite time:  2.097626673
----------------------
Shard: [nL1wCXyqQCW64ODQvubEnA][recap_vectors][26]
Boolean query:  0.953082901
     next_doc time:  0.447565337
     next_doc count:  1991155
     match_count:  1914423
Children:
     GlobalOrdinalsWithScoreQuery :  0.21728484
     FunctionScoreQuery :  0.343800378
Rewrite time:  1.944356577
----------------------
Shard: [nL1wCXyqQCW64ODQvubEnA][recap_vectors][27]
Boolean query:  0.955000888
     next_doc time:  0.452163351
     next_doc count:  1982598
     match_count:  1915288
Children:
     GlobalOrdinalsWithScoreQuery :  0.210397232
     FunctionScoreQuery :  0.352277854
Rewrite time:  2.183583109
----------------------
Shard: [nL1wCXyqQCW64ODQvubEnA][recap_vectors][29]
Boolean query:  0.973286274
     next_doc time:  0.464520008
     next_doc count:  1986944
     match_count:  1913427
Children:
     GlobalOrdinalsWithScoreQuery :  0.237742787
     FunctionScoreQuery :  0.346691993
Rewrite time:  2.470964524
----------------------
Shard: [nmLgdM-aSDCkZNmyVoOodg][recap_vectors][12]
Boolean query:  1.203881776
     next_doc time:  0.635688896
     next_doc count:  1985407
     match_count:  1915966
Children:
     GlobalOrdinalsWithScoreQuery :  0.284795025
     FunctionScoreQuery :  0.336961939
Rewrite time:  2.036485211
----------------------
Shard: [nmLgdM-aSDCkZNmyVoOodg][recap_vectors][19]
Boolean query:  1.410838533
     next_doc time:  0.654786597
     next_doc count:  1975680
     match_count:  1914269
Children:
     GlobalOrdinalsWithScoreQuery :  0.278594495
     FunctionScoreQuery :  0.371878306
Rewrite time:  2.879834845
----------------------
Shard: [nmLgdM-aSDCkZNmyVoOodg][recap_vectors][3]
Boolean query:  1.251486733
     next_doc time:  0.690457484
     next_doc count:  1988682
     match_count:  1913967
Children:
     GlobalOrdinalsWithScoreQuery :  0.27963725
     FunctionScoreQuery :  0.337119526
Rewrite time:  1.181618283
----------------------
Shard: [nmLgdM-aSDCkZNmyVoOodg][recap_vectors][9]
Boolean query:  1.29860305
     next_doc time:  0.735598692
     next_doc count:  1940687
     match_count:  1914614
Children:
     GlobalOrdinalsWithScoreQuery :  0.346615506
     FunctionScoreQuery :  0.33299498
Rewrite time:  1.428274735
----------------------
Shard: [sRr5leJqQTucQqYSh3lPDA][recap_vectors][17]
Boolean query:  1.147510148
     next_doc time:  0.568096857
     next_doc count:  1993979
     match_count:  1916482
Children:
     GlobalOrdinalsWithScoreQuery :  0.276526929
     FunctionScoreQuery :  0.375037772
Rewrite time:  1.483313063
----------------------
Shard: [sRr5leJqQTucQqYSh3lPDA][recap_vectors][20]
Boolean query:  1.130241929
     next_doc time:  0.554501772
     next_doc count:  1979919
     match_count:  1915993
Children:
     GlobalOrdinalsWithScoreQuery :  0.254141576
     FunctionScoreQuery :  0.368429899
Rewrite time:  1.817051731
----------------------
Shard: [sRr5leJqQTucQqYSh3lPDA][recap_vectors][21]
Boolean query:  1.641660828
     next_doc time:  1.068206058
     next_doc count:  1972721
     match_count:  1910214
Children:
     GlobalOrdinalsWithScoreQuery :  0.284420724
     FunctionScoreQuery :  0.369171445
Rewrite time:  2.104193877
----------------------
Shard: [sRr5leJqQTucQqYSh3lPDA][recap_vectors][24]
Boolean query:  1.155535073
     next_doc time:  0.578395729
     next_doc count:  1990804
     match_count:  1914188
Children:
     GlobalOrdinalsWithScoreQuery :  0.284345492
     FunctionScoreQuery :  0.368640339
Rewrite time:  2.473384488
----------------------

In this match_all query, the Boolean query took an average of 2.19718 seconds, with common values around 1 to 1.5 seconds. However, there are some exceptions:

Shard: [1nSYxAz0Qb2rz_-d8z7bcw][recap_vectors][2]
Boolean query:  11.66285407

Shard: [3zrjVUmdQbejwIdnw1XrAA][recap_vectors][0]
Boolean query:  1.372273179
HighlightPhase :  10.722527856

Shard: [UkMvqJ2UQQqjcVU9Dxq7_w][recap_vectors][28]
Boolean query:  17.844437329

These are the shards that took more time. Shard 0 is special; it was the only one with a HighlightPhase, which took around 10 seconds. This is because the match_all query matched all results but only retrieved the first 10, which were allocated in Shard 0. Highlighting was applied to these results to return the snippet for the plain_text field, limiting it to the first 100 characters.

The situation in Shards 2 and 28 is different. In this case, the Boolean query took an unusual amount of time. What is strange is that these shards matched a similar number of documents as other shards, as shown by the next_doc count and match_count about 1.9 million documents on average.

This suggests that if shards are balanced in terms of the number of documents and the complexity of the query is the same across all of them (except for the one doing highlighting), the longer query times in some shards could be due to the workload on the node at that moment or a hardware issue in that specific node.

Docket count query took: 10.841

Profiling:
Shard: [0cQl85qiTiyiNppgQkkPOA][recap_vectors][18]
Boolean query:  12.761728759
     next_doc time:  12.329047036
     next_doc count:  1991365
     match_count:  1916120
Children:
     BooleanQuery :  12.408661587
Rewrite time:  1.406728776
----------------------
Shard: [0cQl85qiTiyiNppgQkkPOA][recap_vectors][5]
Boolean query:  1.276930591
     next_doc time:  0.855946451
     next_doc count:  1989967
     match_count:  1913769
Children:
     BooleanQuery :  0.925889317
Rewrite time:  2.446459596
----------------------
Shard: [0cQl85qiTiyiNppgQkkPOA][recap_vectors][8]
Boolean query:  1.266405478
     next_doc time:  0.845993419
     next_doc count:  1986247
     match_count:  1913089
Children:
     BooleanQuery :  0.904172476
Rewrite time:  2.468408531
----------------------
Shard: [0cQl85qiTiyiNppgQkkPOA][recap_vectors][9]
Boolean query:  5.663786532
     next_doc time:  0.845171099
     next_doc count:  1987374
     match_count:  1914614
Children:
     BooleanQuery :  5.281174888
Rewrite time:  1.786586492
----------------------
Shard: [1nSYxAz0Qb2rz_-d8z7bcw][recap_vectors][12]
Boolean query:  1.144439554
     next_doc time:  0.856235487
     next_doc count:  1978083
     match_count:  1915966
Children:
     BooleanQuery :  0.648816819
Rewrite time:  2.502853842
----------------------
Shard: [1nSYxAz0Qb2rz_-d8z7bcw][recap_vectors][13]
Boolean query:  0.978315316
     next_doc time:  0.688506084
     next_doc count:  2000612
     match_count:  1916593
Children:
     BooleanQuery :  0.665425788
Rewrite time:  2.52964694
----------------------
Shard: [1nSYxAz0Qb2rz_-d8z7bcw][recap_vectors][7]
Boolean query:  0.963840757
     next_doc time:  0.677913647
     next_doc count:  1987995
     match_count:  1914244
Children:
     BooleanQuery :  0.65566041
Rewrite time:  2.078242179
----------------------
Shard: [3zrjVUmdQbejwIdnw1XrAA][recap_vectors][0]
Boolean query:  1.289643146
     next_doc time:  0.707156242
     next_doc count:  1987429
     match_count:  1915711
Children:
     BooleanQuery :  0.963648327
Rewrite time:  2.596404222
----------------------
Shard: [3zrjVUmdQbejwIdnw1XrAA][recap_vectors][11]
Boolean query:  1.038255137
     next_doc time:  0.735003786
     next_doc count:  1990537
     match_count:  1914180
Children:
     BooleanQuery :  0.694536864
Rewrite time:  1.818054129
----------------------
Shard: [3zrjVUmdQbejwIdnw1XrAA][recap_vectors][14]
Boolean query:  1.011664565
     next_doc time:  0.707317668
     next_doc count:  1988249
     match_count:  1917963
Children:
     BooleanQuery :  0.681686212
Rewrite time:  2.604686672
----------------------
Shard: [3zrjVUmdQbejwIdnw1XrAA][recap_vectors][4]
Boolean query:  1.01489611
     next_doc time:  0.711972068
     next_doc count:  1984365
     match_count:  1912431
Children:
     BooleanQuery :  0.680776006
Rewrite time:  2.592852617
----------------------
Shard: [UkMvqJ2UQQqjcVU9Dxq7_w][recap_vectors][15]
Boolean query:  1.082191102
     next_doc time:  0.769237884
     next_doc count:  1990041
     match_count:  1915320
Children:
     BooleanQuery :  0.75760746
Rewrite time:  1.633090642
----------------------
Shard: [UkMvqJ2UQQqjcVU9Dxq7_w][recap_vectors][20]
Boolean query:  1.060145582
     next_doc time:  0.748505301
     next_doc count:  1924844
     match_count:  1915993
Children:
     BooleanQuery :  0.736182719
Rewrite time:  2.194722279
----------------------
Shard: [UkMvqJ2UQQqjcVU9Dxq7_w][recap_vectors][23]
Boolean query:  1.127909802
     next_doc time:  0.781891503
     next_doc count:  1977303
     match_count:  1914447
Children:
     BooleanQuery :  0.808725995
Rewrite time:  2.550624833
----------------------
Shard: [UkMvqJ2UQQqjcVU9Dxq7_w][recap_vectors][28]
Boolean query:  1.099405462
     next_doc time:  0.772704606
     next_doc count:  1989598
     match_count:  1917679
Children:
     BooleanQuery :  0.772423762
Rewrite time:  1.438533573
----------------------
Shard: [jqcLbOYxQvuudg-SqWb8cg][recap_vectors][10]
Boolean query:  1.052024937
     next_doc time:  0.745339427
     next_doc count:  1978686
     match_count:  1916915
Children:
     BooleanQuery :  0.719929529
Rewrite time:  1.997497424
----------------------
Shard: [jqcLbOYxQvuudg-SqWb8cg][recap_vectors][16]
Boolean query:  1.050863295
     next_doc time:  0.741161229
     next_doc count:  1980396
     match_count:  1915965
Children:
     BooleanQuery :  0.721378509
Rewrite time:  1.667898948
----------------------
Shard: [jqcLbOYxQvuudg-SqWb8cg][recap_vectors][1]
Boolean query:  1.058002313
     next_doc time:  0.751312127
     next_doc count:  1990121
     match_count:  1916203
Children:
     BooleanQuery :  0.731554019
Rewrite time:  1.669596684
----------------------
Shard: [jqcLbOYxQvuudg-SqWb8cg][recap_vectors][6]
Boolean query:  1.05429882
     next_doc time:  0.748487038
     next_doc count:  1988078
     match_count:  1911995
Children:
     BooleanQuery :  0.729856439
Rewrite time:  2.44639903
----------------------
Shard: [nL1wCXyqQCW64ODQvubEnA][recap_vectors][22]
Boolean query:  1.094922698
     next_doc time:  0.799290219
     next_doc count:  1987366
     match_count:  1913643
Children:
     BooleanQuery :  0.783355843
Rewrite time:  1.702940764
----------------------
Shard: [nL1wCXyqQCW64ODQvubEnA][recap_vectors][26]
Boolean query:  1.095693307
     next_doc time:  0.803099557
     next_doc count:  1991155
     match_count:  1914423
Children:
     BooleanQuery :  0.783955147
Rewrite time:  1.121822397
----------------------
Shard: [nL1wCXyqQCW64ODQvubEnA][recap_vectors][27]
Boolean query:  3.600513279
     next_doc time:  3.303835812
     next_doc count:  1982598
     match_count:  1915288
Children:
     BooleanQuery :  1.551554669
Rewrite time:  1.893334468
----------------------
Shard: [nL1wCXyqQCW64ODQvubEnA][recap_vectors][29]
Boolean query:  1.098133102
     next_doc time:  0.80386955
     next_doc count:  1986944
     match_count:  1913427
Children:
     BooleanQuery :  0.775091049
Rewrite time:  1.177010312
----------------------
Shard: [nmLgdM-aSDCkZNmyVoOodg][recap_vectors][19]
Boolean query:  8.255496807
     next_doc time:  0.71672592
     next_doc count:  1975680
     match_count:  1914269
Children:
     BooleanQuery :  7.920384466
Rewrite time:  3.529400825
----------------------
Shard: [nmLgdM-aSDCkZNmyVoOodg][recap_vectors][2]
Boolean query:  1.019132514
     next_doc time:  0.714503633
     next_doc count:  1991491
     match_count:  1914971
Children:
     BooleanQuery :  0.684709994
Rewrite time:  2.961098742
----------------------
Shard: [nmLgdM-aSDCkZNmyVoOodg][recap_vectors][3]
Boolean query:  1.019026994
     next_doc time:  0.714371629
     next_doc count:  1988682
     match_count:  1913967
Children:
     BooleanQuery :  0.685184579
Rewrite time:  3.006552829
----------------------
Shard: [sRr5leJqQTucQqYSh3lPDA][recap_vectors][17]
Boolean query:  1.735156125
     next_doc time:  0.692722424
     next_doc count:  1993979
     match_count:  1916482
Children:
     BooleanQuery :  1.353689867
Rewrite time:  2.767437344
----------------------
Shard: [sRr5leJqQTucQqYSh3lPDA][recap_vectors][21]
Boolean query:  0.928381656
     next_doc time:  0.655214678
     next_doc count:  1972721
     match_count:  1910214
Children:
     BooleanQuery :  0.626568091
Rewrite time:  2.205690613
----------------------
Shard: [sRr5leJqQTucQqYSh3lPDA][recap_vectors][24]
Boolean query:  0.937254521
     next_doc time:  0.663563497
     next_doc count:  1990804
     match_count:  1914188
Children:
     BooleanQuery :  0.631797339
Rewrite time:  1.927572466
----------------------
Shard: [sRr5leJqQTucQqYSh3lPDA][recap_vectors][25]
Boolean query:  0.990624231
     next_doc time:  0.712934424
     next_doc count:  1992305
     match_count:  1914971
Children:
     BooleanQuery :  0.685542856
Rewrite time:  2.518122243
----------------------

The average time in this query was: 1.958 seconds with common times around 1 second.

In this case shards that took the more time:

Shard: [0cQl85qiTiyiNppgQkkPOA][recap_vectors][18]
Boolean query:  12.761728759

Shard: [0cQl85qiTiyiNppgQkkPOA][recap_vectors][9]
Boolean query:  5.663786532

Shard: [nmLgdM-aSDCkZNmyVoOodg][recap_vectors][19]
Boolean query:  8.255496807

Child count query took: 14.97

Profiling:
Shard: [0cQl85qiTiyiNppgQkkPOA][recap_vectors][14]
Boolean query:  2.386647388
     next_doc time:  2.385760068
     next_doc count:  16531071
     match_count:  0
Children:
     TermQuery :  0.857677638
Rewrite time:  3.758e-06
----------------------
Shard: [0cQl85qiTiyiNppgQkkPOA][recap_vectors][24]
Boolean query:  2.413320015
     next_doc time:  2.412590853
     next_doc count:  16682781
     match_count:  0
Children:
     TermQuery :  0.863473844
Rewrite time:  3.618e-06
----------------------
Shard: [0cQl85qiTiyiNppgQkkPOA][recap_vectors][5]
Boolean query:  2.594158624
     next_doc time:  2.592982469
     next_doc count:  17001117
     match_count:  0
Children:
     TermQuery :  0.871896045
Rewrite time:  4.21e-06
----------------------
Shard: [0cQl85qiTiyiNppgQkkPOA][recap_vectors][9]
Boolean query:  2.371423529
     next_doc time:  2.370121727
     next_doc count:  16416412
     match_count:  0
Children:
     TermQuery :  0.851958963
Rewrite time:  4.004e-06
----------------------
Shard: [1nSYxAz0Qb2rz_-d8z7bcw][recap_vectors][12]
Boolean query:  1.982878092
     next_doc time:  1.981914602
     next_doc count:  15268062
     match_count:  0
Children:
     TermQuery :  0.716204085
Rewrite time:  6.67e-06
----------------------
Shard: [1nSYxAz0Qb2rz_-d8z7bcw][recap_vectors][13]
Boolean query:  2.036490965
     next_doc time:  2.035478811
     next_doc count:  15893537
     match_count:  0
Children:
     TermQuery :  0.736274507
Rewrite time:  4.095e-06
----------------------
Shard: [1nSYxAz0Qb2rz_-d8z7bcw][recap_vectors][3]
Boolean query:  2.050947061
     next_doc time:  2.049964239
     next_doc count:  15576556
     match_count:  0
Children:
     TermQuery :  0.72799041
Rewrite time:  3.4667e-05
----------------------
Shard: [1nSYxAz0Qb2rz_-d8z7bcw][recap_vectors][7]
Boolean query:  2.213377185
     next_doc time:  2.212473944
     next_doc count:  17223608
     match_count:  0
Children:
     TermQuery :  0.793815192
Rewrite time:  3.537e-06
----------------------
Shard: [3zrjVUmdQbejwIdnw1XrAA][recap_vectors][10]
Boolean query:  2.22085609
     next_doc time:  2.219828012
     next_doc count:  16204674
     match_count:  0
Children:
     TermQuery :  0.88272812
Rewrite time:  4.234e-06
----------------------
Shard: [3zrjVUmdQbejwIdnw1XrAA][recap_vectors][1]
Boolean query:  13.104195599
     next_doc time:  13.103167869
     next_doc count:  16398015
     match_count:  0
Children:
     TermQuery :  0.884479295
Rewrite time:  4.234e-06
----------------------
Shard: [3zrjVUmdQbejwIdnw1XrAA][recap_vectors][4]
Boolean query:  2.315099009
     next_doc time:  2.314101854
     next_doc count:  17011164
     match_count:  0
Children:
     TermQuery :  0.915542008
Rewrite time:  3.931e-06
----------------------
Shard: [UkMvqJ2UQQqjcVU9Dxq7_w][recap_vectors][15]
Boolean query:  2.03501764
     next_doc time:  2.034215874
     next_doc count:  15112081
     match_count:  0
Children:
     TermQuery :  0.77994559
Rewrite time:  3.085e-06
----------------------
Shard: [UkMvqJ2UQQqjcVU9Dxq7_w][recap_vectors][17]
Boolean query:  2.138290897
     next_doc time:  2.137341127
     next_doc count:  15765619
     match_count:  0
Children:
     TermQuery :  0.815146557
Rewrite time:  3.7e-06
----------------------
Shard: [UkMvqJ2UQQqjcVU9Dxq7_w][recap_vectors][20]
Boolean query:  2.150749713
     next_doc time:  2.149734681
     next_doc count:  15763667
     match_count:  0
Children:
     TermQuery :  0.822973026
Rewrite time:  3.397e-06
----------------------
Shard: [jqcLbOYxQvuudg-SqWb8cg][recap_vectors][0]
Boolean query:  2.223007944
     next_doc time:  2.222208018
     next_doc count:  15875123
     match_count:  0
Children:
     TermQuery :  0.903218768
Rewrite time:  3.692e-06
----------------------
Shard: [jqcLbOYxQvuudg-SqWb8cg][recap_vectors][11]
Boolean query:  2.340351371
     next_doc time:  2.337263765
     next_doc count:  16701692
     match_count:  0
Children:
     TermQuery :  0.948214269
Rewrite time:  3.865e-06
----------------------
Shard: [jqcLbOYxQvuudg-SqWb8cg][recap_vectors][16]
Boolean query:  2.209441408
     next_doc time:  2.208669492
     next_doc count:  15978716
     match_count:  0
Children:
     TermQuery :  0.898131351
Rewrite time:  3.413e-06
----------------------
Shard: [jqcLbOYxQvuudg-SqWb8cg][recap_vectors][6]
Boolean query:  2.242255206
     next_doc time:  2.24146898
     next_doc count:  15981206
     match_count:  0
Children:
     TermQuery :  0.903206088
Rewrite time:  3.692e-06
----------------------
Shard: [nL1wCXyqQCW64ODQvubEnA][recap_vectors][21]
Boolean query:  2.356573964
     next_doc time:  2.355704666
     next_doc count:  15880310
     match_count:  0
Children:
     TermQuery :  1.03665897
Rewrite time:  3.693e-06
----------------------
Shard: [nL1wCXyqQCW64ODQvubEnA][recap_vectors][23]
Boolean query:  2.464702379
     next_doc time:  2.463863683
     next_doc count:  16815750
     match_count:  0
Children:
     TermQuery :  1.08173455
Rewrite time:  3.881e-06
----------------------
Shard: [nL1wCXyqQCW64ODQvubEnA][recap_vectors][27]
Boolean query:  2.482457321
     next_doc time:  2.481619026
     next_doc count:  17033361
     match_count:  0
Children:
     TermQuery :  1.074129296
Rewrite time:  3.553e-06
----------------------
Shard: [nL1wCXyqQCW64ODQvubEnA][recap_vectors][29]
Boolean query:  2.343308232
     next_doc time:  2.342232001
     next_doc count:  14573897
     match_count:  0
Children:
     TermQuery :  1.105776414
Rewrite time:  3.888e-06
----------------------
Shard: [nmLgdM-aSDCkZNmyVoOodg][recap_vectors][18]
Boolean query:  2.221301083
     next_doc time:  2.220708582
     next_doc count:  16328842
     match_count:  0
Children:
     TermQuery :  0.892682695
Rewrite time:  3.323e-06
----------------------
Shard: [nmLgdM-aSDCkZNmyVoOodg][recap_vectors][19]
Boolean query:  2.4292477
     next_doc time:  2.428428116
     next_doc count:  16460967
     match_count:  0
Children:
     TermQuery :  0.913961627
Rewrite time:  3.011e-06
----------------------
Shard: [nmLgdM-aSDCkZNmyVoOodg][recap_vectors][2]
Boolean query:  2.273092484
     next_doc time:  2.272468412
     next_doc count:  16734750
     match_count:  0
Children:
     TermQuery :  0.896484174
Rewrite time:  2.978e-06
----------------------
Shard: [nmLgdM-aSDCkZNmyVoOodg][recap_vectors][8]
Boolean query:  12.495959673
     next_doc time:  12.495263767
     next_doc count:  15881095
     match_count:  0
Children:
     TermQuery :  0.897151851
Rewrite time:  3.053e-06
----------------------
Shard: [sRr5leJqQTucQqYSh3lPDA][recap_vectors][22]
Boolean query:  10.9477632
     next_doc time:  10.94689856
     next_doc count:  15226741
     match_count:  0
Children:
     TermQuery :  0.632675982
Rewrite time:  3.166e-06
----------------------
Shard: [sRr5leJqQTucQqYSh3lPDA][recap_vectors][25]
Boolean query:  1.865628445
     next_doc time:  1.864828478
     next_doc count:  16434261
     match_count:  0
Children:
     TermQuery :  0.637171095
Rewrite time:  3.849e-06
----------------------
Shard: [sRr5leJqQTucQqYSh3lPDA][recap_vectors][26]
Boolean query:  1.903881186
     next_doc time:  1.903019443
     next_doc count:  16613313
     match_count:  0
Children:
     TermQuery :  0.631526527
Rewrite time:  3.273e-06
----------------------
Shard: [sRr5leJqQTucQqYSh3lPDA][recap_vectors][28]
Boolean query:  1.893517077
     next_doc time:  1.892745584
     next_doc count:  16438302
     match_count:  0
Children:
     TermQuery :  0.635110072
Rewrite time:  3.619e-06
----------------------

The average time for this query was 3.22 seconds, with common values around 2.5 seconds.

In brief, the shards that took the most time on each query are:

Main Query:

Shard: [1nSYxAz0Qb2rz_-d8z7bcw][recap_vectors][2]
Boolean query:  11.66285407

Shard: [3zrjVUmdQbejwIdnw1XrAA][recap_vectors][0]
Boolean query:  1.372273179
HighlightPhase :  10.722527856

Shard: [UkMvqJ2UQQqjcVU9Dxq7_w][recap_vectors][28]
Boolean query:  17.844437329

Docket Count Query:

Shard: [0cQl85qiTiyiNppgQkkPOA][recap_vectors][18]
Boolean query:  12.761728759

Shard: [0cQl85qiTiyiNppgQkkPOA][recap_vectors][9]
Boolean query:  5.663786532

Shard: [nmLgdM-aSDCkZNmyVoOodg][recap_vectors][19]
Boolean query:  8.255496807

RECAPDocument Count query:

Shard: [3zrjVUmdQbejwIdnw1XrAA][recap_vectors][1]
Boolean query:  13.104195599

Shard: [nmLgdM-aSDCkZNmyVoOodg][recap_vectors][8]
Boolean query:  12.495959673

Shard: [sRr5leJqQTucQqYSh3lPDA][recap_vectors][22]
Boolean query:  10.9477632

From here we can see that are different shards which took the more time also different nodes, but we can see some common nodes between queries.

nmLgdM-aSDCkZNmyVoOodg
3zrjVUmdQbejwIdnw1XrAA
0cQl85qiTiyiNppgQkkPOA

This could indicate that those nodes were particularly overloaded during the query.

It's also interesting to note that the shard that took the most time in the main query (17 seconds) [UkMvqJ2UQQqjcVU9Dxq7_w][recap_vectors][28]

Used a different node in the RECAPDocument count query and took only (1.89 seconds) [sRr5leJqQTucQqYSh3lPDA][recap_vectors][28]

The difference in the node is likely due to the fact that the other query was executed on a replica instead of the primary shard, meaning the replica could have been less overloaded at that moment. This suggests that adding more nodes and replicas might help.

In this case, if all the shards had performed at the average level, the match_all query, which is one of the most expensive, could have been completed in around 10 seconds (the longer time which belong to highlighting) seconds instead of 21.

I assume something similar might be happening with other common queries. Specifically, I would like to see how highlighting performs when the matched documents belong to different shards instead of just one, as in this case.

Here are two text queries with profiling enabled that should match HL.

{"index":["recap_vectors"]}
{"profile": true, "query":{"bool":{"should":[{"has_child":{"type":"recap_document","score_mode":"max","query":{"bool":{"should":[{"query_string":{"fields":["case_name_full","suitNature","juryDemand","cause","assignedTo","referredTo","court","court_id","court_citation_string","chapter","trustee_str","short_description","plain_text","document_type","caseName^50","docketNumber^3.0","description^2.0"],"query":"Sharma AND v. AND Eyebrows","quote_field_suffix":".exact","default_operator":"AND","tie_breaker":0.3,"fuzziness":2}},{"query_string":{"fields":["case_name_full","suitNature","juryDemand","cause","assignedTo","referredTo","court","court_id","court_citation_string","chapter","trustee_str","short_description","plain_text","document_type","caseName^50","docketNumber^3.0","description^2.0"],"query":"Sharma v. Eyebrows","quote_field_suffix":".exact","default_operator":"AND","type":"phrase","fuzziness":2}}],"minimum_should_match":1}},"inner_hits":{"name":"filter_query_inner_recap_document","size":6,"_source":{"excludes":["plain_text"]},"highlight":{"fields":{"short_description":{"type":"fvh","matched_fields":["short_description","short_description.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"description":{"type":"fvh","matched_fields":["description","description.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"plain_text":{"type":"fvh","matched_fields":["plain_text","plain_text.exact"],"fragment_size":100,"no_match_size":500,"number_of_fragments":1,"pre_tags":["<mark>"],"post_tags":["</mark>"]}}}}}},{"bool":{"filter":[{"match":{"docket_child":"docket"}}],"should":[{"query_string":{"fields":["case_name_full","suitNature","cause","juryDemand","assignedTo","referredTo","court","court_id","court_citation_string","chapter","trustee_str","caseName^50","docketNumber^3.0"],"query":"Sharma AND v. AND Eyebrows","quote_field_suffix":".exact","default_operator":"AND","tie_breaker":0.3,"fuzziness":2}},{"query_string":{"fields":["case_name_full","suitNature","cause","juryDemand","assignedTo","referredTo","court","court_id","court_citation_string","chapter","trustee_str","caseName^50","docketNumber^3.0"],"query":"Sharma v. Eyebrows","quote_field_suffix":".exact","default_operator":"AND","type":"phrase","fuzziness":2}}],"minimum_should_match":1}}]}},"sort":[{"_score":{"order":"desc"}}],"highlight":{"fields":{"assignedTo":{"type":"fvh","matched_fields":["assignedTo","assignedTo.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"caseName":{"type":"fvh","matched_fields":["caseName","caseName.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"cause":{"type":"fvh","matched_fields":["cause","cause.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"court_citation_string":{"type":"fvh","matched_fields":["court_citation_string","court_citation_string.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"docketNumber":{"type":"fvh","matched_fields":["docketNumber","docketNumber.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"juryDemand":{"type":"fvh","matched_fields":["juryDemand","juryDemand.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"referredTo":{"type":"fvh","matched_fields":["referredTo","referredTo.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"suitNature":{"type":"fvh","matched_fields":["suitNature","suitNature.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]}}},"size":10,"from":0,"_source":{"excludes":[]}}
{"index":["recap_vectors"]}
{"profile": true, "query":{"bool":{"should":[{"has_child":{"type":"recap_document","score_mode":"max","query":{"bool":{"should":[{"query_string":{"fields":["case_name_full","suitNature","juryDemand","cause","assignedTo","referredTo","court","court_id","court_citation_string","chapter","trustee_str","short_description","plain_text","document_type","caseName^50","docketNumber^3.0","description^2.0"],"query":"Sharma AND v. AND Eyebrows","quote_field_suffix":".exact","default_operator":"AND","tie_breaker":0.3,"fuzziness":2}},{"query_string":{"fields":["case_name_full","suitNature","juryDemand","cause","assignedTo","referredTo","court","court_id","court_citation_string","chapter","trustee_str","short_description","plain_text","document_type","caseName^50","docketNumber^3.0","description^2.0"],"query":"Sharma v. Eyebrows","quote_field_suffix":".exact","default_operator":"AND","type":"phrase","fuzziness":2}}],"minimum_should_match":1}}}},{"bool":{"filter":[{"match":{"docket_child":"docket"}}],"should":[{"query_string":{"fields":["case_name_full","suitNature","cause","juryDemand","assignedTo","referredTo","court","court_id","court_citation_string","chapter","trustee_str","caseName^50","docketNumber^3.0"],"query":"Sharma AND v. AND Eyebrows","quote_field_suffix":".exact","default_operator":"AND","tie_breaker":0.3,"fuzziness":2}},{"query_string":{"fields":["case_name_full","suitNature","cause","juryDemand","assignedTo","referredTo","court","court_id","court_citation_string","chapter","trustee_str","caseName^50","docketNumber^3.0"],"query":"Sharma v. Eyebrows","quote_field_suffix":".exact","default_operator":"AND","type":"phrase","fuzziness":2}}],"minimum_should_match":1}}]}},"aggs":{"unique_documents":{"cardinality":{"field":"docket_id","precision_threshold":2000}}},"size":0,"track_total_hits":true}
{"index":["recap_vectors"]}
{"profile": true, "query":{"bool":{"should":[{"query_string":{"fields":["case_name_full","suitNature","juryDemand","cause","assignedTo","referredTo","court","court_id","court_citation_string","chapter","trustee_str","short_description","plain_text","document_type","caseName^50","docketNumber^3.0","description^2.0"],"query":"Sharma AND v. AND Eyebrows","quote_field_suffix":".exact","default_operator":"AND","tie_breaker":0.3,"fuzziness":2}},{"query_string":{"fields":["case_name_full","suitNature","juryDemand","cause","assignedTo","referredTo","court","court_id","court_citation_string","chapter","trustee_str","short_description","plain_text","document_type","caseName^50","docketNumber^3.0","description^2.0"],"query":"Sharma v. Eyebrows","quote_field_suffix":".exact","default_operator":"AND","type":"phrase","fuzziness":2}}],"minimum_should_match":1,"filter":[{"match":{"docket_child":"recap_document"}}]}},"aggs":{"unique_documents":{"cardinality":{"field":"id","precision_threshold":2000}}},"size":0,"track_total_hits":true}
{"index":["recap_vectors"]}
{"profile": true, "query":{"bool":{"should":[{"has_child":{"type":"recap_document","score_mode":"max","query":{"bool":{"should":[{"query_string":{"fields":["case_name_full","suitNature","juryDemand","cause","assignedTo","referredTo","court","court_id","court_citation_string","chapter","trustee_str","short_description","plain_text","document_type","caseName^4.0","docketNumber^3.0","description^2.0"],"query":"MINUTE AND ORDER","quote_field_suffix":".exact","default_operator":"AND","tie_breaker":0.3,"fuzziness":2}},{"query_string":{"fields":["case_name_full","suitNature","juryDemand","cause","assignedTo","referredTo","court","court_id","court_citation_string","chapter","trustee_str","short_description","plain_text","document_type","caseName^4.0","docketNumber^3.0","description^2.0"],"query":"MINUTE ORDER","quote_field_suffix":".exact","default_operator":"AND","type":"phrase","fuzziness":2}}],"minimum_should_match":1}},"inner_hits":{"name":"filter_query_inner_recap_document","size":6,"_source":{"excludes":["plain_text"]},"highlight":{"fields":{"short_description":{"type":"fvh","matched_fields":["short_description","short_description.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"description":{"type":"fvh","matched_fields":["description","description.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"plain_text":{"type":"fvh","matched_fields":["plain_text","plain_text.exact"],"fragment_size":100,"no_match_size":500,"number_of_fragments":1,"pre_tags":["<mark>"],"post_tags":["</mark>"]}}}}}},{"bool":{"filter":[{"match":{"docket_child":"docket"}}],"should":[{"query_string":{"fields":["case_name_full","suitNature","cause","juryDemand","assignedTo","referredTo","court","court_id","court_citation_string","chapter","trustee_str","caseName^4.0","docketNumber^3.0"],"query":"MINUTE AND ORDER","quote_field_suffix":".exact","default_operator":"AND","tie_breaker":0.3,"fuzziness":2}},{"query_string":{"fields":["case_name_full","suitNature","cause","juryDemand","assignedTo","referredTo","court","court_id","court_citation_string","chapter","trustee_str","caseName^4.0","docketNumber^3.0"],"query":"MINUTE ORDER","quote_field_suffix":".exact","default_operator":"AND","type":"phrase","fuzziness":2}}],"minimum_should_match":1}}]}},"sort":[{"_score":{"order":"desc"}}],"highlight":{"fields":{"assignedTo":{"type":"fvh","matched_fields":["assignedTo","assignedTo.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"caseName":{"type":"fvh","matched_fields":["caseName","caseName.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"cause":{"type":"fvh","matched_fields":["cause","cause.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"court_citation_string":{"type":"fvh","matched_fields":["court_citation_string","court_citation_string.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"docketNumber":{"type":"fvh","matched_fields":["docketNumber","docketNumber.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"juryDemand":{"type":"fvh","matched_fields":["juryDemand","juryDemand.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"referredTo":{"type":"fvh","matched_fields":["referredTo","referredTo.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"suitNature":{"type":"fvh","matched_fields":["suitNature","suitNature.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]}}},"size":10,"from":0,"_source":{"excludes":[]}}
{"index":["recap_vectors"]}
{"profile": true, "query":{"bool":{"should":[{"has_child":{"type":"recap_document","score_mode":"max","query":{"bool":{"should":[{"query_string":{"fields":["case_name_full","suitNature","juryDemand","cause","assignedTo","referredTo","court","court_id","court_citation_string","chapter","trustee_str","short_description","plain_text","document_type","caseName^4.0","docketNumber^3.0","description^2.0"],"query":"MINUTE AND ORDER","quote_field_suffix":".exact","default_operator":"AND","tie_breaker":0.3,"fuzziness":2}},{"query_string":{"fields":["case_name_full","suitNature","juryDemand","cause","assignedTo","referredTo","court","court_id","court_citation_string","chapter","trustee_str","short_description","plain_text","document_type","caseName^4.0","docketNumber^3.0","description^2.0"],"query":"MINUTE ORDER","quote_field_suffix":".exact","default_operator":"AND","type":"phrase","fuzziness":2}}],"minimum_should_match":1}}}},{"bool":{"filter":[{"match":{"docket_child":"docket"}}],"should":[{"query_string":{"fields":["case_name_full","suitNature","cause","juryDemand","assignedTo","referredTo","court","court_id","court_citation_string","chapter","trustee_str","caseName^4.0","docketNumber^3.0"],"query":"MINUTE AND ORDER","quote_field_suffix":".exact","default_operator":"AND","tie_breaker":0.3,"fuzziness":2}},{"query_string":{"fields":["case_name_full","suitNature","cause","juryDemand","assignedTo","referredTo","court","court_id","court_citation_string","chapter","trustee_str","caseName^4.0","docketNumber^3.0"],"query":"MINUTE ORDER","quote_field_suffix":".exact","default_operator":"AND","type":"phrase","fuzziness":2}}],"minimum_should_match":1}}]}},"aggs":{"unique_documents":{"cardinality":{"field":"docket_id","precision_threshold":2000}}},"size":0,"track_total_hits":true}
{"index":["recap_vectors"]}
{"profile": true, "query":{"bool":{"should":[{"query_string":{"fields":["case_name_full","suitNature","juryDemand","cause","assignedTo","referredTo","court","court_id","court_citation_string","chapter","trustee_str","short_description","plain_text","document_type","caseName^4.0","docketNumber^3.0","description^2.0"],"query":"MINUTE AND ORDER","quote_field_suffix":".exact","default_operator":"AND","tie_breaker":0.3,"fuzziness":2}},{"query_string":{"fields":["case_name_full","suitNature","juryDemand","cause","assignedTo","referredTo","court","court_id","court_citation_string","chapter","trustee_str","short_description","plain_text","document_type","caseName^4.0","docketNumber^3.0","description^2.0"],"query":"MINUTE ORDER","quote_field_suffix":".exact","default_operator":"AND","type":"phrase","fuzziness":2}}],"minimum_should_match":1,"filter":[{"match":{"docket_child":"recap_document"}}]}},"aggs":{"unique_documents":{"cardinality":{"field":"id","precision_threshold":2000}}},"size":0,"track_total_hits":true}
mlissner commented 1 month ago

That's interesting and a little troubling how one node being busy can have such a big impact.

It's also, perhaps, worth noting that the opinions index is getting a LOT of queries right now due to the citator. Probably isn't helping and is worth being aware of.

query1.json (13MB)

query2.json (11MB)

Still would love to see what happened if we upped our IOPs, say.

albertisfu commented 1 month ago

Thanks, here are the insights for the two queries above:

The first query took 2.583 seconds and is considered "small," as it only returned 53 dockets and 130 documents. On average, the boolean query time was 1.148 seconds, with common values around 0.7 seconds.

There were two shards where the queries deviated from the average:

Shard: [UkMvqJ2UQQqjcVU9Dxq7_w][recap_vectors][28]
Boolean query:  1.607831676
Shard: [UkMvqJ2UQQqjcVU9Dxq7_w][recap_vectors][29]
Boolean query:  14.415567881

It’s surprising that the second one took 14 seconds, which is more than the total query time of 2.5 seconds.

Investigating about this issue it seems that this can occur during profiling because the times are relative to the operations performed in the query, and the process involves some sampling. Therefore, the times are approximations, and it's possible for components in the profile to show durations greater than the total query time. However, it is still useful to compare times between different shards and the query components themselves.

In this case, we can see that these two shards are the ones impacting performance the most.

Regarding highlighting, we can see that the HighlightPhase occurred in 7 shards. This means those shards contained the documents shown in the results, where highlighting was performed.

We can see HL is an expensive operation relative to other times in the query, ranging between 0.4 to 0.9 seconds for this query.

Main query took:  2.583
Profiling:
Shard: [0cQl85qiTiyiNppgQkkPOA][recap_vectors][15]
Boolean query:  0.736800192
     next_doc time:  0.303045966
     next_doc count:  1980203
     match_count:  1915531
Rewrite time:  0.186742462
----------------------
Shard: [0cQl85qiTiyiNppgQkkPOA][recap_vectors][18]
Boolean query:  0.750751279
     next_doc time:  0.284585339
     next_doc count:  1991763
     match_count:  1916319
Rewrite time:  0.166057726
----------------------
Shard: [0cQl85qiTiyiNppgQkkPOA][recap_vectors][24]
Boolean query:  0.757525458
     next_doc time:  0.296373345
     next_doc count:  1991381
     match_count:  1914437
Rewrite time:  0.090823433
----------------------
Shard: [1nSYxAz0Qb2rz_-d8z7bcw][recap_vectors][12]
Boolean query:  0.726744458
     next_doc time:  0.25095527
     next_doc count:  1978509
     match_count:  1916214
Rewrite time:  0.137479616
----------------------
Shard: [1nSYxAz0Qb2rz_-d8z7bcw][recap_vectors][13]
Boolean query:  0.71018642
     next_doc time:  0.252847242
     next_doc count:  2001014
     match_count:  1916836
Rewrite time:  0.243136079
----------------------
Shard: [1nSYxAz0Qb2rz_-d8z7bcw][recap_vectors][3]
Boolean query:  0.688643559
     next_doc time:  0.248476791
     next_doc count:  1985417
     match_count:  1914203
Rewrite time:  0.232981537
----------------------
Shard: [3zrjVUmdQbejwIdnw1XrAA][recap_vectors][0]
Boolean query:  0.273263974
     next_doc time:  0.020559897
     next_doc count:  7854
     match_count:  6273
Rewrite time:  0.181158771
Fetch 1.031194435
FetchSourcePhase :  4.572e-06
HighlightPhase :  0.904988458
InnerHitsPhase :  0.125354968
StoredFieldsPhase :  4.93e-06
----------------------
Shard: [3zrjVUmdQbejwIdnw1XrAA][recap_vectors][11]
Boolean query:  0.773315457
     next_doc time:  0.257724006
     next_doc count:  1990930
     match_count:  1914403
Rewrite time:  0.170254584
----------------------
Shard: [3zrjVUmdQbejwIdnw1XrAA][recap_vectors][14]
Boolean query:  0.156026711
     next_doc time:  0.006614084
     next_doc count:  90931
     match_count:  85718
Rewrite time:  0.112184528
----------------------
Shard: [3zrjVUmdQbejwIdnw1XrAA][recap_vectors][4]
Boolean query:  0.687925694
     next_doc time:  0.255344475
     next_doc count:  1984508
     match_count:  1912655
Rewrite time:  0.21603024
Fetch 0.77759143
FetchSourcePhase :  1.937e-06
HighlightPhase :  0.662191618
InnerHitsPhase :  0.114465648
StoredFieldsPhase :  2.65e-06
----------------------
Shard: [3zrjVUmdQbejwIdnw1XrAA][recap_vectors][5]
Boolean query:  0.730461209
     next_doc time:  0.247839478
     next_doc count:  1990660
     match_count:  1914000
Rewrite time:  0.175955972
Fetch 0.856594574
FetchSourcePhase :  1.338e-06
HighlightPhase :  0.705610053
InnerHitsPhase :  0.150814563
StoredFieldsPhase :  1.789e-06
----------------------
Shard: [UkMvqJ2UQQqjcVU9Dxq7_w][recap_vectors][23]
Boolean query:  0.708948871
     next_doc time:  0.243208965
     next_doc count:  1977370
     match_count:  1914657
Rewrite time:  0.154885199
Fetch 0.723568522
FetchSourcePhase :  2.946e-06
HighlightPhase :  0.599949396
InnerHitsPhase :  0.112626836
StoredFieldsPhase :  2.002e-06
----------------------
Shard: [UkMvqJ2UQQqjcVU9Dxq7_w][recap_vectors][28]
Boolean query:  1.607831676
     next_doc time:  1.162615137
     next_doc count:  1989974
     match_count:  1917898
Rewrite time:  0.161929437
----------------------
Shard: [UkMvqJ2UQQqjcVU9Dxq7_w][recap_vectors][29]
Boolean query:  14.415567881
     next_doc time:  0.240373006
     next_doc count:  1990592
     match_count:  1913647
Rewrite time:  0.162123851
Fetch 0.791069819
FetchSourcePhase :  2.486e-06
HighlightPhase :  0.615194175
InnerHitsPhase :  0.171899881
StoredFieldsPhase :  5.088e-06
----------------------
Shard: [jqcLbOYxQvuudg-SqWb8cg][recap_vectors][10]
Boolean query:  0.631761028
     next_doc time:  0.238653667
     next_doc count:  1979083
     match_count:  1917170
Rewrite time:  0.062839492
----------------------
Shard: [jqcLbOYxQvuudg-SqWb8cg][recap_vectors][16]
Boolean query:  0.751166297
     next_doc time:  0.2285272
     next_doc count:  1977250
     match_count:  1914282
Rewrite time:  0.151349938
Fetch 0.55775287
FetchSourcePhase :  1.485e-06
HighlightPhase :  0.494883997
InnerHitsPhase :  0.062553493
StoredFieldsPhase :  1.748e-06
----------------------
Shard: [jqcLbOYxQvuudg-SqWb8cg][recap_vectors][1]
Boolean query:  0.356030818
     next_doc time:  0.102517885
     next_doc count:  1772990
     match_count:  1756058
Rewrite time:  0.195595732
----------------------
Shard: [jqcLbOYxQvuudg-SqWb8cg][recap_vectors][6]
Boolean query:  0.638853351
     next_doc time:  0.241738459
     next_doc count:  1988463
     match_count:  1912208
Rewrite time:  0.157758801
----------------------
Shard: [jqcLbOYxQvuudg-SqWb8cg][recap_vectors][7]
Boolean query:  0.662754875
     next_doc time:  0.245123347
     next_doc count:  1990531
     match_count:  1914471
Rewrite time:  0.168600046
----------------------
Shard: [nL1wCXyqQCW64ODQvubEnA][recap_vectors][19]
Boolean query:  0.762124948
     next_doc time:  0.309950327
     next_doc count:  1920966
     match_count:  1914511
Rewrite time:  0.131694913
----------------------
Shard: [nL1wCXyqQCW64ODQvubEnA][recap_vectors][21]
Boolean query:  0.749797134
     next_doc time:  0.318928981
     next_doc count:  1972470
     match_count:  1910419
Rewrite time:  0.180457965
----------------------
Shard: [nL1wCXyqQCW64ODQvubEnA][recap_vectors][27]
Boolean query:  0.794908265
     next_doc time:  0.319039924
     next_doc count:  1982812
     match_count:  1915504
Rewrite time:  0.138961807
----------------------
Shard: [nmLgdM-aSDCkZNmyVoOodg][recap_vectors][2]
Boolean query:  0.617193288
     next_doc time:  0.242569313
     next_doc count:  1991917
     match_count:  1915195
Rewrite time:  0.090242882
Fetch 0.586715493
FetchSourcePhase :  5.145e-06
HighlightPhase :  0.499994914
InnerHitsPhase :  0.084062675
StoredFieldsPhase :  4.021e-06
----------------------
Shard: [nmLgdM-aSDCkZNmyVoOodg][recap_vectors][8]
Boolean query:  0.671640456
     next_doc time:  0.242101411
     next_doc count:  1985042
     match_count:  1913324
Rewrite time:  0.206257508
----------------------
Shard: [nmLgdM-aSDCkZNmyVoOodg][recap_vectors][9]
Boolean query:  0.708002068
     next_doc time:  0.248702816
     next_doc count:  1941028
     match_count:  1914841
Rewrite time:  0.166719722
----------------------
Shard: [sRr5leJqQTucQqYSh3lPDA][recap_vectors][17]
Boolean query:  0.617621519
     next_doc time:  0.241172659
     next_doc count:  1994279
     match_count:  1916711
Rewrite time:  0.089775881
----------------------
Shard: [sRr5leJqQTucQqYSh3lPDA][recap_vectors][20]
Boolean query:  0.723637766
     next_doc time:  0.242111276
     next_doc count:  1980297
     match_count:  1916193
Rewrite time:  0.164038476
----------------------
Shard: [sRr5leJqQTucQqYSh3lPDA][recap_vectors][22]
Boolean query:  0.76852272
     next_doc time:  0.345871506
     next_doc count:  1987875
     match_count:  1913880
Rewrite time:  0.156595913
----------------------
Shard: [sRr5leJqQTucQqYSh3lPDA][recap_vectors][25]
Boolean query:  0.65212178
     next_doc time:  0.243489316
     next_doc count:  1991917
     match_count:  1915205
Rewrite time:  0.127839779
----------------------
Shard: [sRr5leJqQTucQqYSh3lPDA][recap_vectors][26]
Boolean query:  0.613594991
     next_doc time:  0.24162616
     next_doc count:  1990152
     match_count:  1914639
Rewrite time:  0.096956896
----------------------
Average time boolean; 1.1481241381000002

The second query took 16.311 seconds and returned 1,142,666 dockets and 4,102,039 documents. On average, the boolean query time was 0.376 seconds, with common values around 0.2 seconds.

In this query, the operation that took the most relative time was highlighting, ranging from 5 to 8.65 seconds.

None of the shards in this query took longer than the total query time of 16 seconds. However, this time can be influenced by two factors:

Main query took:  16.311
Profiling:
Shard: [0cQl85qiTiyiNppgQkkPOA][recap_vectors][14]
Boolean query:  0.238043742
     next_doc time:  0.142742692
     next_doc count:  72284
     match_count:  55891
Rewrite time:  1.876817387
----------------------
Shard: [0cQl85qiTiyiNppgQkkPOA][recap_vectors][15]
Boolean query:  0.209756171
     next_doc time:  0.114563266
     next_doc count:  54704
     match_count:  42614
Rewrite time:  1.508245768
----------------------
Shard: [0cQl85qiTiyiNppgQkkPOA][recap_vectors][24]
Boolean query:  0.229461056
     next_doc time:  0.120820168
     next_doc count:  211528
     match_count:  189668
Rewrite time:  1.237936465
Fetch 6.326894308
FetchSourcePhase :  1.608e-06
HighlightPhase :  6.165551636
InnerHitsPhase :  0.160282513
StoredFieldsPhase :  2.199e-06
----------------------
Shard: [0cQl85qiTiyiNppgQkkPOA][recap_vectors][4]
Boolean query:  0.949666578
     next_doc time:  0.858686646
     next_doc count:  56358
     match_count:  43301
Rewrite time:  1.423048068
----------------------
Shard: [0cQl85qiTiyiNppgQkkPOA][recap_vectors][5]
Boolean query:  0.292866375
     next_doc time:  0.214349506
     next_doc count:  54655
     match_count:  38537
Rewrite time:  1.801345592
Fetch 8.767344151
FetchSourcePhase :  2.183e-06
HighlightPhase :  8.659476346
InnerHitsPhase :  0.104650274
StoredFieldsPhase :  3.143e-06
----------------------
Shard: [1nSYxAz0Qb2rz_-d8z7bcw][recap_vectors][16]
Boolean query:  0.286142073
     next_doc time:  0.201141775
     next_doc count:  106494
     match_count:  92134
Rewrite time:  2.34920159
Fetch 5.574720359
FetchSourcePhase :  2.749e-06
HighlightPhase :  5.418118768
InnerHitsPhase :  0.15504762
StoredFieldsPhase :  2.823e-06
----------------------
Shard: [1nSYxAz0Qb2rz_-d8z7bcw][recap_vectors][6]
Boolean query:  0.453422976
     next_doc time:  0.130281604
     next_doc count:  121174
     match_count:  107675
Rewrite time:  1.90156547
----------------------
Shard: [1nSYxAz0Qb2rz_-d8z7bcw][recap_vectors][7]
Boolean query:  0.236109057
     next_doc time:  0.157704668
     next_doc count:  74329
     match_count:  58094
Rewrite time:  1.886541154
----------------------
Shard: [3zrjVUmdQbejwIdnw1XrAA][recap_vectors][1]
Boolean query:  0.171967883
     next_doc time:  0.090810364
     next_doc count:  75840
     match_count:  62050
Rewrite time:  2.211449445
----------------------
Shard: [UkMvqJ2UQQqjcVU9Dxq7_w][recap_vectors][17]
Boolean query:  0.287008153
     next_doc time:  0.141954104
     next_doc count:  62260
     match_count:  44695
Rewrite time:  2.147809223
Fetch 5.878162472
FetchSourcePhase :  1.822e-06
HighlightPhase :  5.796898865
InnerHitsPhase :  0.079406738
StoredFieldsPhase :  2.781e-06
----------------------
Shard: [UkMvqJ2UQQqjcVU9Dxq7_w][recap_vectors][23]
Boolean query:  0.482981892
     next_doc time:  0.116565454
     next_doc count:  121979
     match_count:  106455
Rewrite time:  1.788949606
----------------------
Shard: [jqcLbOYxQvuudg-SqWb8cg][recap_vectors][0]
Boolean query:  0.37045318
     next_doc time:  0.264939164
     next_doc count:  105757
     match_count:  89497
Rewrite time:  1.589507968
----------------------
Shard: [jqcLbOYxQvuudg-SqWb8cg][recap_vectors][10]
Boolean query:  0.225173358
     next_doc time:  0.143999863
     next_doc count:  57193
     match_count:  44315
Rewrite time:  1.162117935
----------------------
Shard: [jqcLbOYxQvuudg-SqWb8cg][recap_vectors][11]
Boolean query:  0.180506461
     next_doc time:  0.111457087
     next_doc count:  56519
     match_count:  39991
Rewrite time:  1.339690828
----------------------
Shard: [nL1wCXyqQCW64ODQvubEnA][recap_vectors][26]
Boolean query:  0.374340945
     next_doc time:  0.29070232
     next_doc count:  64150
     match_count:  46447
Rewrite time:  2.020536303
Fetch 6.113781517
FetchSourcePhase :  1.723e-06
HighlightPhase :  6.029904685
InnerHitsPhase :  0.082666826
StoredFieldsPhase :  2.338e-06
----------------------
Shard: [nL1wCXyqQCW64ODQvubEnA][recap_vectors][27]
Boolean query:  0.758614779
     next_doc time:  0.5854651
     next_doc count:  139884
     match_count:  123083
Rewrite time:  2.060061607
Fetch 6.134325905
FetchSourcePhase :  2.043e-06
HighlightPhase :  6.051479132
InnerHitsPhase :  0.081426911
StoredFieldsPhase :  1.649e-06
----------------------
Shard: [nL1wCXyqQCW64ODQvubEnA][recap_vectors][29]
Boolean query:  0.161656618
     next_doc time:  0.07786763
     next_doc count:  116098
     match_count:  99123
Rewrite time:  0.77614845
----------------------
Shard: [nmLgdM-aSDCkZNmyVoOodg][recap_vectors][12]
Boolean query:  0.173728099
     next_doc time:  0.121862356
     next_doc count:  55929
     match_count:  41910
Rewrite time:  1.948737694
----------------------
Shard: [nmLgdM-aSDCkZNmyVoOodg][recap_vectors][13]
Boolean query:  0.36670091
     next_doc time:  0.222986009
     next_doc count:  117442
     match_count:  96771
Rewrite time:  1.992547977
Fetch 6.968885205
FetchSourcePhase :  2.814e-06
HighlightPhase :  6.873625766
InnerHitsPhase :  0.092830891
StoredFieldsPhase :  2.56e-06
----------------------
Shard: [nmLgdM-aSDCkZNmyVoOodg][recap_vectors][18]
Boolean query:  0.239205995
     next_doc time:  0.126003674
     next_doc count:  57789
     match_count:  43316
Rewrite time:  1.942288147
----------------------
Shard: [nmLgdM-aSDCkZNmyVoOodg][recap_vectors][19]
Boolean query:  0.696449194
     next_doc time:  0.58611002
     next_doc count:  126974
     match_count:  112820
Rewrite time:  1.848986279
----------------------
Shard: [nmLgdM-aSDCkZNmyVoOodg][recap_vectors][2]
Boolean query:  0.344163501
     next_doc time:  0.150047078
     next_doc count:  86885
     match_count:  66830
Rewrite time:  1.879295607
----------------------
Shard: [nmLgdM-aSDCkZNmyVoOodg][recap_vectors][3]
Boolean query:  0.195023326
     next_doc time:  0.127088714
     next_doc count:  89867
     match_count:  72504
Rewrite time:  1.836359446
----------------------
Shard: [nmLgdM-aSDCkZNmyVoOodg][recap_vectors][8]
Boolean query:  1.929299371
     next_doc time:  1.714718661
     next_doc count:  54179
     match_count:  39669
Rewrite time:  1.980760453
Fetch 7.374609581
FetchSourcePhase :  3.242e-06
HighlightPhase :  7.220519209
InnerHitsPhase :  0.135198811
StoredFieldsPhase :  3.946e-06
----------------------
Shard: [nmLgdM-aSDCkZNmyVoOodg][recap_vectors][9]
Boolean query:  0.28871354
     next_doc time:  0.195449716
     next_doc count:  49102
     match_count:  41674
Rewrite time:  2.074638478
----------------------
Shard: [sRr5leJqQTucQqYSh3lPDA][recap_vectors][20]
Boolean query:  0.177945612
     next_doc time:  0.102748156
     next_doc count:  112985
     match_count:  95665
Rewrite time:  1.858892178
----------------------
Shard: [sRr5leJqQTucQqYSh3lPDA][recap_vectors][21]
Boolean query:  0.351380438
     next_doc time:  0.157184664
     next_doc count:  80139
     match_count:  66626
Rewrite time:  1.737052332
----------------------
Shard: [sRr5leJqQTucQqYSh3lPDA][recap_vectors][22]
Boolean query:  0.182847762
     next_doc time:  0.110589042
     next_doc count:  57108
     match_count:  41080
Rewrite time:  1.787712377
Fetch 5.172538514
FetchSourcePhase :  2.314e-06
HighlightPhase :  5.038521958
InnerHitsPhase :  0.124168138
StoredFieldsPhase :  4.718e-06
----------------------
Shard: [sRr5leJqQTucQqYSh3lPDA][recap_vectors][25]
Boolean query:  0.233307084
     next_doc time:  0.152671944
     next_doc count:  83791
     match_count:  65951
Rewrite time:  1.836253033
----------------------
Shard: [sRr5leJqQTucQqYSh3lPDA][recap_vectors][28]
Boolean query:  0.203588791
     next_doc time:  0.12884844
     next_doc count:  63615
     match_count:  49249
Rewrite time:  1.757608713
----------------------
Average time boolean; 0.3763508306666667

In brief:

Currently, the fields to search in the query string are:

Parent query:

 "case_name_full",
 "suitNature",
 "juryDemand",
 "cause",
 "assignedTo",
 "referredTo",
 "court",
 "court_id",
 "court_citation_string",
 "chapter",
 "trustee_str",
 "caseName^4.0",
 "docketNumber^3.0",

Child query:

 "case_name_full",
 "suitNature",
 "juryDemand",
 "cause",
 "assignedTo",
 "referredTo",
 "court",
 "court_id",
 "court_citation_string",
 "chapter",
 "trustee_str",
 "short_description",
 "plain_text",
 "document_type",
 "caseName^4.0",
 "docketNumber^3.0",
 "description^2.0"

I was wondering if we really need all of those fields in the query string.

We could run some tests to see if removing certain fields might help reduce query times.

For instance, suitNature, assignedTo, referredTo, and court_id are already filters. Other fields like juryDemand, court, court_citation_string, chapter, trustee_str, and document_type could potentially be removed while still being matched using advanced syntax. This might reduce the query overhead for regular queries.

We could start by testing the same queries but limiting the query string fields to:

 "case_name_full",
   "short_description",
   "plain_text",
   "caseName^50",
   "docketNumber^3.0",
   "description^2.0"

And see if there is a noticeable improvement.

GET /recap_vectors/_msearch

{"index":["recap_vectors"]}
{"query":{"bool":{"should":[{"has_child":{"type":"recap_document","score_mode":"max","query":{"bool":{"should":[{"query_string":{"fields":["case_name_full","short_description","plain_text","caseName^4.0","docketNumber^3.0","description^2.0"],"query":"MINUTE AND ORDER","quote_field_suffix":".exact","default_operator":"AND"}},{"query_string":{"fields":["case_name_full","short_description","plain_text","caseName^4.0","docketNumber^3.0","description^2.0"],"query":"MINUTE ORDER","type":"phrase","quote_field_suffix":".exact"}}],"minimum_should_match":1}},"inner_hits":{"name":"filter_query_inner_recap_document","size":6,"_source":{"excludes":["plain_text"]},"highlight":{"fields":{"short_description":{"type":"fvh","matched_fields":["short_description","short_description.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"description":{"type":"fvh","matched_fields":["description","description.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"plain_text":{"type":"fvh","matched_fields":["plain_text","plain_text.exact"],"fragment_size":100,"no_match_size":500,"number_of_fragments":1,"pre_tags":["<mark>"],"post_tags":["</mark>"]}}}}}},{"bool":{"filter":[{"match":{"docket_child":"docket"}}],"should":[{"query_string":{"fields":["case_name_full","caseName^4.0","docketNumber^3.0"],"query":"MINUTE AND ORDER","quote_field_suffix":".exact","default_operator":"AND"}},{"query_string":{"fields":["case_name_full","caseName^4.0","docketNumber^3.0"],"query":"MINUTE ORDER","type":"phrase","quote_field_suffix":".exact"}}],"minimum_should_match":1}}]}},"sort":[{"_score":{"order":"desc"}}],"highlight":{"fields":{"assignedTo":{"type":"fvh","matched_fields":["assignedTo","assignedTo.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"caseName":{"type":"fvh","matched_fields":["caseName","caseName.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"cause":{"type":"fvh","matched_fields":["cause","cause.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"court_citation_string":{"type":"fvh","matched_fields":["court_citation_string","court_citation_string.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"docketNumber":{"type":"fvh","matched_fields":["docketNumber","docketNumber.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"juryDemand":{"type":"fvh","matched_fields":["juryDemand","juryDemand.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"referredTo":{"type":"fvh","matched_fields":["referredTo","referredTo.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"suitNature":{"type":"fvh","matched_fields":["suitNature","suitNature.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]}}},"size":10,"from":0,"_source":{"excludes":[]}}
{"index":["recap_vectors"]}
{"query":{"bool":{"should":[{"has_child":{"type":"recap_document","score_mode":"max","query":{"bool":{"should":[{"query_string":{"fields":["case_name_full","short_description","plain_text","caseName^4.0","docketNumber^3.0","description^2.0"],"query":"MINUTE AND ORDER","quote_field_suffix":".exact","default_operator":"AND"}},{"query_string":{"fields":["case_name_full","short_description","plain_text","caseName^4.0","docketNumber^3.0","description^2.0"],"query":"MINUTE ORDER","type":"phrase","quote_field_suffix":".exact"}}],"minimum_should_match":1}}}},{"bool":{"filter":[{"match":{"docket_child":"docket"}}],"should":[{"query_string":{"fields":["case_name_full","caseName^4.0","docketNumber^3.0"],"query":"MINUTE AND ORDER","quote_field_suffix":".exact","default_operator":"AND"}},{"query_string":{"fields":["case_name_full","caseName^4.0","docketNumber^3.0"],"query":"MINUTE ORDER","type":"phrase","quote_field_suffix":".exact"}}],"minimum_should_match":1}}]}},"aggs":{"unique_documents":{"cardinality":{"field":"docket_id","precision_threshold":2000}}},"size":0,"track_total_hits":true}
{"index":["recap_vectors"]}
{"query":{"bool":{"should":[{"query_string":{"fields":["case_name_full","short_description","plain_text","caseName^4.0","docketNumber^3.0","description^2.0"],"query":"MINUTE AND ORDER","quote_field_suffix":".exact","default_operator":"AND"}},{"query_string":{"fields":["case_name_full","short_description","plain_text","caseName^4.0","docketNumber^3.0","description^2.0"],"query":"MINUTE ORDER","type":"phrase","quote_field_suffix":".exact"}}],"minimum_should_match":1,"filter":[{"match":{"docket_child":"recap_document"}}]}},"aggs":{"unique_documents":{"cardinality":{"field":"id","precision_threshold":2000}}},"size":0,"track_total_hits":true}
{"index":["recap_vectors"]}
{"query":{"bool":{"should":[{"has_child":{"type":"recap_document","score_mode":"max","query":{"bool":{"should":[{"query_string":{"fields":["case_name_full","short_description","plain_text","caseName^50","docketNumber^3.0","description^2.0"],"query":"Sharma AND v. AND Eyebrows","quote_field_suffix":".exact","default_operator":"AND"}},{"query_string":{"fields":["case_name_full","short_description","plain_text","caseName^50","docketNumber^3.0","description^2.0"],"query":"Sharma v. Eyebrows","type":"phrase","quote_field_suffix":".exact"}}],"minimum_should_match":1}},"inner_hits":{"name":"filter_query_inner_recap_document","size":6,"_source":{"excludes":["plain_text"]},"highlight":{"fields":{"short_description":{"type":"fvh","matched_fields":["short_description","short_description.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"description":{"type":"fvh","matched_fields":["description","description.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"plain_text":{"type":"fvh","matched_fields":["plain_text","plain_text.exact"],"fragment_size":100,"no_match_size":500,"number_of_fragments":1,"pre_tags":["<mark>"],"post_tags":["</mark>"]}}}}}},{"bool":{"filter":[{"match":{"docket_child":"docket"}}],"should":[{"query_string":{"fields":["case_name_full","caseName^50","docketNumber^3.0"],"query":"Sharma AND v. AND Eyebrows","quote_field_suffix":".exact","default_operator":"AND"}},{"query_string":{"fields":["case_name_full","caseName^50","docketNumber^3.0"],"query":"Sharma v. Eyebrows","type":"phrase","quote_field_suffix":".exact"}}],"minimum_should_match":1}}]}},"sort":[{"_score":{"order":"desc"}}],"highlight":{"fields":{"assignedTo":{"type":"fvh","matched_fields":["assignedTo","assignedTo.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"caseName":{"type":"fvh","matched_fields":["caseName","caseName.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"cause":{"type":"fvh","matched_fields":["cause","cause.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"court_citation_string":{"type":"fvh","matched_fields":["court_citation_string","court_citation_string.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"docketNumber":{"type":"fvh","matched_fields":["docketNumber","docketNumber.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"juryDemand":{"type":"fvh","matched_fields":["juryDemand","juryDemand.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"referredTo":{"type":"fvh","matched_fields":["referredTo","referredTo.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"suitNature":{"type":"fvh","matched_fields":["suitNature","suitNature.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]}}},"size":10,"from":0,"_source":{"excludes":[]}}
{"index":["recap_vectors"]}
{"query":{"bool":{"should":[{"has_child":{"type":"recap_document","score_mode":"max","query":{"bool":{"should":[{"query_string":{"fields":["case_name_full","short_description","plain_text","caseName^50","docketNumber^3.0","description^2.0"],"query":"Sharma AND v. AND Eyebrows","quote_field_suffix":".exact","default_operator":"AND"}},{"query_string":{"fields":["case_name_full","short_description","plain_text","caseName^50","docketNumber^3.0","description^2.0"],"query":"Sharma v. Eyebrows","type":"phrase","quote_field_suffix":".exact"}}],"minimum_should_match":1}}}},{"bool":{"filter":[{"match":{"docket_child":"docket"}}],"should":[{"query_string":{"fields":["case_name_full","caseName^50","docketNumber^3.0"],"query":"Sharma AND v. AND Eyebrows","quote_field_suffix":".exact","default_operator":"AND"}},{"query_string":{"fields":["case_name_full","caseName^50","docketNumber^3.0"],"query":"Sharma v. Eyebrows","type":"phrase","quote_field_suffix":".exact"}}],"minimum_should_match":1}}]}},"aggs":{"unique_documents":{"cardinality":{"field":"docket_id","precision_threshold":2000}}},"size":0,"track_total_hits":true}
{"index":["recap_vectors"]}
{"query":{"bool":{"should":[{"query_string":{"fields":["case_name_full","short_description","plain_text","caseName^50","docketNumber^3.0","description^2.0"],"query":"Sharma AND v. AND Eyebrows","quote_field_suffix":".exact","default_operator":"AND"}},{"query_string":{"fields":["case_name_full","short_description","plain_text","caseName^50","docketNumber^3.0","description^2.0"],"query":"Sharma v. Eyebrows","type":"phrase","quote_field_suffix":".exact"}}],"minimum_should_match":1,"filter":[{"match":{"docket_child":"recap_document"}}]}},"aggs":{"unique_documents":{"cardinality":{"field":"id","precision_threshold":2000}}},"size":0,"track_total_hits":true}
{
      "took": 8141,
      "timed_out": false,
      "_shards": {
        "total": 30,
        "successful": 30,
        "skipped": 0,
        "failed": 0
      },
      "hits": {
        "total": {
          "value": 1142666,
          "relation": "eq"
        },
        "max_score": null,
        "hits": []
      },
      "aggregations": {
        "unique_documents": {
          "value": 1132771
        }
      }
mlissner commented 1 month ago

Thanks this is more great research. I don't understand: Why is highlighting so slow? Like, do you know what it's actually doing that takes so long? I assume it pulls the content from disk (IO), applies some text manipulation to find the right things and mark them up (CPU), and then...that's it? I could see IO being the slow part of that...the CPU part seems like it'd be close to instant?

For the fields, you're right, we can remove a few:

These are all on both the parent and the child query:

I guess there's a reason for that?

I wouldn't want to remove too many of the other fields though. The idea is that somebody should be able to search for a judge's name or docket number or any of the fields we have boxes for and get back their cases.

I'll hold off on running your queries until we have decided on the fields. :)

albertisfu commented 1 month ago

Regarding HL, here's an explanation of how it works: https://www.elastic.co/guide/en/elasticsearch/reference/current/highlighting.html#how-es-highlighters-work-internally

Basically:

HL needs to break a text into fragments. First, it retrieves the content field from disk, which can be time consuming if the document is large. I have seen in forums that it is recommended to explicitly store the field for faster retrieval. However, I am not certain about this. We don't store the fields separately because they are already stored in the _source field by default, as the documentation recommends. Currently, when HL is applied, the field content is extracted from _source. Storing the fields separately might not be very helpful since we are highlighting many fields, including the plain_text field, which is the one slowing down the HL process. Storing HL fields would make more sense if we were not highlighting the plain_text field, as it would avoid retrieving and parsing this large content. However, I can do some tests to confirm if storing the fields independently helps in any way.

The text needs to be analyzed to find the best fragments those containing the terms that contributed to generating the hit. Since we use FVH, this process is faster than plain HL, as the terms and their offsets are indexed, allowing for efficient matching within the content. However, it can still be slow for large fields because each fragment generated in the previous step needs to be scored.Currently, our fragment_size is 100 characters. Let's say we have a content field with 1,000,000 characters; this would result in approximately 10,000 fragments to analyze and score and then the best fragment can be returned. We have documents (with plain_text field) that are even larger than that; I've seen documents exceeding 40MB in size. So when at least one large document is matched, it slows down the entire query.

The final step is to apply the HL tags to the best fragment, which should be instantaneous.

In summary:

Regarding the query string fields.

These are all on both the parent and the child query:

Yes, the reason for including both parent and child fields in the child query is that these parent fields are indexed within each RECAPDocument. To ensure queries match RECAPDocuments that combine parent and child terms, both fields need to be queried.

I agree; it’s better to keep some fields.

I have removed the indicated fields, so the fields to be looked at in the following queries are:

"suitNature",
"assignedTo",
"referredTo",
"court",
"court_id",
"court_citation_string",
"short_description",
"plain_text",
"caseName^4.0",
"docketNumber^3.0",
"description^2.0"

GET /recap_vectors/_msearch

{"index":["recap_vectors"]}
{"query":{"bool":{"should":[{"has_child":{"type":"recap_document","score_mode":"max","query":{"bool":{"should":[{"query_string":{"fields":["suitNature","assignedTo","referredTo","court","court_id","court_citation_string","short_description","plain_text","caseName^4.0","docketNumber^3.0","description^2.0"],"query":"Minute AND Order","quote_field_suffix":".exact","default_operator":"AND","tie_breaker":0.3,"fuzziness":2}},{"query_string":{"fields":["suitNature","assignedTo","referredTo","court","court_id","court_citation_string","short_description","plain_text","caseName^4.0","docketNumber^3.0","description^2.0"],"query":"Minute Order","quote_field_suffix":".exact","default_operator":"AND","type":"phrase","fuzziness":2}}],"minimum_should_match":1}},"inner_hits":{"name":"filter_query_inner_recap_document","size":6,"_source":{"excludes":["plain_text"]},"highlight":{"fields":{"short_description":{"type":"fvh","matched_fields":["short_description","short_description.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"description":{"type":"fvh","matched_fields":["description","description.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"plain_text":{"type":"fvh","matched_fields":["plain_text","plain_text.exact"],"fragment_size":100,"no_match_size":500,"number_of_fragments":1,"pre_tags":["<mark>"],"post_tags":["</mark>"]}}}}}},{"bool":{"filter":[{"match":{"docket_child":"docket"}}],"should":[{"query_string":{"fields":["suitNature","assignedTo","referredTo","court","court_id","court_citation_string","caseName^4.0","docketNumber^3.0"],"query":"Minute AND Order","quote_field_suffix":".exact","default_operator":"AND","tie_breaker":0.3,"fuzziness":2}},{"query_string":{"fields":["suitNature","assignedTo","referredTo","court","court_id","court_citation_string","caseName^4.0","docketNumber^3.0"],"query":"Minute Order","quote_field_suffix":".exact","default_operator":"AND","type":"phrase","fuzziness":2}}],"minimum_should_match":1}}]}},"sort":[{"_score":{"order":"desc"}}],"highlight":{"fields":{"assignedTo":{"type":"fvh","matched_fields":["assignedTo","assignedTo.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"caseName":{"type":"fvh","matched_fields":["caseName","caseName.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"cause":{"type":"fvh","matched_fields":["cause","cause.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"court_citation_string":{"type":"fvh","matched_fields":["court_citation_string","court_citation_string.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"docketNumber":{"type":"fvh","matched_fields":["docketNumber","docketNumber.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"juryDemand":{"type":"fvh","matched_fields":["juryDemand","juryDemand.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"referredTo":{"type":"fvh","matched_fields":["referredTo","referredTo.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"suitNature":{"type":"fvh","matched_fields":["suitNature","suitNature.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]}}},"size":10,"track_total_hits":false,"from":0,"_source":{"excludes":[]}}
{"index":["recap_vectors"]}
{"query":{"bool":{"should":[{"has_child":{"type":"recap_document","score_mode":"max","query":{"bool":{"should":[{"query_string":{"fields":["suitNature","assignedTo","referredTo","court","court_id","court_citation_string","short_description","plain_text","caseName^4.0","docketNumber^3.0","description^2.0"],"query":"Minute AND Order","quote_field_suffix":".exact","default_operator":"AND","tie_breaker":0.3,"fuzziness":2}},{"query_string":{"fields":["suitNature","assignedTo","referredTo","court","court_id","court_citation_string","short_description","plain_text","caseName^4.0","docketNumber^3.0","description^2.0"],"query":"Minute Order","quote_field_suffix":".exact","default_operator":"AND","type":"phrase","fuzziness":2}}],"minimum_should_match":1}}}},{"bool":{"filter":[{"match":{"docket_child":"docket"}}],"should":[{"query_string":{"fields":["suitNature","assignedTo","referredTo","court","court_id","court_citation_string","caseName^4.0","docketNumber^3.0"],"query":"Minute AND Order","quote_field_suffix":".exact","default_operator":"AND","tie_breaker":0.3,"fuzziness":2}},{"query_string":{"fields":["suitNature","assignedTo","referredTo","court","court_id","court_citation_string","caseName^4.0","docketNumber^3.0"],"query":"Minute Order","quote_field_suffix":".exact","default_operator":"AND","type":"phrase","fuzziness":2}}],"minimum_should_match":1}}]}},"aggs":{"unique_documents":{"cardinality":{"field":"docket_id","precision_threshold":2000}}},"size":0,"track_total_hits":false}
{"index":["recap_vectors"]}
{"query":{"bool":{"should":[{"query_string":{"fields":["suitNature","assignedTo","referredTo","court","court_id","court_citation_string","short_description","plain_text","caseName^4.0","docketNumber^3.0","description^2.0"],"query":"Minute AND Order","quote_field_suffix":".exact","default_operator":"AND","tie_breaker":0.3,"fuzziness":2}},{"query_string":{"fields":["suitNature","assignedTo","referredTo","court","court_id","court_citation_string","short_description","plain_text","caseName^4.0","docketNumber^3.0","description^2.0"],"query":"Minute Order","quote_field_suffix":".exact","default_operator":"AND","type":"phrase","fuzziness":2}}],"minimum_should_match":1,"filter":[{"match":{"docket_child":"recap_document"}}]}},"aggs":{"unique_documents":{"cardinality":{"field":"id","precision_threshold":2000}}},"size":0,"track_total_hits":false}
{"index":["recap_vectors"]}
{"query":{"bool":{"should":[{"has_child":{"type":"recap_document","score_mode":"max","query":{"bool":{"should":[{"query_string":{"fields":["suitNature","assignedTo","referredTo","court","court_id","court_citation_string","short_description","plain_text","caseName^50","docketNumber^3.0","description^2.0"],"query":"Sharma AND v. AND Eyebrows","quote_field_suffix":".exact","default_operator":"AND","tie_breaker":0.3,"fuzziness":2}},{"query_string":{"fields":["suitNature","assignedTo","referredTo","court","court_id","court_citation_string","short_description","plain_text","caseName^50","docketNumber^3.0","description^2.0"],"query":"Sharma AND v. AND Eyebrows","quote_field_suffix":".exact","default_operator":"AND","type":"phrase","fuzziness":2}}],"minimum_should_match":1}},"inner_hits":{"name":"filter_query_inner_recap_document","size":6,"_source":{"excludes":["plain_text"]},"highlight":{"fields":{"short_description":{"type":"fvh","matched_fields":["short_description","short_description.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"description":{"type":"fvh","matched_fields":["description","description.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"plain_text":{"type":"fvh","matched_fields":["plain_text","plain_text.exact"],"fragment_size":100,"no_match_size":500,"number_of_fragments":1,"pre_tags":["<mark>"],"post_tags":["</mark>"]}}}}}},{"bool":{"filter":[{"match":{"docket_child":"docket"}}],"should":[{"query_string":{"fields":["suitNature","assignedTo","referredTo","court","court_id","court_citation_string","caseName^50","docketNumber^3.0"],"query":"Sharma AND v. AND Eyebrows","quote_field_suffix":".exact","default_operator":"AND","tie_breaker":0.3,"fuzziness":2}},{"query_string":{"fields":["suitNature","assignedTo","referredTo","court","court_id","court_citation_string","caseName^50","docketNumber^3.0"],"query":"Sharma AND v. AND Eyebrows","quote_field_suffix":".exact","default_operator":"AND","type":"phrase","fuzziness":2}}],"minimum_should_match":1}}]}},"sort":[{"_score":{"order":"desc"}}],"highlight":{"fields":{"assignedTo":{"type":"fvh","matched_fields":["assignedTo","assignedTo.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"caseName":{"type":"fvh","matched_fields":["caseName","caseName.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"cause":{"type":"fvh","matched_fields":["cause","cause.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"court_citation_string":{"type":"fvh","matched_fields":["court_citation_string","court_citation_string.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"docketNumber":{"type":"fvh","matched_fields":["docketNumber","docketNumber.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"juryDemand":{"type":"fvh","matched_fields":["juryDemand","juryDemand.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"referredTo":{"type":"fvh","matched_fields":["referredTo","referredTo.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]},"suitNature":{"type":"fvh","matched_fields":["suitNature","suitNature.exact"],"fragment_size":0,"no_match_size":0,"number_of_fragments":0,"pre_tags":["<mark>"],"post_tags":["</mark>"]}}},"size":10,"track_total_hits":false,"from":0,"_source":{"excludes":[]}}
{"index":["recap_vectors"]}
{"query":{"bool":{"should":[{"has_child":{"type":"recap_document","score_mode":"max","query":{"bool":{"should":[{"query_string":{"fields":["suitNature","assignedTo","referredTo","court","court_id","court_citation_string","short_description","plain_text","caseName^50","docketNumber^3.0","description^2.0"],"query":"Sharma AND v. AND Eyebrows","quote_field_suffix":".exact","default_operator":"AND","tie_breaker":0.3,"fuzziness":2}},{"query_string":{"fields":["suitNature","assignedTo","referredTo","court","court_id","court_citation_string","short_description","plain_text","caseName^50","docketNumber^3.0","description^2.0"],"query":"Sharma AND v. AND Eyebrows","quote_field_suffix":".exact","default_operator":"AND","type":"phrase","fuzziness":2}}],"minimum_should_match":1}}}},{"bool":{"filter":[{"match":{"docket_child":"docket"}}],"should":[{"query_string":{"fields":["suitNature","assignedTo","referredTo","court","court_id","court_citation_string","caseName^50","docketNumber^3.0"],"query":"Sharma AND v. AND Eyebrows","quote_field_suffix":".exact","default_operator":"AND","tie_breaker":0.3,"fuzziness":2}},{"query_string":{"fields":["suitNature","assignedTo","referredTo","court","court_id","court_citation_string","caseName^50","docketNumber^3.0"],"query":"Sharma AND v. AND Eyebrows","quote_field_suffix":".exact","default_operator":"AND","type":"phrase","fuzziness":2}}],"minimum_should_match":1}}]}},"aggs":{"unique_documents":{"cardinality":{"field":"docket_id","precision_threshold":2000}}},"size":0,"track_total_hits":false}
{"index":["recap_vectors"]}
{"query":{"bool":{"should":[{"query_string":{"fields":["suitNature","assignedTo","referredTo","court","court_id","court_citation_string","short_description","plain_text","caseName^50","docketNumber^3.0","description^2.0"],"query":"Sharma AND v. AND Eyebrows","quote_field_suffix":".exact","default_operator":"AND","tie_breaker":0.3,"fuzziness":2}},{"query_string":{"fields":["suitNature","assignedTo","referredTo","court","court_id","court_citation_string","short_description","plain_text","caseName^50","docketNumber^3.0","description^2.0"],"query":"Sharma AND v. AND Eyebrows","quote_field_suffix":".exact","default_operator":"AND","type":"phrase","fuzziness":2}}],"minimum_should_match":1,"filter":[{"match":{"docket_child":"recap_document"}}]}},"aggs":{"unique_documents":{"cardinality":{"field":"id","precision_threshold":2000}}},"size":0,"track_total_hits":false}
mlissner commented 1 month ago

Here are the two queries:

query1.json

query2.json


And I re-ran the performance tweaks since https://github.com/freelawproject/courtlistener/pull/4294 is fixed:

Response Times: {'': 13.413657426834106, 'The Litigation Practice Group': 6.110074758529663, '"Alston v. Penn State Health"': 2.8999249935150146, 'Danny Ray Jackson': 2.344912052154541, '"MEMBER CASE OPENED:"': 3.9162790775299072, 'Parties to exchange Rule ': 8.006431818008423, 'BROOKS v. CITY': 3.8826067447662354, 'UNITED STATES': 177.82695603370667, 'ALABAMA NORTHERN DIVISION': 4.354727745056152, 'ALSAIDI v.HUBERT': 2.6585328578948975, 'Stroman v.U.S.Treasury': 2.476323366165161, 'United States v.Ainsworth': 2.9488751888275146, 'Ballester v.State of Florida': 3.4867286682128906, 'Sharma v.Eyebrows': 2.01751446723938, 'Search Warrant Issued in case as to Priority Mail Package addressed to': 6.130659580230713, '"all parties must sign their names on the attached Consent"': 6.62768030166626, 'proceedings': 5.782422304153442, 'held': 7.666126728057861, 'before': 7.025049448013306, 'Magistrate ': 8.00907278060913, 'Judge': 13.804168462753296, 'description:ORDER AND plain_text:Motion': 3.082529067993164, 'description:ORDER OR plain_text:Motion': 7.7227818965911865, 'Levi Haywood': 1.5846326351165771, 'EASTERN DISTRICT OF CALIFORNIA"EASTERN DISTRICT OF CALIFORNIA"': 15.423184633255005, 'Signed by Magistrate Judge': 13.404972314834595, 'shall': 4.716362237930298, 'file': 18.79629611968994, 'further': 5.5303263664245605, 'amended': 8.993834733963013, 'pleadings': 4.534790515899658, 'without': 8.69023609161377, 'first': 9.77959394454956, 'MINUTE ORDER': 12.289389610290527, 'Motions deadline': 8.711485147476196, 'Continuance of Motions': 14.934560537338257, 'Detention and Identity': 3.425201654434204, 'Case Management': 10.357580661773682, 'Scheduling Order': 20.103005170822144, 'New York State': 25.062979459762573, 'Supreme Court': 6.669983863830566, 'MAGISTRATE CASE TERMINATED': 5.362343788146973, 'Detention and Identity Hearing': 3.407471179962158, '"Detention and Identity Hearing"': 4.394794940948486, 'All pretrial motions': 7.0320658683776855, 'Each': 5.271927833557129, 'party': 7.979886054992676, 'will': 7.593557834625244, 'bear': 3.3768773078918457, 'own': 4.735814332962036, 'Second Floor': 3.843183755874634, 'Plaintiff': 18.96124577522278} 

Average response time: 10.91 seconds.

Search term with maximum request time: 'UNITED STATES' :177.83 seconds.

Search term with minimum request time: 'Levi Haywood' :1.58 seconds.

No major difference, unfortunately.

mlissner commented 1 month ago

@blancoramiro and I chatted a bit about this today. One of his goals is to evaluate AWS reservations and get them right, but he can't do so until we're sure we've got the right instance size and IOPS for Elastic. He's going to do some evaluation on the hardware side and see if he sees anything. I looked very briefly at IOPS today and didn't see any issues, but he's the expert.

albertisfu commented 1 month ago

No major difference, unfortunately.

Thanks. It seems that the main query's impact on the request is still the issue, even though the count queries have become more efficient.

For instance, the query for Minute Order before the count query fixes:

After the fix:

So, while the count queries took proportionally less time, the main query remains the largest component of the request, making it the bottleneck.

I performed the benchmarks described above to assess whether tweaking the fragment size or storing the fields can help. Here are my findings:

Control benchmark, current query: Fragment size 100 and fields not stored:

The testing index contains around 20,000 documents, and the query retrieves large RECAPDocuments on the first page, one around 20 MB and another 15 MB, with the others being average-sized documents.

I performed two measurements; one of them performed better.

|                                                 Min Throughput | search_recap fragment size 100 |   7.6         |  ops/s |
|                                                Mean Throughput | search_recap fragment size 100 |   8.17        |  ops/s |
|                                              Median Throughput | search_recap fragment size 100 |   8.23        |  ops/s |
|                                                 Max Throughput | search_recap fragment size 100 |   8.44        |  ops/s |
|                                        50th percentile latency | search_recap fragment size 100 | 339.536       |     ms |
|                                        90th percentile latency | search_recap fragment size 100 | 347.043       |     ms |
|                                        99th percentile latency | search_recap fragment size 100 | 360.197       |     ms |
|                                       100th percentile latency | search_recap fragment size 100 | 399.558       |     ms |
|                                   50th percentile service time | search_recap fragment size 100 | 339.536       |     ms |
|                                   90th percentile service time | search_recap fragment size 100 | 347.043       |     ms |
|                                   99th percentile service time | search_recap fragment size 100 | 360.197       |     ms |
|                                  100th percentile service time | search_recap fragment size 100 | 399.558       |     ms |

|                                                 Min Throughput | search_recap fragment size 100 |   9.05        |  ops/s |
|                                                Mean Throughput | search_recap fragment size 100 |   9.13        |  ops/s |
|                                              Median Throughput | search_recap fragment size 100 |   9.13        |  ops/s |
|                                                 Max Throughput | search_recap fragment size 100 |   9.19        |  ops/s |
|                                        50th percentile latency | search_recap fragment size 100 | 323.037       |     ms |
|                                        90th percentile latency | search_recap fragment size 100 | 335.72        |     ms |
|                                        99th percentile latency | search_recap fragment size 100 | 358.84        |     ms |
|                                       100th percentile latency | search_recap fragment size 100 | 363.589       |     ms |
|                                   50th percentile service time | search_recap fragment size 100 | 323.037       |     ms |
|                                   90th percentile service time | search_recap fragment size 100 | 335.72        |     ms |
|                                   99th percentile service time | search_recap fragment size 100 | 358.84        |     ms |
|                                  100th percentile service time | search_recap fragment size 100 | 363.589       |     ms |

Fragment size 200 and not stored fields:

|                                                 Min Throughput | search_recap fragment size 200 |   8.49        |  ops/s |
|                                                Mean Throughput | search_recap fragment size 200 |   8.65        |  ops/s |
|                                              Median Throughput | search_recap fragment size 200 |   8.68        |  ops/s |
|                                                 Max Throughput | search_recap fragment size 200 |   8.72        |  ops/s |
|                                        50th percentile latency | search_recap fragment size 200 | 337.872       |     ms |
|                                        90th percentile latency | search_recap fragment size 200 | 345.716       |     ms |
|                                        99th percentile latency | search_recap fragment size 200 | 374.062       |     ms |
|                                       100th percentile latency | search_recap fragment size 200 | 387.585       |     ms |
|                                   50th percentile service time | search_recap fragment size 200 | 337.872       |     ms |
|                                   90th percentile service time | search_recap fragment size 200 | 345.716       |     ms |
|                                   99th percentile service time | search_recap fragment size 200 | 374.062       |     ms |
|                                  100th percentile service time | search_recap fragment size 200 | 387.585       |     ms |

Fragment size 500 and not stored fields:

|                                                 Min Throughput | search_recap fragment size 500 |   8.66        |  ops/s |
|                                                Mean Throughput | search_recap fragment size 500 |   8.73        |  ops/s |
|                                              Median Throughput | search_recap fragment size 500 |   8.73        |  ops/s |
|                                                 Max Throughput | search_recap fragment size 500 |   8.76        |  ops/s |
|                                        50th percentile latency | search_recap fragment size 500 | 338.235       |     ms |
|                                        90th percentile latency | search_recap fragment size 500 | 345.614       |     ms |
|                                        99th percentile latency | search_recap fragment size 500 | 380.523       |     ms |
|                                       100th percentile latency | search_recap fragment size 500 | 566.597       |     ms |
|                                   50th percentile service time | search_recap fragment size 500 | 338.235       |     ms |
|                                   90th percentile service time | search_recap fragment size 500 | 345.614       |     ms |
|                                   99th percentile service time | search_recap fragment size 500 | 380.523       |     ms |
|                                  100th percentile service time | search_recap fragment size 500 | 566.597       |     ms |

Fragment size 1000 and not stored fields:

|                                                 Min Throughput | search_recap fragment size 1000 |   8.69        |  ops/s |
|                                                Mean Throughput | search_recap fragment size 1000 |   8.77        |  ops/s |
|                                              Median Throughput | search_recap fragment size 1000 |   8.78        |  ops/s |
|                                                 Max Throughput | search_recap fragment size 1000 |   8.83        |  ops/s |
|                                        50th percentile latency | search_recap fragment size 1000 | 337.776       |     ms |
|                                        90th percentile latency | search_recap fragment size 1000 | 345.019       |     ms |
|                                        99th percentile latency | search_recap fragment size 1000 | 381.843       |     ms |
|                                       100th percentile latency | search_recap fragment size 1000 | 413.431       |     ms |
|                                   50th percentile service time | search_recap fragment size 1000 | 337.776       |     ms |
|                                   90th percentile service time | search_recap fragment size 1000 | 345.019       |     ms |
|                                   99th percentile service time | search_recap fragment size 1000 | 381.843       |     ms |
|                                  100th percentile service time | search_recap fragment size 1000 | 413.431       |     ms |

As you can observe, increasing the fragment size when performing HL doesn't seem to significantly improve the request throughput. There appears to be a slight improvement, but it's not statistically significant enough to confirm.

Stored fields.

In these benchmarks, I kept the fragment size fixed at 100 and moved the documents to a new index with a mapping where fields are explicitly stored.

Store all the parent and child HL fields.

|                                                 Min Throughput | search_recap fragment size 100 |   4.33        |  ops/s |
|                                                Mean Throughput | search_recap fragment size 100 |   4.38        |  ops/s |
|                                              Median Throughput | search_recap fragment size 100 |   4.39        |  ops/s |
|                                                 Max Throughput | search_recap fragment size 100 |   4.4         |  ops/s |
|                                        50th percentile latency | search_recap fragment size 100 | 673.649       |     ms |
|                                        90th percentile latency | search_recap fragment size 100 | 693.949       |     ms |
|                                        99th percentile latency | search_recap fragment size 100 | 726.465       |     ms |
|                                       100th percentile latency | search_recap fragment size 100 | 763.673       |     ms |
|                                   50th percentile service time | search_recap fragment size 100 | 673.649       |     ms |
|                                   90th percentile service time | search_recap fragment size 100 | 693.949       |     ms |
|                                   99th percentile service time | search_recap fragment size 100 | 726.465       |     ms |
|                                  100th percentile service time | search_recap fragment size 100 | 763.673       |     ms |

Store only the biggest field plain_text

|                                                 Min Throughput | search_recap fragment size 100 |    6.68        |  ops/s |
|                                                Mean Throughput | search_recap fragment size 100 |    6.75        |  ops/s |
|                                              Median Throughput | search_recap fragment size 100 |    6.75        |  ops/s |
|                                                 Max Throughput | search_recap fragment size 100 |    6.83        |  ops/s |
|                                        50th percentile latency | search_recap fragment size 100 |  428.858       |     ms |
|                                        90th percentile latency | search_recap fragment size 100 |  460.94        |     ms |
|                                        99th percentile latency | search_recap fragment size 100 |  490.777       |     ms |
|                                       100th percentile latency | search_recap fragment size 100 |  563.319       |     ms |
|                                   50th percentile service time | search_recap fragment size 100 |  428.858       |     ms |
|                                   90th percentile service time | search_recap fragment size 100 |  460.94        |     ms |
|                                   99th percentile service time | search_recap fragment size 100 |  490.777       |     ms |
|                                  100th percentile service time | search_recap fragment size 100 |  563.319       |     ms |

As you can observe, explicitly storing fields seems to worsen performance. The more fields are stored, the more performance is affected. This can be explained by the fact that when fields are stored, each one is accessed independently, increasing the number of IO operations. When fields are not stored, only one large IO operation is performed to retrieve the document from the_source field. This suggests that IO operations are the bottleneck during HL.

Fragment size 100, number of queried fields reduced In this bench mark I tested the same query with the number of fields limited to:

"suitNature",
"assignedTo",
"referredTo",
"court",
"court_id",
"court_citation_string",
"short_description",
"plain_text",
"caseName^4.0",
"docketNumber^3.0",
"description^2.0"
|                                                 Min Throughput | search_recap fragment size 100 |   9.14        |  ops/s |
|                                                Mean Throughput | search_recap fragment size 100 |   9.21        |  ops/s |
|                                              Median Throughput | search_recap fragment size 100 |   9.22        |  ops/s |
|                                                 Max Throughput | search_recap fragment size 100 |   9.24        |  ops/s |
|                                        50th percentile latency | search_recap fragment size 100 | 319.636       |     ms |
|                                        90th percentile latency | search_recap fragment size 100 | 332.008       |     ms |
|                                        99th percentile latency | search_recap fragment size 100 | 369.359       |     ms |
|                                       100th percentile latency | search_recap fragment size 100 | 372.878       |     ms |
|                                   50th percentile service time | search_recap fragment size 100 | 319.636       |     ms |
|                                   90th percentile service time | search_recap fragment size 100 | 332.008       |     ms |
|                                   99th percentile service time | search_recap fragment size 100 | 369.359       |     ms |
|                                  100th percentile service time | search_recap fragment size 100 | 372.878       |     ms |

It performed slightly better than the second control measure but still not great improvement.

Same query not HL at all:

|                                                 Min Throughput | search_recap fragment size 100 |  41.91        |  ops/s |
|                                                Mean Throughput | search_recap fragment size 100 |  42.35        |  ops/s |
|                                              Median Throughput | search_recap fragment size 100 |  42.23        |  ops/s |
|                                                 Max Throughput | search_recap fragment size 100 |  43.1         |  ops/s |
|                                        50th percentile latency | search_recap fragment size 100 |  70.3343      |     ms |
|                                        90th percentile latency | search_recap fragment size 100 |  75.3417      |     ms |
|                                        99th percentile latency | search_recap fragment size 100 | 106.796       |     ms |
|                                       100th percentile latency | search_recap fragment size 100 | 122.628       |     ms |
|                                   50th percentile service time | search_recap fragment size 100 |  70.3343      |     ms |
|                                   90th percentile service time | search_recap fragment size 100 |  75.3417      |     ms |
|                                   99th percentile service time | search_recap fragment size 100 | 106.796       |     ms |
|                                  100th percentile service time | search_recap fragment size 100 | 122.628       |     ms |

In this benchmark we can clearly see how much highlighting impact query times, without HL the throughput is 5 times greater.

Same query no Parent HL fields

|                                                 Min Throughput | search_recap fragment size 100 |   9.72        |  ops/s |
|                                                Mean Throughput | search_recap fragment size 100 |   9.85        |  ops/s |
|                                              Median Throughput | search_recap fragment size 100 |   9.84        |  ops/s |
|                                                 Max Throughput | search_recap fragment size 100 |   9.94        |  ops/s |
|                                        50th percentile latency | search_recap fragment size 100 | 295.757       |     ms |
|                                        90th percentile latency | search_recap fragment size 100 | 315.693       |     ms |
|                                        99th percentile latency | search_recap fragment size 100 | 363.77        |     ms |
|                                       100th percentile latency | search_recap fragment size 100 | 415.356       |     ms |
|                                   50th percentile service time | search_recap fragment size 100 | 295.757       |     ms |
|                                   90th percentile service time | search_recap fragment size 100 | 315.693       |     ms |
|                                   99th percentile service time | search_recap fragment size 100 | 363.77        |     ms |
|                                  100th percentile service time | search_recap fragment size 100 | 415.356       |     ms |

In this benchmark we can see that HL parent fields it's not the issue. Since the throughput is similar than HL parent + child documents.

Same query no Child HL fields

|                                                 Min Throughput | search_recap fragment size 100 |  29.49        |  ops/s |
|                                                Mean Throughput | search_recap fragment size 100 |  29.86        |  ops/s |
|                                              Median Throughput | search_recap fragment size 100 |  29.91        |  ops/s |
|                                                 Max Throughput | search_recap fragment size 100 |  30.07        |  ops/s |
|                                        50th percentile latency | search_recap fragment size 100 |  96.8208      |     ms |
|                                        90th percentile latency | search_recap fragment size 100 | 100.634       |     ms |
|                                        99th percentile latency | search_recap fragment size 100 | 111.949       |     ms |
|                                       100th percentile latency | search_recap fragment size 100 | 116.243       |     ms |
|                                   50th percentile service time | search_recap fragment size 100 |  96.8208      |     ms |
|                                   90th percentile service time | search_recap fragment size 100 | 100.634       |     ms |
|                                   99th percentile service time | search_recap fragment size 100 | 111.949       |     ms |
|                                  100th percentile service time | search_recap fragment size 100 | 116.243       |     ms |

With this benchmark we can confirm the issue is the child fields HL.

Additional benchmarks to check if one of the child fields HL is the problematic one.

Same query no parent HL fields, no plain_text HL

|                                                 Min Throughput | search_recap fragment size 100 |  12.94        |  ops/s |
|                                                Mean Throughput | search_recap fragment size 100 |  13.19        |  ops/s |
|                                              Median Throughput | search_recap fragment size 100 |  13.19        |  ops/s |
|                                                 Max Throughput | search_recap fragment size 100 |  13.38        |  ops/s |
|                                        50th percentile latency | search_recap fragment size 100 | 216.931       |     ms |
|                                        90th percentile latency | search_recap fragment size 100 | 230.963       |     ms |
|                                        99th percentile latency | search_recap fragment size 100 | 259.773       |     ms |
|                                       100th percentile latency | search_recap fragment size 100 | 270.772       |     ms |
|                                   50th percentile service time | search_recap fragment size 100 | 216.931       |     ms |
|                                   90th percentile service time | search_recap fragment size 100 | 230.963       |     ms |
|                                   99th percentile service time | search_recap fragment size 100 | 259.773       |     ms |
|                                  100th percentile service time | search_recap fragment size 100 | 270.772       |     ms |

Same query no parent HL fields, no description HL

|                                                 Min Throughput | search_recap fragment size 100 |  12.03        |  ops/s |
|                                                Mean Throughput | search_recap fragment size 100 |  12.1         |  ops/s |
|                                              Median Throughput | search_recap fragment size 100 |  12.1         |  ops/s |
|                                                 Max Throughput | search_recap fragment size 100 |  12.15        |  ops/s |
|                                        50th percentile latency | search_recap fragment size 100 | 241.675       |     ms |
|                                        90th percentile latency | search_recap fragment size 100 | 257.003       |     ms |
|                                        99th percentile latency | search_recap fragment size 100 | 304.894       |     ms |
|                                       100th percentile latency | search_recap fragment size 100 | 356.061       |     ms |
|                                   50th percentile service time | search_recap fragment size 100 | 241.675       |     ms |
|                                   90th percentile service time | search_recap fragment size 100 | 257.003       |     ms |
|                                   99th percentile service time | search_recap fragment size 100 | 304.894       |     ms |
|                                  100th percentile service time | search_recap fragment size 100 | 356.061       |     ms |

Same query no parent HL fields, no short_description HL

|                                                 Min Throughput | search_recap fragment size 100 |  11.92        |  ops/s |
|                                                Mean Throughput | search_recap fragment size 100 |  12.03        |  ops/s |
|                                              Median Throughput | search_recap fragment size 100 |  12.04        |  ops/s |
|                                                 Max Throughput | search_recap fragment size 100 |  12.12        |  ops/s |
|                                        50th percentile latency | search_recap fragment size 100 | 242.785       |     ms |
|                                        90th percentile latency | search_recap fragment size 100 | 253.996       |     ms |
|                                        99th percentile latency | search_recap fragment size 100 | 287.265       |     ms |
|                                       100th percentile latency | search_recap fragment size 100 | 298.066       |     ms |
|                                   50th percentile service time | search_recap fragment size 100 | 242.785       |     ms |
|                                   90th percentile service time | search_recap fragment size 100 | 253.996       |     ms |
|                                   99th percentile service time | search_recap fragment size 100 | 287.265       |     ms |
|                                  100th percentile service time | search_recap fragment size 100 | 298.066       |     ms |

From these benchmarks, we can see that none of the child fields in HL are specifically problematic. The performance is almost the same whether highlighting one child field or three simultaneously. This suggests that the issue lies in reading the _source content from disk, which must be done to highlight any of the child fields.

Finally, the following benchmark matches results that don't contain large documents.

|                                                 Min Throughput | search_recap fragment size 100 | 117.32        |  ops/s |
|                                                Mean Throughput | search_recap fragment size 100 | 123.64        |  ops/s |
|                                              Median Throughput | search_recap fragment size 100 | 124.57        |  ops/s |
|                                                 Max Throughput | search_recap fragment size 100 | 129.05        |  ops/s |
|                                        50th percentile latency | search_recap fragment size 100 |  18.7089      |     ms |
|                                        90th percentile latency | search_recap fragment size 100 |  23.7095      |     ms |
|                                        99th percentile latency | search_recap fragment size 100 |  40.8766      |     ms |
|                                       100th percentile latency | search_recap fragment size 100 |  50.3157      |     ms |
|                                   50th percentile service time | search_recap fragment size 100 |  18.7089      |     ms |
|                                   90th percentile service time | search_recap fragment size 100 |  23.7095      |     ms |
|                                   99th percentile service time | search_recap fragment size 100 |  40.8766      |     ms |
|                                  100th percentile service time | search_recap fragment size 100 |  50.3157      |     ms |

This is a query with a response size of 180.41 KB without excluding any fields from _source. We can observe that the performance is more than 10 times better than the query that matches large documents. The latter is a request with a size of 32.68 MB if we include the plain_text field, which is excluded in production. However, ES requires reading the entire source to perform highlighting, even when there are no matched terms, and to retrieve the snippet with only 500 characters from the plain text.

I also conducted some other experiments regarding HL settings that could help improve performance:

In brief, IO operations seem to be the main bottleneck affecting performance. Therefore, hopefully changes in hardware can significantly help, as limiting the size of indexed documents is not an option.

mlissner commented 1 month ago

OK, so summarizing:

That's a lot of experimentation, thanks.

So I guess I have three thoughts:

  1. We need to try increasing IOPS, like you say, or at least figuring out the pricing difference of doing so.

  2. Are there ways we can disable highlighting? We talked about this before, but I think we have to have highlighting if we're going to show results, right?

  3. We serve five child results per query. You say it doesn't enhance performance if a "large document is still matched in hits", but wouldn't returning only three docs increase the chances of that being true, and therefore speed up lots of queries?

albertisfu commented 1 month ago

Are there ways we can disable highlighting? We talked about this before, but I think we have to have highlighting if we're going to show results, right?

Yes, it's possible to disable highlighting entirely to get the boost improvement. That's what we did in the API, where HL is disabled by default. So, even to retrieve the document snippets, we don't use HL; instead, they are retrieved from the database. To highlight results, highlight=on should be passed.

However, as we talked before, not showing highlights in the frontend seemed a bad idea, as it can make the results confusing for users.

We serve five child results per query. You say it doesn't enhance performance if a "large document is still matched in hits", but wouldn't returning only three docs increase the chances of that being true, and therefore speed up lots of queries?

Yes, we actually serve 6 child results per parent because one of them is used to determine if there are more than 5 results and to display the "View more results" button. You're right decreasing the number of child documents can make it less likely for larger child documents to be included in the results, which can be beneficial in some searches. However, I think larger documents are more likely to appear as the first child result because they contain more terms that can be matched, and we sort child documents by score. But we could do the tweak and monitor in the ES metrics if query times are reduced in average.

mlissner commented 1 month ago

I think larger documents are more likely to appear as the first child result because they contain more terms that can be matched

I'm not so sure. We don't use TF/IDF, but I assume the ranking algo we use does something similar. In TF/IDF, results are penalized by the length of the document (IDF = "Inverse document frequency."). The theory is that you want to calculate the density of the keywords in a document, so longer docs that contain the word once are less relevant than longer ones that contain it several times.

Either way, it's sure to help a bit — let's do it while we wait for Ramiro to do his piece. It's sort of all we've got.

The only other thought I have is on the user interface:

  1. A toggle users can turn on and off that lets them understand the tradeoff.

  2. A spinner to help people wait that gives them something to stare at.

The spinner is easy enough. Might as well do that. The toggle is something to think more about, I think.

albertisfu commented 1 month ago

Either way, it's sure to help a bit — let's do it while we wait for Ramiro to do his piece. It's sort of all we've got.

Sure, this is easy. We just need to tweak the setting: RECAP_CHILD_HITS_PER_RESULT.

Does setting it to 3 child documents sound good? (4 will actually be retrieved). Alternatively, I can make the setting configurable so we can test different values by tweaking an environment variable.

This setting will also affect the child documents nested in the V4 API for RECAP. Is that OK, or should we make the setting independent of the API's nested documents?

The spinner is easy enough. Might as well do that. The toggle is something to think more about, I think.

Yeah, I think we just need to move the results rendering to HTMX. Does that sound good?

mlissner commented 1 month ago

It's ok that the api changes. Let's set it to show three results.

Moving to HTMX is the plan. Not yet though!

albertisfu commented 1 month ago

Great, reduced to 3: https://github.com/freelawproject/courtlistener/pull/4301

Moving to HTMX is the plan. Not yet though!

Correct, so the spinner will wait until we move to HTMX.

mlissner commented 4 weeks ago

Here's the latest performance with three child docs:

Response Times: {'': 14.814864158630371, 'The Litigation Practice Group': 7.9153382778167725, '"Alston v. Penn State Health"': 4.9190354347229, 'Danny Ray Jackson': 2.3072078227996826, '"MEMBER CASE OPENED:"': 3.8427939414978027, 'Parties to exchange Rule ': 10.254294872283936, 'BROOKS v. CITY': 3.441192388534546, 'UNITED STATES': 189.5496120452881, 'ALABAMA NORTHERN DIVISION': 3.7789692878723145, 'ALSAIDI v.HUBERT': 3.4089794158935547, 'Stroman v.U.S.Treasury': 4.019840478897095, 'United States v.Ainsworth': 4.487348556518555, 'Ballester v.State of Florida': 5.223628759384155, 'Sharma v.Eyebrows': 3.1194257736206055, 'Search Warrant Issued in case as to Priority Mail Package addressed to': 11.940662145614624, '"all parties must sign their names on the attached Consent"': 6.189635753631592, 'proceedings': 8.309628963470459, 'held': 9.440803527832031, 'before': 10.771430969238281, 'Magistrate ': 9.621043682098389, 'Judge': 16.12711262702942, 'description:ORDER AND plain_text:Motion': 3.283374309539795, 'description:ORDER OR plain_text:Motion': 8.788982391357422, 'Levi Haywood': 1.3994431495666504, 'EASTERN DISTRICT OF CALIFORNIA"EASTERN DISTRICT OF CALIFORNIA"': 13.191789388656616, 'Signed by Magistrate Judge': 12.30390214920044, 'shall': 6.083232879638672, 'file': 18.249871253967285, 'further': 5.525480031967163, 'amended': 10.611781120300293, 'pleadings': 3.5949957370758057, 'without': 10.93119192123413, 'first': 8.984928131103516, 'MINUTE ORDER': 10.09019947052002, 'Motions deadline': 13.84327745437622, 'Continuance of Motions': 15.193717241287231, 'Detention and Identity': 3.1134297847747803, 'Case Management': 12.586815595626831, 'Scheduling Order': 21.619269371032715, 'New York State': 18.717662811279297, 'Supreme Court': 7.434284448623657, 'MAGISTRATE CASE TERMINATED': 3.6594936847686768, 'Detention and Identity Hearing': 7.318808078765869, '"Detention and Identity Hearing"': 4.289843797683716, 'All pretrial motions': 5.007880449295044, 'Each': 3.493130683898926, 'party': 7.145432710647583, 'will': 5.596843004226685, 'bear': 2.3601088523864746, 'own': 5.71677041053772, 'Second Floor': 3.2293624877929688, 'Plaintiff': 15.962221622467041} 

Average response time: 11.59 seconds.

Search term with maximum request time: 'UNITED STATES' :189.55 seconds.

Search term with minimum request time: 'Levi Haywood' :1.40 seconds.

It's the worst! Somehow all our changes are making things slower so far. :(

albertisfu commented 3 weeks ago

:/ maybe testing it again in a different hour? Just to confirm cluster load is not impacting query times.

The query times in the metrics don't seem to show worse performance in general. Since August 10, the fixed count queries have been deployed, and since August 12, the reduction of child documents has been implemented.

These metrics are for the whole cluster, but considering that Opinions is not yet public, this might mostly be related to RECAP.

Screenshot 2024-08-16 at 12 21 07 p m

mlissner commented 3 weeks ago

Well, it's not as good as the very first run (9.3s), but it's close!

Response Times: {'': 12.704928398132324, 'The Litigation Practice Group': 5.70060396194458, '"Alston v. Penn State Health"': 2.4071221351623535, 'Danny Ray Jackson': 1.802358865737915, '"MEMBER CASE OPENED:"': 3.900282859802246, 'Parties to exchange Rule ': 7.067942380905151, 'BROOKS v. CITY': 3.1223747730255127, 'UNITED STATES': 182.7806396484375, 'ALABAMA NORTHERN DIVISION': 4.1240386962890625, 'ALSAIDI v.HUBERT': 2.562020778656006, 'Stroman v.U.S.Treasury': 2.2744507789611816, 'United States v.Ainsworth': 3.354217290878296, 'Ballester v.State of Florida': 2.6577446460723877, 'Sharma v.Eyebrows': 1.5845091342926025, 'Search Warrant Issued in case as to Priority Mail Package addressed to': 6.618940830230713, '"all parties must sign their names on the attached Consent"': 6.413479328155518, 'proceedings': 5.880823850631714, 'held': 7.133835554122925, 'before': 6.008804082870483, 'Magistrate ': 5.767233848571777, 'Judge': 10.441797494888306, 'description:ORDER AND plain_text:Motion': 3.044948101043701, 'description:ORDER OR plain_text:Motion': 6.683403491973877, 'Levi Haywood': 1.828810453414917, 'EASTERN DISTRICT OF CALIFORNIA"EASTERN DISTRICT OF CALIFORNIA"': 15.047075271606445, 'Signed by Magistrate Judge': 10.302546262741089, 'shall': 4.491498231887817, 'file': 13.681512594223022, 'further': 4.3232457637786865, 'amended': 8.31783151626587, 'pleadings': 3.5336947441101074, 'without': 5.296891450881958, 'first': 7.023275375366211, 'MINUTE ORDER': 8.17717170715332, 'Motions deadline': 6.768023729324341, 'Continuance of Motions': 12.944596767425537, 'Detention and Identity': 2.3744993209838867, 'Case Management': 8.623630046844482, 'Scheduling Order': 12.879775047302246, 'New York State': 17.535990476608276, 'Supreme Court': 4.8432090282440186, 'MAGISTRATE CASE TERMINATED': 3.71307110786438, 'Detention and Identity Hearing': 2.9273197650909424, '"Detention and Identity Hearing"': 3.673309564590454, 'All pretrial motions': 4.464235782623291, 'Each': 4.568949222564697, 'party': 6.419445991516113, 'will': 5.719357013702393, 'bear': 2.8618102073669434, 'own': 4.45696496963501, 'Second Floor': 3.538938283920288, 'Plaintiff': 10.54492473602295} 

Average response time: 9.52 seconds.

Search term with maximum request time: 'UNITED STATES' :182.78 seconds.

Search term with minimum request time: 'Sharma v.Eyebrows' :1.58 seconds.

I'll say, subjectively, I think I've noticed it being snappier, but man, my human judgement can't be trusted.

You know, we could build timings into it properly and probably could even send them to grafana if we wanted...

blancoramiro commented 2 weeks ago

This is running with the new settings for the volumes: gp3, 6000 IOPS and 500 throughput:

Response Times: {'': 19.389137029647827, 'The Litigation Practice Group': 6.697393417358398, '"Alston v. Penn State Health"': 2.5720479488372803, 'Danny Ray Jackson': 2.361642360687256, '"MEMBER CASE OPENED:"': 3.8787882328033447, 'Parties to exchange Rule ': 5.985720872879028, 'BROOKS v. CITY': 3.315563917160034, 'UNITED STATES': 180.64219641685486, 'ALABAMA NORTHERN DIVISION': 4.218769788742065, 'ALSAIDI v.HUBERT': 3.5269417762756348, 'Stroman v.U.S.Treasury': 3.6733152866363525, 'United States v.Ainsworth': 8.48942232131958, 'Ballester v.State of Florida': 2.7759177684783936, 'Sharma v.Eyebrows': 6.5400567054748535, 'Search Warrant Issued in case as to Priority Mail Package addressed to': 5.7365806102752686, '"all parties must sign their names on the attached Consent"': 11.76836609840393, 'proceedings': 6.7141735553741455, 'held': 9.7101411819458, 'before': 6.182885646820068, 'Magistrate ': 6.528410911560059, 'Judge': 11.60857081413269, 'description:ORDER AND plain_text:Motion': 13.44865107536316, 'description:ORDER OR plain_text:Motion': 6.467121839523315, 'Levi Haywood': 1.424640417098999, 'EASTERN DISTRICT OF CALIFORNIA"EASTERN DISTRICT OF CALIFORNIA"': 18.95367455482483, 'Signed by Magistrate Judge': 12.410669326782227, 'shall': 6.154239177703857, 'file': 16.23836851119995, 'further': 38.335286378860474, 'amended': 7.098358869552612, 'pleadings': 4.35529351234436, 'without': 4.8390953540802, 'first': 6.629684686660767, 'MINUTE ORDER': 8.452007293701172, 'Motions deadline': 7.147292375564575, 'Continuance of Motions': 10.494942426681519, 'Detention and Identity': 2.8219213485717773, 'Case Management': 8.98738408088684, 'Scheduling Order': 15.09764313697815, 'New York State': 16.041921377182007, 'Supreme Court': 5.295551300048828, 'MAGISTRATE CASE TERMINATED': 4.588144063949585, 'Detention and Identity Hearing': 3.0284392833709717, '"Detention and Identity Hearing"': 3.539536952972412, 'All pretrial motions': 6.917094707489014, 'Each': 3.5133533477783203, 'party': 6.6951165199279785, 'will': 5.989624500274658, 'bear': 2.777287244796753, 'own': 3.466843843460083, 'Second Floor': 3.439796209335327, 'Plaintiff': 13.284327030181885} 

Average response time: 11.16 seconds.

Search term with maximum request time: 'UNITED STATES' :180.64 seconds.

Search term with minimum request time: 'Levi Haywood' :1.42 seconds.
mlissner commented 2 weeks ago

So is it fair to say that basically no change was created by doubling the disk speed?

albertisfu commented 2 weeks ago

I think this is not the most reliable method to measure the performance in the cluster. I tested some of the queries from the list and got better results:

Match all query: Screenshot 2024-08-28 at 3 24 25 p m from the benchmark 19.38

Screenshot 2024-08-28 at 3 24 46 p m from the benchmark 6.69

Screenshot 2024-08-28 at 3 24 57 p m from the benchmark 2.57

Screenshot 2024-08-28 at 3 25 09 p m from the benchmark 2.361

Screenshot 2024-08-28 at 3 25 22 p m from the benchmark 13.44

Screenshot 2024-08-28 at 3 27 41 p m from the benchmark 18.95

Screenshot 2024-08-28 at 3 28 49 p m from the benchmark 12.41

Since this benchmark is tied to a single sample, it can vary a lot. I think it would be better to use Rally to perform a more statistically robust benchmark so we can compare performance across different IOPS and throughput levels.

mlissner commented 2 weeks ago

Yeah, and we should prioritize #4230 too, so that we can get the real world data.